commonMain.curve.Curve.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shape-jvm Show documentation
Show all versions of shape-jvm Show documentation
A collection of drawing/charting utilities
The newest version!
package com.juul.krayon.shape.curve
import com.juul.krayon.kanvas.PathBuilder
public interface Curve {
public fun startArea(context: PathBuilder<*>)
public fun endArea(context: PathBuilder<*>)
public fun startLine(context: PathBuilder<*>)
public fun endLine(context: PathBuilder<*>)
public fun point(context: PathBuilder<*>, x: Float, y: Float)
}