io.rtron.math.geometry.curved.oned.point.CurveRelativeVector1D.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rtron-math Show documentation
Show all versions of rtron-math Show documentation
Component 'rtron-math' of rtron.
The newest version!
/*
* Copyright 2019-2022 Chair of Geoinformatics, Technical University of Munich
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.rtron.math.geometry.curved.oned.point
import io.rtron.math.geometry.curved.threed.point.CurveRelativeVector3D
import io.rtron.math.geometry.curved.twod.point.CurveRelativeVector2D
/**
* Point in a curve relative coordinate system in 1D. This means that only points can be referenced which are positioned
* on the curve.
*
* @param curvePosition distance between the start of the curve and the point to be referenced
*/
data class CurveRelativeVector1D(
val curvePosition: Double
) : Comparable {
// Properties and Initializers
init {
require(curvePosition.isFinite()) { "Curve position value must be finite." }
}
// Operators
operator fun plus(v: CurveRelativeVector1D) = CurveRelativeVector1D(this.curvePosition + v.curvePosition)
operator fun minus(v: CurveRelativeVector1D) = CurveRelativeVector1D(this.curvePosition - v.curvePosition)
operator fun times(m: Double) = CurveRelativeVector1D(this.curvePosition * m)
operator fun div(m: Double) = CurveRelativeVector1D(this.curvePosition / m)
override fun compareTo(other: CurveRelativeVector1D): Int = curvePosition.compareTo(other.curvePosition)
// Conversions
fun toCurveRelative2D(lateralOffset: Double = 0.0) =
CurveRelativeVector2D(curvePosition, lateralOffset)
fun toCurveRelative3D(lateralOffset: Double = 0.0, heightOffset: Double = 0.0) =
CurveRelativeVector3D(curvePosition, lateralOffset, heightOffset)
companion object {
val ZERO = CurveRelativeVector1D(0.0)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy