assertEquals(PercentHelper.getDecimalValue(25), mockSun.getRiseAngle());
assertEquals(PercentHelper.getDecimalValue(50), mockSun.getZenithAngle());
Vector3f actualDirection = new Vector3f();
sunLight.getDirection(actualDirection);
Vector3f expectedDirection = new Vector3f((float) Math.sqrt(2) / 2, -0.5f, -0.5f);
expectedDirection.normalize();
VectorTestHelper.assertVectorEquals(expectedDirection, actualDirection);
mockSun.setZenithAngle(PercentHelper.getDecimalValue(0));
sun3D.update(mockSun, SunUpdateCode.zenithAngle);
sunLight.getDirection(actualDirection);