diff options
Diffstat (limited to 'src/osx/graphics/quartz/Geometry.cpp')
-rw-r--r-- | src/osx/graphics/quartz/Geometry.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/osx/graphics/quartz/Geometry.cpp b/src/osx/graphics/quartz/Geometry.cpp index 37e4645b..87ddff3e 100644 --- a/src/osx/graphics/quartz/Geometry.cpp +++ b/src/osx/graphics/quartz/Geometry.cpp @@ -50,12 +50,6 @@ void QuartzGeometryBuilder::QuadraticBezierTo(const Point &control_point, control_point.y, end_point.x, end_point.y); } -void QuartzGeometryBuilder::ArcTo(const Point &radius, float angle, - bool is_large_arc, bool is_clockwise, - const Point &end_point) { - // TODO: Implement this! -} - void QuartzGeometryBuilder::CloseFigure(bool close) { if (close) CGPathCloseSubpath(cg_mutable_path_); } |