From 3e8437ae559487362fae3525beb79c534c213a51 Mon Sep 17 00:00:00 2001
From: 单军华
Date: Thu, 12 Jul 2018 13:44:34 +0800
Subject: [PATCH] bug修复和功能优化

---
 screendisplay/Pods/M13ProgressSuite/Classes/ProgressViews/M13ProgressViewLetterpress.h |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/screendisplay/Pods/M13ProgressSuite/Classes/ProgressViews/M13ProgressViewLetterpress.h b/screendisplay/Pods/M13ProgressSuite/Classes/ProgressViews/M13ProgressViewLetterpress.h
new file mode 100755
index 0000000..d70aa3f
--- /dev/null
+++ b/screendisplay/Pods/M13ProgressSuite/Classes/ProgressViews/M13ProgressViewLetterpress.h
@@ -0,0 +1,47 @@
+//
+//  M13ProgressViewLetterpress.h
+//  M13ProgressSuite
+//
+//  Created by Brandon McQuilkin on 4/28/14.
+//  Copyright (c) 2014 Brandon McQuilkin. All rights reserved.
+//
+
+#import "M13ProgressView.h"
+
+typedef enum {
+    M13ProgressViewLetterpressPointShapeSquare,
+    M13ProgressViewLetterpressPointShapeCircle
+} M13ProgressViewLetterpressPointShape;
+
+@interface M13ProgressViewLetterpress : M13ProgressView
+/**@name Properties*/
+/**
+ The number of grid points in each direction.
+ */
+@property (nonatomic, assign) CGPoint numberOfGridPoints;
+/**
+ The shape of the grid points.
+ */
+@property (nonatomic, assign) M13ProgressViewLetterpressPointShape pointShape;
+/**
+ The amount of space between the grid points, as a percentage of the point's size.
+ */
+@property (nonatomic, assign) CGFloat pointSpacing;
+/**
+ The size of the notch to carve out on one side.
+ */
+@property (nonatomic, assign) CGSize notchSize;
+/**
+ The spring constant that defines the amount of "spring" the progress view has in its animation.
+ */
+@property (nonatomic, assign) CGFloat springConstant;
+/**
+ The constant that determines how long the progress view "bounces" for.
+ */
+@property (nonatomic, assign) CGFloat dampingCoefficient;
+/**
+ The constant that determines how much the springConstant and dampingCoefficent affect the animation.
+ */
+@property (nonatomic, assign) CGFloat mass;
+
+@end

--
Gitblit v1.8.0