// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2024 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 6.0.2022.01.03 #include "RotationApproximationConsole.h" #include int main() { try { Console::Parameters parameters(L"RotationApproximationConsole"); auto console = TheConsoleSystem.Create(parameters); TheConsoleSystem.Execute(console); TheConsoleSystem.Destroy(console); } catch (std::exception const& e) { std::cout << e.what() << std::endl; } return 0; }