SegmentPoint

data class SegmentPoint(val segment: Segment2D, val segmentT: Double, val position: Vector2) : BezierSegmentPoint<Vector2> (source)

Representation of a point on a Segment2D.

Parameters

segment

The Segment2D on which the point lies.

segmentT

The t value of the point on the Segment2D.

position

The position of the point.

Constructors

Link copied to clipboard
constructor(segment: Segment2D, segmentT: Double, position: Vector2)

Properties

Link copied to clipboard
open override val position: Vector2
Link copied to clipboard
open override val segment: Segment2D
Link copied to clipboard
open override val segmentT: Double