Per default set the length of Uranus to a shorter value to allow for earlier time jumps with exceeding the spice kernel range

Set correct min/max values for static rotations
Enable rendering of matrix properties in ImGUI
This commit is contained in:
Alexander Bock
2017-11-24 15:31:19 -05:00
parent 8380b8f421
commit 182694422e
5 changed files with 191 additions and 61 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ documentation::Documentation StaticRotation::Documentation() {
}
StaticRotation::StaticRotation()
: _rotationMatrix(RotationInfo, glm::dmat3(1.0))
: _rotationMatrix(RotationInfo, glm::dmat3(1.0), glm::dmat3(-1.0), glm::dmat3(1.0))
{
addProperty(_rotationMatrix);
_rotationMatrix.onChange([this]() { _matrix = _rotationMatrix; });