mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 20:16:16 +02:00
Merge pull request #16019 from sethalves/bugz-1158
BUGZ-1158: fix uninitialized variables
This commit is contained in:
commit
166d29bd3b
1 changed files with 2 additions and 2 deletions
|
@ -78,7 +78,7 @@ public:
|
||||||
bool accurate { true };
|
bool accurate { true };
|
||||||
QUuid entityID;
|
QUuid entityID;
|
||||||
float distance { 0.0f };
|
float distance { 0.0f };
|
||||||
BoxFace face;
|
BoxFace face { UNKNOWN_FACE };
|
||||||
glm::vec3 intersection;
|
glm::vec3 intersection;
|
||||||
glm::vec3 surfaceNormal;
|
glm::vec3 surfaceNormal;
|
||||||
QVariantMap extraInfo;
|
QVariantMap extraInfo;
|
||||||
|
@ -94,7 +94,7 @@ public:
|
||||||
QUuid entityID;
|
QUuid entityID;
|
||||||
float distance { 0.0f };
|
float distance { 0.0f };
|
||||||
float parabolicDistance { 0.0f };
|
float parabolicDistance { 0.0f };
|
||||||
BoxFace face;
|
BoxFace face { UNKNOWN_FACE };
|
||||||
glm::vec3 intersection;
|
glm::vec3 intersection;
|
||||||
glm::vec3 surfaceNormal;
|
glm::vec3 surfaceNormal;
|
||||||
QVariantMap extraInfo;
|
QVariantMap extraInfo;
|
||||||
|
|
Loading…
Reference in a new issue