mirror of
https://github.com/syoyo/tinygltf.git
synced 2026-06-08 03:03:50 +00:00
M_PI was not defined by <cmath>
This commit is contained in:
@@ -788,8 +788,10 @@ static void QuatToAngleAxis(const std::vector<double> quaternion,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
constexpr double pi = 3.14159265358979323846;
|
||||||
|
|
||||||
double denom = sqrt(1-qw*qw);
|
double denom = sqrt(1-qw*qw);
|
||||||
outAngleDegrees = angleRadians * 180.0 / M_PI;
|
outAngleDegrees = angleRadians * 180.0 / pi;
|
||||||
axis[0] = qx / denom;
|
axis[0] = qx / denom;
|
||||||
axis[1] = qy / denom;
|
axis[1] = qy / denom;
|
||||||
axis[2] = qz / denom;
|
axis[2] = qz / denom;
|
||||||
|
|||||||
Reference in New Issue
Block a user