lineTo

fun PathElementManager.lineTo(x: Double = 0.0, y: Double = 0.0): LineTo

Add a LineTo to this manager.

Return

the control added.


inline fun lineTo(x: Double = 0.0, y: Double = 0.0, configuration: LineTo.() -> Unit): LineTo

Create a LineTo with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun PathElementManager.lineTo(x: Double = 0.0, y: Double = 0.0, configuration: LineTo.() -> Unit): LineTo

Add a LineTo with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.