commonMain.Shape.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shape Show documentation
Show all versions of shape Show documentation
A collection of drawing/charting utilities
The newest version!
package com.juul.krayon.shape
import com.juul.krayon.kanvas.Path
@Deprecated("Interface doesn't really add much/not every shape renders from the same data.")
public interface Shape {
public fun render(data: List): Path
}