00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCodingProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @interface NSAffineTransform : NSObject <NSCopying, NSCoding>
00013 {
00014 struct _NSAffineTransformStruct _transformStruct;
00015 }
00016
00017 + (id)transform;
00018 - (id)init;
00019 - (id)initWithTransform:(id)fp8;
00020 - (id)copyWithZone:(struct _NSZone *)fp8;
00021 - (BOOL)isEqual:(id)fp8;
00022 - (unsigned int)hash;
00023 - (void)translateXBy:(float)fp8 yBy:(float)fp12;
00024 - (void)rotateByDegrees:(float)fp8;
00025 - (void)rotateByRadians:(float)fp8;
00026 - (void)scaleBy:(float)fp8;
00027 - (void)scaleXBy:(float)fp8 yBy:(float)fp12;
00028 - (void)invert;
00029 - (void)appendTransform:(id)fp8;
00030 - (void)prependTransform:(id)fp8;
00031 - (struct _NSPoint)transformPoint:(struct _NSPoint)fp8;
00032 - (struct _NSSize)transformSize:(struct _NSSize)fp8;
00033 - (struct _NSAffineTransformStruct)transformStruct;
00034 - (void)setTransformStruct:(struct _NSAffineTransformStruct)fp8;
00035 - (void)encodeWithCoder:(id)fp8;
00036 - (id)initWithCoder:(id)fp8;
00037
00038 @end
00039