Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of LinearBlend by
Revision 3:3503662f78fb, committed 2014-11-24
- 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;
- }
+}
