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

io.data2viz.geo.path.PathMeasure.kt Maven / Gradle / Ivy

There is a newer version: 0.8.0-RC5
Show newest version
package io.data2viz.geo.path

import io.data2viz.geo.noop2
import io.data2viz.geo.projection.Stream
import kotlin.math.sqrt

class PathMeasure : Stream {

    private var lengthSum = .0
    private var lengthRing = false
    private var x00 = Double.NaN
    private var y00 = Double.NaN
    private var x0 = Double.NaN
    private var y0 = Double.NaN

    private var currentPoint: (Double, Double) -> Unit = noop2

    fun result(): Double {
        val result = lengthSum
        lengthSum = .0
        return result
    }

    override fun point(x: Double, y: Double, z: Double) = currentPoint(x, y)
    override fun lineStart() {
        currentPoint = ::lengthPointFirst
    }

    override fun lineEnd() {
        if (lengthRing) lengthPoint(x00, y00)
        currentPoint = noop2
    }

    override fun polygonStart() {
        lengthRing = true
    }

    override fun polygonEnd() {
        lengthRing = false
    }

    private fun lengthPointFirst(x: Double, y: Double) {
        currentPoint = ::lengthPoint
        x0 = x
        x00 = x
        y0 = y
        y00 = y
    }

    private fun lengthPoint(x: Double, y: Double) {
        x0 -= x
        y0 -= y
        lengthSum += sqrt(x0 * x0 + y0 * y0)
        x0 = x
        y0 = y
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy