SVGCircleElement.m 316 B

1234567891011121314151617181920212223
  1. //
  2. // SVGCircleElement.m
  3. // SVGKit
  4. //
  5. // Copyright Matt Rajca 2010-2011. All rights reserved.
  6. //
  7. #import "SVGCircleElement.h"
  8. @implementation SVGCircleElement
  9. @dynamic r;
  10. - (CGFloat)r {
  11. if (self.rx != self.ry) {
  12. SVGKitLogVerbose(@"Undefined radius of circle");
  13. return 0.0f;
  14. }
  15. return self.rx;
  16. }
  17. @end