Make velocities visible

This commit is contained in:
Pascal Serrarens 2024-09-25 11:49:16 +02:00
parent 1079a725d9
commit 827504fbd0

View File

@ -115,6 +115,7 @@ class Thing {
Thing* parent = nullptr;
Thing** children = nullptr;
public:
AngleAxis16 angularVelocity = AngleAxis16::zero;
Spherical16 linearVelocity = Spherical16::zero;
};