Geometry2d
See source codeTable of contents
abstract class Geometry2d {}
Constructor
Constructs a new instance of the Geometry2d
class
Parameters
Name | Description |
---|---|
|
Properties
area
readonly
get area(): number
bounds
readonly
get bounds(): Box
center
readonly
get center(): Vec
debugColor
optional
debugColor?: string
ignore
optional
ignore?: boolean
isClosed
isClosed: boolean
isFilled
isFilled: boolean
isInternal
isInternal: boolean
isLabel
isLabel: boolean
length
readonly
get length(): number
vertices
readonly
get vertices(): Vec[]
Methods
distanceToLineSegment()
distanceToLineSegment(A: Vec, B: Vec, filters?: Geometry2dFilters): number
Parameters
Name | Description |
---|---|
| |
| |
|
Returns
number
distanceToPoint()
distanceToPoint(
point: Vec,
hitInside?: boolean,
filters?: Geometry2dFilters
): number
Parameters
Name | Description |
---|---|
| |
|
|
|
Returns
number
getArea()
getArea(): number
getBounds()
getBounds(): Box
getLength()
getLength(): number
getSvgPathData()
abstract getSvgPathData(first: boolean): string
Parameters
Name | Description |
---|---|
|
|
Returns
string
getVertices()
abstract getVertices(filters: Geometry2dFilters): Vec[]
Parameters
Name | Description |
---|---|
|
Returns
Vec[]
hitTestLineSegment()
hitTestLineSegment(
A: Vec,
B: Vec,
distance?: number,
filters?: Geometry2dFilters
): boolean
Parameters
Name | Description |
---|---|
| |
| |
|
|
|
Returns
boolean
hitTestPoint()
hitTestPoint(
point: Vec,
margin?: number,
hitInside?: boolean,
filters?: Geometry2dFilters
): boolean
Parameters
Name | Description |
---|---|
| |
|
|
|
|
|
Returns
boolean
intersectCircle()
intersectCircle(
center: VecLike,
radius: number,
filters?: Geometry2dFilters
): VecLike[]
Parameters
Name | Description |
---|---|
| |
|
|
|
Returns
VecLike[]
intersectLineSegment()
intersectLineSegment(
A: VecLike,
B: VecLike,
filters?: Geometry2dFilters
): VecLike[]
Parameters
Name | Description |
---|---|
| |
| |
|
Returns
VecLike[]
intersectPolygon()
intersectPolygon(polygon: VecLike[], filters?: Geometry2dFilters): VecLike[]
Parameters
Name | Description |
---|---|
|
|
|
Returns
VecLike[]
intersectPolyline()
intersectPolyline(polyline: VecLike[], filters?: Geometry2dFilters): VecLike[]
Parameters
Name | Description |
---|---|
|
|
|
Returns
VecLike[]
isExcludedByFilter()
isExcludedByFilter(filters?: Geometry2dFilters): boolean
Parameters
Name | Description |
---|---|
|
Returns
boolean
isPointInBounds()
isPointInBounds(point: Vec, margin?: number): boolean
Parameters
Name | Description |
---|---|
| |
|
|
Returns
boolean
nearestPoint()
abstract nearestPoint(point: Vec, filters?: Geometry2dFilters): Vec
Parameters
Name | Description |
---|---|
| |
|
Returns
nearestPointOnLineSegment()
Deprecated: Iterate the vertices instead.
Parameters
Returns
toSimpleSvgPath()
toSimpleSvgPath(): string
transform()
transform(transform: MatModel): Geometry2d
Parameters
Name | Description |
---|---|
|
Returns
Prev
FontManagerNext
Group2d