diff --git a/tests/pe/PeDocumentationSnippets.cpp b/tests/pe/PeDocumentationSnippets.cpp index 2b68d1b534dc31c88c165364066e68b45f5df927..109f23d7cc477bbda2b79777bdef7102b46ab89a 100644 --- a/tests/pe/PeDocumentationSnippets.cpp +++ b/tests/pe/PeDocumentationSnippets.cpp @@ -98,14 +98,14 @@ int main( int argc, char ** argv ) // be used to for instance rotate the box around the global y-axis. BoxID box = createBox( *globalBodyStorage, forest->getBlockStorage(), storageID, 1, Vec3(2,3,4), Vec3(2.5,2.5,2.5) ); if (box != NULL) - box->rotate( 0.0, math::PI/3.0, 0.0 ); + box->rotate( 0.0, real_c(math::PI/3.0), 0.0 ); //! [Create a Box] //! [Create a Capsule] // Create a capsule and rotate it after successfull creation. CapsuleID capsule = createCapsule( *globalBodyStorage, forest->getBlockStorage(), storageID, 1, Vec3(2,3,4), real_t(1), real_t(1) ); if (capsule != NULL) - capsule->rotate( 0.0, math::PI/3.0, 0.0 ); + capsule->rotate( 0.0, real_c(math::PI/3.0), 0.0 ); //! [Create a Capsule] //! [Create a Plane] @@ -118,7 +118,7 @@ int main( int argc, char ** argv ) // Create a sphere and rotate it after successfull creation. SphereID sphere = createSphere( *globalBodyStorage, forest->getBlockStorage(), storageID, 1, Vec3(2,3,4), real_t(1) ); if (sphere != NULL) - sphere->rotate( 0.0, math::PI/3.0, 0.0 ); + sphere->rotate( 0.0, real_c(math::PI/3.0), 0.0 ); //! [Create a Sphere] //! [Create a Union]