Package-level declarations

Types

Link copied to clipboard
open class Line<N>(val start: Point<N>, val direction: Vector<N>)
Link copied to clipboard
class Line2<N>(val start: Point2<N>, val direction: Vector2<N>) : Line<N>
Link copied to clipboard
open class Ray<N>(val start: Point<N>, val direction: Vector<N>)
Link copied to clipboard
class Ray2<N>(val start: Point2<N>, val direction: Vector2<N>) : Ray<N>
Link copied to clipboard
open class Segment<N>(val start: Point<N>, val direction: Vector<N>)
Link copied to clipboard
class Segment2<N>(val start: Point2<N>, val direction: Vector2<N>) : Segment<N>

Properties

Link copied to clipboard
val <N> Segment2<N>.end: Point2<N>
val <N> Segment<N>.end: Point<N>

Functions

Link copied to clipboard
fun <N> Line(start: Point<N>, end: Point<N>): Line<N>
Link copied to clipboard
fun <N> Line2(start: Point2<N>, end: Point2<N>): Line2<N>
Link copied to clipboard
fun <N> Ray(start: Point<N>, end: Point<N>): Ray<N>
Link copied to clipboard
fun <N> Ray2(start: Point2<N>, end: Point2<N>): Ray2<N>
Link copied to clipboard
fun <N> Segment(start: Point<N>, end: Point<N>): Segment<N>
Link copied to clipboard
fun <N> Segment2(start: Point2<N>, end: Point2<N>): Segment2<N>