1 //
2 //  PXEllipseTool.h
3 //  Pixen-XCode
4 //
5 //  Created by Ian Henderson on Wed Mar 10 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import "PXLinearTool.h"
10 
11 
12 @interface PXEllipseTool : PXLinearTool {
13 }
14 
15 - (void)mouseDownAt:(NSPoint)aPoint fromCanvasController:controller;
16 - (void)drawPixelAtPoint:(NSPoint)aPoint withColor:(NSColor *)specialColor inCanvas:aCanvas; //should probably be put into PXPencilTool
17 - (void)plotFilledEllipseInscribedInRect:(NSRect)bound withLineWidth:(int)borderWidth withFillColor:(NSColor *)fillColor inCanvas:canvas;
18 - (void)plotUnfilledEllipseInscribedInRect:(NSRect)bound withLineWidth:(int)borderWidth inCanvas:canvas;
19 
20 @end
21