Package-level declarations
Functions to pass as a value of a parameter of layer functions like:
val n = 16
val data = mapOf(
"x1" to List(n) { cos(2.0 * PI * it / n) },
"y1" to List(n) { sin(2.0 * PI * it / n) },
"x2" to List(n) { cos(2.0 * PI * (it + 1) / n) },
"y2" to List(n) { sin(2.0 * PI * (it + 1) / n) },
)
letsPlot(data) +
geomSegment(arrow=arrow(angle = 15, type = "closed"))
{ x="x1"; y="y1"; xend="x2"; yend="y2" } +
coordFixed()
Content copied to clipboard