CubicBezier2d
See source codeTable of contents
- _segments
- a
- area
- b
- bounds
- c
- center
- d
- debugColor
- ignore
- isClosed
- isFilled
- isInternal
- isLabel
- length
- points
- segments
- vertices
- Properties
- Methods
- GetAtT
- distanceToLineSegment
- distanceToPoint
- getArea
- getBounds
- getLength
- getSvgPathData
- getVertices
- hitTestLineSegment
- hitTestPoint
- intersectCircle
- intersectLineSegment
- intersectPolygon
- intersectPolyline
- isExcludedByFilter
- isPointInBounds
- midPoint
- nearestPoint
- nearestPointOnLineSegment
- toSimpleSvgPath
- transform
Extends Polyline2d
.
class CubicBezier2d extends Polyline2d {}
Constructor
Constructs a new instance of the CubicBezier2d
class
Parameters
Name | Description |
---|---|
|
|
Properties
a
a: Vec
area
readonly
from Geometry2d
get area(): number
b
b: Vec
bounds
readonly
from Geometry2d
get bounds(): Box
c
c: Vec
center
readonly
from Geometry2d
get center(): Vec
d
d: Vec
debugColor
optional
from Geometry2d
debugColor?: string
ignore
optional
from Geometry2d
ignore?: boolean
isClosed
from Geometry2d
isClosed: boolean
isFilled
from Geometry2d
isFilled: boolean
isInternal
from Geometry2d
isInternal: boolean
isLabel
from Geometry2d
isLabel: boolean
length
readonly
from Geometry2d
get length(): number
points
from Polyline2d
points: Vec[]
segments
readonly
from Polyline2d
get segments(): Edge2d[]
vertices
readonly
from Geometry2d
get vertices(): Vec[]
Methods
GetAtT()
static
static GetAtT(segment: CubicBezier2d, t: number): Vec
Parameters
Name | Description |
---|---|
| |
|
|
Returns
distanceToLineSegment()
from Geometry2d
distanceToLineSegment(A: Vec, B: Vec, filters?: Geometry2dFilters): number
Parameters
Name | Description |
---|---|
| |
| |
|
Returns
number
distanceToPoint()
from Geometry2d
distanceToPoint(
point: Vec,
hitInside?: boolean,
filters?: Geometry2dFilters
): number
Parameters
Name | Description |
---|---|
| |
|
|
|
Returns
number
getArea()
from Geometry2d
getArea(): number
getBounds()
from Geometry2d
getBounds(): Box
getLength()
getLength(precision?: number): number
Parameters
Name | Description |
---|---|
|
|
Returns
number
getSvgPathData()
getSvgPathData(first?: boolean): string
Parameters
Name | Description |
---|---|
|
|
Returns
string
getVertices()
getVertices(): Vec[]
hitTestLineSegment()
from Polyline2d
Parameters
Returns
boolean
hitTestPoint()
from Geometry2d
hitTestPoint(
point: Vec,
margin?: number,
hitInside?: boolean,
filters?: Geometry2dFilters
): boolean
Parameters
Name | Description |
---|---|
| |
|
|
|
|
|
Returns
boolean
intersectCircle()
from Geometry2d
intersectCircle(
center: VecLike,
radius: number,
filters?: Geometry2dFilters
): VecLike[]
Parameters
Name | Description |
---|---|
| |
|
|
|
Returns
VecLike[]
intersectLineSegment()
from Geometry2d
intersectLineSegment(
A: VecLike,
B: VecLike,
filters?: Geometry2dFilters
): VecLike[]
Parameters
Name | Description |
---|---|
| |
| |
|
Returns
VecLike[]
intersectPolygon()
from Geometry2d
intersectPolygon(polygon: VecLike[], filters?: Geometry2dFilters): VecLike[]
Parameters
Name | Description |
---|---|
|
|
|
Returns
VecLike[]
intersectPolyline()
from Geometry2d
intersectPolyline(polyline: VecLike[], filters?: Geometry2dFilters): VecLike[]
Parameters
Name | Description |
---|---|
|
|
|
Returns
VecLike[]
isExcludedByFilter()
from Geometry2d
isExcludedByFilter(filters?: Geometry2dFilters): boolean
Parameters
Name | Description |
---|---|
|
Returns
boolean
isPointInBounds()
from Geometry2d
isPointInBounds(point: Vec, margin?: number): boolean
Parameters
Name | Description |
---|---|
| |
|
|
Returns
boolean
midPoint()
midPoint(): Vec
nearestPoint()
Parameters
Name | Description |
---|---|
|
Returns
nearestPointOnLineSegment()
from Geometry2d
Deprecated: Iterate the vertices instead.
Parameters
Returns
toSimpleSvgPath()
from Geometry2d
toSimpleSvgPath(): string
transform()
from Geometry2d
transform(transform: MatModel): Geometry2d
Parameters
Name | Description |
---|---|
|
Returns
Prev
ClickManagerNext
CubicSpline2d