SVGLineElement.h 387 B

1234567891011121314151617
  1. //
  2. // SVGLineElement.h
  3. // SVGKit
  4. //
  5. // Copyright Matt Rajca 2010-2011. All rights reserved.
  6. //
  7. #import "BaseClassForAllSVGBasicShapes.h"
  8. @interface SVGLineElement : BaseClassForAllSVGBasicShapes { }
  9. @property (nonatomic, readonly) CGFloat x1;
  10. @property (nonatomic, readonly) CGFloat y1;
  11. @property (nonatomic, readonly) CGFloat x2;
  12. @property (nonatomic, readonly) CGFloat y2;
  13. @end