All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.ru.casperix.math.intersection.CurveIntersection.kt Maven / Gradle / Ivy

package ru.casperix.math.intersection

import ru.casperix.math.curve.CurvePositionEntry

class CurveIntersection(val first: CurvePositionEntry, val second: CurvePositionEntry) {
    val position = first.position

    fun reversed():CurveIntersection {
        return CurveIntersection(second, first)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy