1using System.Threading.Tasks;
17 : base(Document, Parent)
34 return new SplineTo(Document, Parent);
47 return Task.CompletedTask;
61 return Task.CompletedTask;
76 public bool TryGetStart(out
float X, out
float Y, out
float Direction)
78 if (this.splineCurve is
null)
80 X = Y = Direction = 0;
84 return this.splineCurve.
TryGetStart(out X, out Y, out Direction);
94 public bool TryGetEnd(out
float X, out
float Y, out
float Direction)
96 if (this.splineCurve is
null)
98 X = Y = Direction = 0;
102 return this.splineCurve.
TryGetEnd(out X, out Y, out Direction);
Contains a 2D layout document.
bool defined
If element is well-defined.
Abstract base class for layout elements with one point.
float yCoordinate
Measured Y-coordinate
float xCoordinate
Measured X-coordinate
Interface for directed elements.
Base interface for all layout elements.