示例#1
0
 public override SvgPathSeg VisitCurvetoCubicSmoothRel(SvgPathSegCurvetoCubicSmoothRel segment)
 => new SvgPathSegCurvetoCubicSmoothAbs(_x + segment.X2, _y + segment.Y2, _x += segment.X, _y += segment.Y);
示例#2
0
 public virtual void VisitCurvetoCubicSmoothRel(SvgPathSegCurvetoCubicSmoothRel segment)
 => DefaultVisit(segment);
 public override void VisitCurvetoCubicSmoothRel(SvgPathSegCurvetoCubicSmoothRel segment) => EmitSmoothCubicCurveto(segment);
示例#4
0
 public override void VisitCurvetoCubicSmoothRel(SvgPathSegCurvetoCubicSmoothRel segment)
 => UpdateRelXy(segment.X, segment.Y, segment.X2, segment.Y2);
示例#5
0
 public override void VisitCurvetoCubicSmoothRel(SvgPathSegCurvetoCubicSmoothRel segment)
 => this.SmoothCubicBezierTo(new PointF(segment.X2, segment.Y2) + currentPoint, new PointF(segment.X, segment.Y) + currentPoint);