You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
583 B

5 years ago
  1. //
  2. // M13ProgressViewMetroDotShape.h
  3. // M13ProgressSuite
  4. //
  5. // Created by Brandon McQuilkin on 3/9/14.
  6. // Copyright (c) 2014 Brandon McQuilkin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "M13ProgressViewMetro.h"
  10. /**A subclass of M13ProgressViewMetroDot.*/
  11. @interface M13ProgressViewMetroDotPolygon : M13ProgressViewMetroDot
  12. /**The number of sides the polygon has.
  13. @note if set less than 3, the polygon will be a circle.*/
  14. @property (nonatomic, assign) NSUInteger numberOfSides;
  15. /**The radius of the polygon.*/
  16. @property (nonatomic, assign) CGFloat radius;
  17. @end