00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <Cocoa/Cocoa.h>
00010
00011
00012 @interface LLShapes : NSObject {
00013
00014 }
00015
00016 - (NSRect) rectWithHeight:(int)height width:(int)width centerPoint:(NSPoint)centerGravity;
00017 - (void) drawTriangleNotchUpInRect:(NSRect)rect;
00018 - (void) drawTriangleNotchDownInRect:(NSRect)rect;
00019 - (void) drawCircleInRect:(NSRect) rect;
00020 - (void) drawSpaceShipInRect:(NSRect) rect;
00021 - (void) drawDoubleCircleInRect:(NSRect) rect;
00022 - (NSRect) createRectAroundOrigin:(NSRect)Rect;
00023 - (NSPoint)centreOfRect:(NSRect)Rect;
00024
00025
00026 @end