Line

data class Line(val from: Point, val to: Point) : Segment(source)

Constructors

Link copied to clipboard
constructor(from: Point, to: Point)

Properties

Link copied to clipboard
open override val from: Point
Link copied to clipboard
open override val to: Point

Functions

Link copied to clipboard
open override fun curvatureAt(t: Double): Double
Link copied to clipboard
open override fun drawTo(path: Path)
Link copied to clipboard
open override fun pointAt(t: Double): Point
Link copied to clipboard
open override fun unitTangentAt(t: Double): Point