Skip to content
Snippets Groups Projects
Verified Commit 2c501960 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

geometry: fix default constructor

parent bd746be0
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,6 @@ namespace eigenpy
void visit(PyClass& cl) const
{
cl
.def(bp::init<>(bp::arg("self"),"Default constructor")[bp::return_value_policy<bp::return_by_value>()])
.def(bp::init<Matrix3>((bp::arg("self"),bp::arg("R")),
"Initialize from rotation matrix.\n"
"\tR : a rotation matrix 3x3.")[bp::return_value_policy<bp::return_by_value>()])
......@@ -129,6 +128,8 @@ namespace eigenpy
(bp::arg("vec4"))),
"Initialize from a vector 4D.\n"
"\tvec4 : a 4D vector representing quaternion coefficients in the order xyzw.")
.def("__init__",bp::make_constructor(&QuaternionVisitor::DefaultConstructor),
"Default constructor")
.def(bp::init<Scalar,Scalar,Scalar,Scalar>
((bp::arg("self"),bp::arg("w"),bp::arg("x"),bp::arg("y"),bp::arg("z")),
"Initialize from coefficients.\n\n"
......@@ -269,6 +270,11 @@ namespace eigenpy
return q;
}
static Quaternion* DefaultConstructor()
{
return new Quaternion;
}
static Quaternion* FromOneVector(const Vector4& v)
{
Quaternion* q(new Quaternion(v));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment