Bradley Perry / LinearBlend1

Fork of LinearBlend by Bradley Perry

Files at this revision

API Documentation at this revision

Comitter:
perr1940
Date:
Mon Nov 24 03:33:14 2014 +0000
Parent:
2:8e81d72bf792
Child:
4:a25456624155
Commit message:
Using new linear blend

Changed in this revision

LinearBlend.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/LinearBlend.cpp	Fri Nov 14 22:38:29 2014 +0000
+++ b/LinearBlend.cpp	Mon Nov 24 03:33:14 2014 +0000
@@ -22,13 +22,13 @@
 Calculate Blend Function
 ***********************************************************/
 //Function that calculates the blending trajectory, point by point.
-  
+
 /*float* LinearBlend::blend(float ref[])
 {
     //Pointer to the variable to store the trajectory point for the left side
     for(int i=0; i<=t_blend; i++) {
         ref[i]=slope*i+start;
-        
+
     }
 
     return ref;
@@ -43,4 +43,4 @@
     }
 
     return ref;
-    }
+}