SVGTransform.m 651 B

1234567891011121314151617
  1. #import "SVGTransform.h"
  2. @implementation SVGTransform
  3. @synthesize type;
  4. @synthesize matrix;
  5. @synthesize angle;
  6. -(void) setMatrix:(SVGMatrix*) matrix { NSAssert( FALSE, @"Not implemented yet" ); }
  7. -(void) setTranslate:(float) tx ty:(float) ty { NSAssert( FALSE, @"Not implemented yet" ); }
  8. -(void) setScale:(float) sx sy:(float) sy { NSAssert( FALSE, @"Not implemented yet" ); }
  9. -(void) setRotate:(float) angle cx:(float) cx cy:(float) cy { NSAssert( FALSE, @"Not implemented yet" ); }
  10. -(void) setSkewX:(float) angle { NSAssert( FALSE, @"Not implemented yet" ); }
  11. -(void) setSkewY:(float) angle { NSAssert( FALSE, @"Not implemented yet" ); }
  12. @end