public CircularArc3PointClose(PointF start, PointF intermediate, PointF end, ArcClosureType closure)
     : base(4, 14)
 {
     Start        = start;
     Intermediate = intermediate;
     End          = end;
     Closure      = closure;
 }
 public CircularArcCenterClose(PointF center, PointF start, PointF end, double radius, ArcClosureType closure)
     : base(4, 16)
 {
     Center  = center;
     Start   = start;
     End     = end;
     Radius  = radius;
     Closure = closure;
 }
Example #3
0
 public EllipticalArcClose(PointF center, PointF firstConjugateDiameter, PointF secondConjugateDiameter, PointF start, PointF end, ArcClosureType closure)
     : base(4, 19)
 {
     Center = center;
     FirstConjugateDiameter  = firstConjugateDiameter;
     SecondConjugateDiameter = secondConjugateDiameter;
     Start   = start;
     End     = end;
     Closure = closure;
 }