moveTo

fun PathElementManager.moveTo(x: Double = 0.0, y: Double = 0.0): MoveTo

Add a MoveTo to this manager.

Return

the control added.


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

Create a MoveTo with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


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

Add a MoveTo with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.