1 //
2 //  PXRectangleTool.h
3 //  Pixen-XCode
4 //
5 //  Created by Andy Matuschak 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 PXRectangleTool : PXLinearTool {
13 	NSRect lastRect;
14 }
15 
16 - (void)drawRect:(NSRect)aRect inCanvas:aCanvas;
17 
18 @end
19