Browse Source

Use ArcToHelper for new skia backend

pull/517/head
Nikita Tsukanov 10 years ago
parent
commit
a49e2c15f1
  1. 4
      src/Skia/Perspex.Skia/StreamGeometryImpl.cs

4
src/Skia/Perspex.Skia/StreamGeometryImpl.cs

@ -50,7 +50,7 @@ namespace Perspex.Skia
_transformedPath.Dispose();
_transformedPath = null;
}
// TODO: SkiaSharp does not expose Transform yet!!!
//if (!Transform.IsIdentity)
//{
@ -111,7 +111,7 @@ namespace Perspex.Skia
public void ArcTo(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection)
{
throw new NotImplementedException();
ArcToHelper.ArcTo(this, _currentPoint, point, size, rotationAngle, isLargeArc, sweepDirection);
}
public void BeginFigure(Point startPoint, bool isFilled)

Loading…
Cancel
Save