SVGPoint.m 186 B

123456789101112131415
  1. #import "SVGPoint.h"
  2. @implementation SVGPoint
  3. @synthesize x, y;
  4. -(SVGPoint*) matrixTransform:(SVGMatrix*) matrix
  5. {
  6. NSAssert( FALSE, @"Not implemented yet" );
  7. return nil;
  8. }
  9. @end