commonMain.ru.casperix.math.straight_line.LineSegment.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of math Show documentation
Show all versions of math Show documentation
Simple set of geometric and other types
package ru.casperix.math.straight_line
import ru.casperix.math.vector.api.AbstractVector
interface LineSegment> {
val start: Point
val finish: Point
}