1 //
2 //  PXPattern.h
3 //  Pixen-XCode
4 //
5 //  Created by Ian Henderson on 07.10.04.
6 //  Copyright 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import "PXCanvas.h"
10 
11 @interface PXPattern : PXCanvas {
12 
13 }
14 
15 - (NSArray *)pointsInPattern;
16 - (void)addPoint:(NSPoint)point;
17 - (void)addPoints:(NSArray *)points;
18 
19 @end
20