INNER CODE UNIT · C++

RAD2DEG

Code-Guy/Bamboo · external/imgui/ImGuizmo.cpp:48

   static const float RAD2DEG = (180.f / ZPI);
   static const float DEG2RAD = (ZPI / 180.f);
   const float screenRotateSize = 0.06f;

   static OPERATION operator&(OPERATION lhs, OPERATION rhs)
   {
     return static_cast<OPERATION>(static_cast<int>(lhs) & static_cast<int>(rhs));
   }

   static bool operator!=(OPERATION lhs, int rhs)
   {
     return static_cast<int>(lhs) != rhs;
   }

   static bool operator==(OPERATION lhs, int rhs)
   {
     return static_cast<int>(lhs) == rhs;
   }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…