added code with merge conflict as note to self, accelleration will just have to wait
This commit is contained in:
parent
703d812b85
commit
48b596c2fe
7 changed files with 158 additions and 5 deletions
|
|
@ -41,4 +41,10 @@
|
|||
#define Y_AXIS 1
|
||||
#define Z_AXIS 2
|
||||
|
||||
void scale_vector(float *target, float *source, float multiplier) {
|
||||
target[0] = source[0]*multiplier;
|
||||
target[1] = source[1]*multiplier;
|
||||
target[2] = source[2]*multiplier;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue