SVGTransformable.h 391 B

12345678910111213141516
  1. /**
  2. * http://www.w3.org/TR/SVG/types.html#InterfaceSVGTransformable
  3. interface SVGTransformable : SVGLocatable {
  4. readonly attribute SVGAnimatedTransformList transform;
  5. */
  6. #import <Foundation/Foundation.h>
  7. #import <QuartzCore/QuartzCore.h>
  8. @protocol SVGTransformable <NSObject>
  9. @property(nonatomic) CGAffineTransform transform; // FIXME: TODO: this should be a different type
  10. @end