Ejemplo n.º 1
0
 public override SvgPathSeg VisitCurvetoCubicRel(SvgPathSegCurvetoCubicRel segment)
 => new SvgPathSegCurvetoCubicAbs(_x + segment.X1, _y + segment.Y1, _x + segment.X2, _y + segment.Y2, _x += segment.X, _y += segment.Y);
Ejemplo n.º 2
0
 public virtual void VisitCurvetoCubicRel(SvgPathSegCurvetoCubicRel segment)
 => DefaultVisit(segment);
 public override void VisitCurvetoCubicRel(SvgPathSegCurvetoCubicRel segment) => EmitCubicCurveto(segment);
Ejemplo n.º 4
0
 public override void VisitCurvetoCubicRel(SvgPathSegCurvetoCubicRel segment)
 => UpdateRelXy(segment.X, segment.Y, segment.X2, segment.Y2);
Ejemplo n.º 5
0
 public override void VisitCurvetoCubicRel(SvgPathSegCurvetoCubicRel segment)
 => this.CubicBezierTo(new PointF(segment.X1, segment.Y1) + this.currentPoint, new PointF(segment.X2, segment.Y2) + this.currentPoint, new PointF(segment.X, segment.Y) + this.currentPoint);