add translate relative
This commit is contained in:
parent
eaf0d2fc32
commit
14523a8f5c
2 changed files with 10 additions and 0 deletions
|
@ -69,6 +69,15 @@ void Transform::TranslateAbsolute(float _x, float _y, float _z)
|
||||||
worldMatrixChanged = true;
|
worldMatrixChanged = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Transform::TranslateRelative(float _x, float _y, float _z)
|
||||||
|
{
|
||||||
|
XMVECTOR moveVector = XMVectorSet(_x, _y, _z, 0);
|
||||||
|
XMVECTOR rotateVector = XMVector3Rotate(moveVector, XMQuaternionRotationRollPitchYaw(eulerAngles.x, eulerAngles.y, eulerAngles.z));
|
||||||
|
XMVECTOR newPosition = XMLoadFloat3(&position) + rotateVector;
|
||||||
|
XMStoreFloat3(&position, newPosition);
|
||||||
|
worldMatrixChanged = true;
|
||||||
|
}
|
||||||
|
|
||||||
void Transform::Rotate(float _pitch, float _yaw, float _roll)
|
void Transform::Rotate(float _pitch, float _yaw, float _roll)
|
||||||
{
|
{
|
||||||
XMVECTOR newRotation = XMLoadFloat3(&position);
|
XMVECTOR newRotation = XMLoadFloat3(&position);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public:
|
||||||
void SetScale(float _x, float _y, float _z);
|
void SetScale(float _x, float _y, float _z);
|
||||||
|
|
||||||
void TranslateAbsolute(float _x, float _y, float _z);
|
void TranslateAbsolute(float _x, float _y, float _z);
|
||||||
|
void TranslateRelative(float _x, float _y, float _z);
|
||||||
void Rotate(float _pitch, float _yaw, float _roll);
|
void Rotate(float _pitch, float _yaw, float _roll);
|
||||||
void Scale(float _x, float _y, float _z);
|
void Scale(float _x, float _y, float _z);
|
||||||
|
|
||||||
|
|
Reference in a new issue