com.github.tsingjyujing.geo.element.immutable.Vector2.scala Maven / Gradle / Ivy
package com.github.tsingjyujing.geo.element.immutable
import com.github.tsingjyujing.geo.basic.IVector2
/**
* Implementation of IVector2
*
* @param x
* @param y
*/
final case class Vector2(x: Double, y: Double) extends IVector2 {
override def getX: Double = x
override def getY: Double = y
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy