copy
fun copy(x: Double = this.x, y: Double = this.y, isRelative: Boolean = this.isRelative, minified: Boolean = this.minified, shouldClose: Boolean = this.shouldClose): PathNodes.MoveTo(source)
Creates a copy of this MoveTo with the given properties.
Return
A new MoveTo instance with the updated properties.
Parameters
x
The new x-coordinate for the move command.
y
The new y-coordinate for the move command.
isRelative
Whether the move command is relative or absolute.
minified
whether the output of materialize should be minified or not.
shouldClose
Whether the move command should close the path.