// // MyPolygon.h // B-spline // // Created by Alexander Powell on Mon Aug 26 2002. // Copyright (c) 2002 __MyCompanyName__. All rights reserved. // #import #import #import #import #import #import #import #import #import "MyPoint.h" #import "Subdivider.h" @interface MyPolygon : NSObject { NSMutableArray *points; } - (MyPolygon*)subdivideWith:(int)subdivisionType; - (void)drawSelf; - (void)loadFromFile:(NSString *)filename; - (void)setPoints:(NSMutableArray *)newPoints; @end