// // MPT_Face.h // AUCoderDemo // // Created by Andrew Salamon on 6/29/06. // Copyright 2006 __MyCompanyName__. All rights reserved. // #import @interface MPT_Face : NSObject { NSRect face; NSPoint leftEye; NSPoint rightEye; } - (id)initWithFace:(NSRect)_face left:(NSPoint)_left right:(NSPoint)_right; - (NSRect)face; - (void)setFace:(NSRect)value; - (NSPoint)leftEye; - (void)setLeftEye:(NSPoint)value; - (NSPoint)rightEye; - (void)setRightEye:(NSPoint)value; - (float)headTilt; // in degrees: negative value = head tilted to the right (from subject's point of view) @end