moveTo
Moveto is a term used in vector graphics and graphical user interfaces to describe an operation that relocates the current drawing position to specified coordinates without rendering a stroke or shape. It establishes the starting point for subsequent drawing commands and is typically part of path construction.
In PostScript and PDF, moveto-like operations reposition the current point within a path without drawing. In
In SVG, the path data string uses M or m to perform a moveto. Uppercase M indicates
Many programming environments expose a MoveTo or moveTo function as part of a graphics API. Examples include
Notes: MoveTo does not draw a line from the previous point; to render a line, a later