lineLoops

Renders a list of line loops based on the current drawing style and quality settings.

Parameters

loops

A list of line loops, where each loop is represented as a list of Vector2 points.


@JvmName(name = "lineLoops3d")
fun lineLoops(loops: List<List<Vector3>>)(source)

Draws a series of line loops based on the provided list of loops.

Parameters

loops

A list of line loops where each loop is represented as a list of Vector3 points.


fun lineLoops(loops: List<List<Vector2>>, weights: List<Double>)(source)

Renders a series of line loops with specified weights.

Parameters

loops

A list of line loops, where each loop is represented as a list of 2D vectors.

weights

A list of weights corresponding to each line in the loops, determining their thickness.


@JvmName(name = "lineLoops3d)")
fun lineLoops(loops: List<List<Vector3>>, weights: List<Double>)(source)

Draws line loops in either performance or quality mode based on the current draw style.

Parameters

loops

A list of lists representing the points for each line loop, where each inner list defines a single loop using Vector3 points.

weights

A list of weights corresponding to each line loop, used in the quality drawing mode.