io.github.danielTucano.matplotlib.Line2D.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matplotlib4k Show documentation
Show all versions of matplotlib4k Show documentation
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}
}