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 priustroller_2 by
util/transforms.cpp
- Committer:
- bwang
- Date:
- 2015-03-16
- Revision:
- 35:83cf9564bd0c
- Parent:
- 33:e7b132029bae
File content as of revision 35:83cf9564bd0c:
#include "includes.h" #include "transforms.h" #include "fastmath.h" void Transforms::Clarke(float a, float b, float *alpha, float *beta) { *alpha = a; *beta = (a + 2.0f * b)/sqrt(3.0f); } void Transforms::InverseClarke(float alpha, float beta, float *a, float *b) { *a = alpha; *b = -0.5 * alpha + sqrt(3.0f) / 2.0f * beta; } void Transforms::Parke(float beta, float alpha, float theta, float *d, float *q) { float cos = FastCos(theta); float sin = FastSin(theta); *d = alpha * cos + beta * sin; *q = -alpha * sin + beta * cos; } void Transforms::InverseParke(float d, float q, float theta, float *alpha, float *beta) { float cos = FastCos(theta); float sin = FastSin(theta); *alpha = cos * d - sin * q; *beta = sin * d + cos * q; }