SVGAngle.m 417 B

12345678910111213
  1. #import "SVGAngle.h"
  2. @implementation SVGAngle
  3. @synthesize unitType;
  4. @synthesize value;
  5. @synthesize valueInSpecifiedUnits;
  6. @synthesize valueAsString;
  7. -(void) newValueSpecifiedUnits:(SVGKAngleType) unitType valueInSpecifiedUnits:(float) valueInSpecifiedUnits { NSAssert( FALSE, @"Not implemented yet" ); }
  8. -(void) convertToSpecifiedUnits:(SVGKAngleType) unitType { NSAssert( FALSE, @"Not implemented yet" ); }
  9. @end