Little corrections
HashDigest: Simultaneous use of int and short EulerAngles: Use of the macro Geom: cone was missing Former-commit-id: ecc3a586732a6711b57ce3e79c5450ef7327bb5b
This commit is contained in:
@@ -83,9 +83,9 @@ template<typename T>
|
||||
template<typename U>
|
||||
void NzEulerAngles<T>::Set(const NzEulerAngles<U>& angles)
|
||||
{
|
||||
pitch = static_cast<T>(angles.pitch);
|
||||
yaw = static_cast<T>(angles.yaw);
|
||||
roll = static_cast<T>(angles.roll);
|
||||
pitch = F(angles.pitch);
|
||||
yaw = F(angles.yaw);
|
||||
roll = F(angles.roll);
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
|
||||
Reference in New Issue
Block a user