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

com.github.tsingjyujing.geo.element.mutable.TickImpl.scala Maven / Gradle / Ivy

There is a newer version: 2.8.9-2.11
Show newest version
package com.github.tsingjyujing.geo.element.mutable

import com.github.tsingjyujing.geo.basic.timeseries.ITick

/**
  * An simple implementation of ITick
  *
  * @param tick
  */
class TickImpl(var tick: Double) extends ITick {
    override def getTick: Double = tick

    override def setTick(tick: Double): Unit = {
        this.tick = tick
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy