// // MyPoint.h // B-spline // // Created by Alexander Powell on Tue Aug 27 2002. // Copyright (c) 2002 __MyCompanyName__. All rights reserved. // #import @interface MyPoint : NSObject { double x; double y; double z; } - (id)initWithX:(double)newX y:(double)newY z:(double)newZ; - (double)x; - (double)y; - (double)z; - (void)setX:(double)newX; - (void)setY:(double)newY; - (void)setZ:(double)newZ; - (void)normalize; @end