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

io.data2viz.shape.curve.LinearClosed.kt Maven / Gradle / Ivy

There is a newer version: 0.8.0-RC5
Show newest version
package io.data2viz.shape.curve

import io.data2viz.path.PathAdapter
import io.data2viz.shape.Curve

class LinearClosed(override val context: PathAdapter) : Curve {

    private var pointStatus = -1

    override fun areaStart() {}
    override fun areaEnd() {}

    override fun lineStart() {
        pointStatus = 0
    }

    override fun lineEnd() {
        if (pointStatus > 0) {
            context.closePath()
        }
    }

    override fun point(x: Double, y: Double) {
        if (pointStatus > 0) {
            context.lineTo(x, y)
        } else {
            pointStatus = 1
            context.moveTo(x,y)
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy