diff options
Diffstat (limited to 'Source/SPGeometryDataView.m')
-rw-r--r-- | Source/SPGeometryDataView.m | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/SPGeometryDataView.m b/Source/SPGeometryDataView.m index 61dc6f25..10cf5b4a 100644 --- a/Source/SPGeometryDataView.m +++ b/Source/SPGeometryDataView.m @@ -290,7 +290,6 @@ */ - (NSPoint)_normalizePoint:(NSPoint)aPoint { - aPoint.x*=zoom_factor; aPoint.y*=zoom_factor; aPoint.x-=x_min; @@ -305,14 +304,12 @@ */ - (void)_drawPoint:(NSPoint)aPoint { - NSBezierPath *circlePath = [NSBezierPath bezierPath]; [circlePath appendBezierPathWithOvalInRect:NSMakeRect(aPoint.x-5,aPoint.y-5,10,10)]; [pointStrokeColor setStroke]; [pointFillColor setFill]; [circlePath stroke]; [circlePath fill]; - } @end |