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

io.github.danielTucano.matplotlib.Line2D.kt Maven / Gradle / Ivy

Go to download

Matplotlib for kotlin: A simple graph plot library for kotlin with powerful python matplotlib

The newest version!
package io.github.danielTucano.matplotlib

interface Line2D: Artist {

    companion object {
        internal var line2DNumber: Int = 0
            get() {
                field++
                return field
            }
        private set
    }

    enum class Line2DArgs: KwargKey {linewidth, linestyle, color, marker, markersize, markeredgewidth, markeredgecolor, markerfacecolor,
        markerfacecoloralt, fillstyle, antialiased, dash_capstyle, solid_capstyle, dash_joinstyle, solid_joinstyle, pickradius,
        drawstyle, markevery}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy