16SCENARIO(
"Verify compilation and calculations of math::angleMod",
"[math::angleMod]" )
18 GIVEN(
"angles in degrees" )
20 WHEN(
"positive angle, no changes" )
24 REQUIRE_THAT( q, Catch::Matchers::WithinRel( 43.2 ) );
27 WHEN(
"positive angle, no changes" )
31 REQUIRE_THAT( q, Catch::Matchers::WithinRel( 353.2 ) );
34 WHEN(
"positive angle, exactly 360" )
38 REQUIRE_THAT( q, Catch::Matchers::WithinRel( 0.0 ) );
41 WHEN(
"positive angle, mod needed" )
45 REQUIRE_THAT( q, Catch::Matchers::WithinRel( 2.0 ) );
49 GIVEN(
"angles in radians" )
51 WHEN(
"positive angle, no changes" )
55 REQUIRE_THAT( q, Catch::Matchers::WithinRel(
mx::math::dtor( 43.2 ) ) );
58 WHEN(
"positive angle, no changes" )
62 REQUIRE_THAT( q, Catch::Matchers::WithinRel(
mx::math::dtor( 353.2 ) ) );
65 WHEN(
"positive angle, exactly 2pi" )
69 REQUIRE_THAT( q, Catch::Matchers::WithinRel(
mx::math::dtor( 0.0 ) ) );
72 WHEN(
"positive angle, mod needed" )
76 REQUIRE_THAT( q, Catch::Matchers::WithinRel(
mx::math::dtor( 2.0 ) ) );
86SCENARIO(
"Verify compilation and calculations of math::angleDiff",
"[math::angleDiff]" )
88 GIVEN(
"angles in degrees" )
90 WHEN(
"positive, first angle is 0, not crossing 180/360" )
94 REQUIRE_THAT( q, Catch::Matchers::WithinRel( 43.2 ) );
97 WHEN(
"negative, second angle is 0, not crossing 180/360" )
101 REQUIRE_THAT( q, Catch::Matchers::WithinRel( -43.2 ) );
104 WHEN(
"positive, first angle is 360, not crossing 180/360" )
108 REQUIRE_THAT( q, Catch::Matchers::WithinRel( 43.2 ) );
111 WHEN(
"negative, second angle is 3600, not crossing 180/360" )
115 REQUIRE_THAT( q, Catch::Matchers::WithinRel( -43.2 ) );
118 WHEN(
"positive, crossing 360" )
122 REQUIRE_THAT( q, Catch::Matchers::WithinRel( 43.2 ) );
125 WHEN(
"negative, crossing 180/360" )
129 REQUIRE_THAT( q, Catch::Matchers::WithinRel( -43.2 ) );
132 WHEN(
"positive, crossing 180" )
136 REQUIRE_THAT( q, Catch::Matchers::WithinRel( 46.2 ) );
139 WHEN(
"negative, crossing 180" )
143 REQUIRE_THAT( q, Catch::Matchers::WithinRel( -46.2 ) );
147 GIVEN(
"angles in radians" )
149 WHEN(
"positive, first angle is 0, not crossing pi/2pi" )
157 WHEN(
"negative, second angle is 0, not crossing pi/2pi" )
165 WHEN(
"positive, first angle is 360, not crossing pi/2pi" )
173 WHEN(
"negative, second angle is 3600, not crossing pi/2pi" )
181 WHEN(
"positive, crossing 2pi" )
189 WHEN(
"negative, crossing 2pi" )
197 WHEN(
"positive, crossing pi" )
205 WHEN(
"negative, crossing pi" )