mirror of
https://github.com/isledecomp/isle.git
synced 2025-12-09 23:53:02 +00:00
rename functions and parameters in OrientableROI (#1512)
This commit is contained in:
@@ -28,9 +28,9 @@ const Tgl::Group* ViewROI::GetGeometry() const
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100a9ee0
|
||||
void ViewROI::UpdateWorldData(const Matrix4& parent2world)
|
||||
void ViewROI::UpdateWorldDataWithTransformAndChildren(const Matrix4& parent2world)
|
||||
{
|
||||
OrientableROI::UpdateWorldData(parent2world);
|
||||
OrientableROI::UpdateWorldDataWithTransformAndChildren(parent2world);
|
||||
|
||||
if (geometry) {
|
||||
Tgl::FloatMatrix4 matrix;
|
||||
@@ -42,9 +42,9 @@ void ViewROI::UpdateWorldData(const Matrix4& parent2world)
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100a9fc0
|
||||
void ViewROI::VTable0x24(const Matrix4& p_transform)
|
||||
void ViewROI::UpdateWorldDataWithTransform(const Matrix4& p_transform)
|
||||
{
|
||||
OrientableROI::VTable0x24(p_transform);
|
||||
OrientableROI::UpdateWorldDataWithTransform(p_transform);
|
||||
if (geometry) {
|
||||
Tgl::FloatMatrix4 matrix;
|
||||
Matrix4 in(matrix);
|
||||
@@ -54,9 +54,9 @@ void ViewROI::VTable0x24(const Matrix4& p_transform)
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100aa0a0
|
||||
void ViewROI::SetLocalTransform(const Matrix4& p_transform)
|
||||
void ViewROI::SetLocal2WorldWithWorldDataUpdate(const Matrix4& p_transform)
|
||||
{
|
||||
OrientableROI::SetLocalTransform(p_transform);
|
||||
OrientableROI::SetLocal2WorldWithWorldDataUpdate(p_transform);
|
||||
if (geometry) {
|
||||
Tgl::FloatMatrix4 matrix;
|
||||
Matrix4 in(matrix);
|
||||
@@ -66,9 +66,9 @@ void ViewROI::SetLocalTransform(const Matrix4& p_transform)
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100aa180
|
||||
void ViewROI::VTable0x1c()
|
||||
void ViewROI::UpdateWorldData()
|
||||
{
|
||||
OrientableROI::VTable0x1c();
|
||||
OrientableROI::UpdateWorldData();
|
||||
if (geometry) {
|
||||
Tgl::FloatMatrix4 matrix;
|
||||
Matrix4 in(matrix);
|
||||
|
||||
Reference in New Issue
Block a user