Skip to content
Snippets Groups Projects
Commit f4f947b9 authored by Martin Heistermann's avatar Martin Heistermann
Browse files

use PropertyCodecs::register_matrixlike

parent 05193bb9
No related branches found
No related tags found
No related merge requests found
......@@ -71,11 +71,11 @@ void FileOVMBPlugin::initializePlugin()
pc.register_arraylike<ACG::QuaternionT<double>>("quat_d");
pc.register_arraylike<ACG::QuaternionT<float>>("quat_f");
pc.register_arraylike<ACG::Matrix3x3T<double>, 9>("3x3d");
pc.register_arraylike<ACG::Matrix4x4T<double>, 16>("4x4d");
pc.register_matrixlike<ACG::Matrix3x3T<double>, 3, 3>("3x3d");
pc.register_matrixlike<ACG::Matrix3x3T<float>, 3, 3>("3x3f");
pc.register_arraylike<ACG::Matrix3x3T<float>, 9>("3x3f");
pc.register_arraylike<ACG::Matrix4x4T<float>, 16>("4x4f");
pc.register_matrixlike<ACG::Matrix4x4T<double>, 4, 4>("4x4d");
pc.register_matrixlike<ACG::Matrix4x4T<float>, 4, 4>("4x4f");
if (!OpenFlipper::Options::nogui())
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment