SVGCircleElement.m 347 B

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