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

com.github.tsingjyujing.geo.element.immutable.Vector2.scala Maven / Gradle / Ivy

There is a newer version: 2.8.9-2.11
Show newest version
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