LineSegment

Parametric representation of a line.

Parameters

start

start vector

end

end vector

Constructors

Link copied to clipboard
constructor(start: Vector2d, end: Vector2d)

Functions

Link copied to clipboard
open override fun length(): Double

Returns the length of the curve.

Link copied to clipboard
open override fun project(query: Vector2d): Double

Returns the nearest point on the curve in terms of the internal parameter t.

Link copied to clipboard
open override fun reparameterize()

If this curve can not trivially be reparameterized to an arc length parameter, it should be done here.

Link copied to clipboard
open override fun toString(): String