use Serialize;
use crate::;
/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.moveto?view=openxml-3.0.1
///
/// This element specifies a set of new coordinates to move the shape cursor to.
///
/// This does not draw a line or curve to this new position from the old position but simply move the cursor to a new starting position.
/// It is only when a path drawing element such as lnTo is used that a portion of the path is drawn.
///
/// Example
/// ```
/// <a:moveTo>
/// <a:pt x="0" y="1261641"/>
/// </a:moveTo>
/// ```