Skip to content
Snippets Groups Projects
Unverified Commit a5223c91 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by GitHub
Browse files

Merge pull request #120 from jcarpent/topic/python

python/transform: add copy constructor
parents c68543fd f3971b68
No related branches found
No related tags found
No related merge requests found
// //
// Software License Agreement (BSD License) // Software License Agreement (BSD License)
// //
// Copyright (c) 2019 CNRS-LAAS // Copyright (c) 2019 CNRS-LAAS INRIA
// Author: Joseph Mirabel // Author: Joseph Mirabel
// All rights reserved. // All rights reserved.
// //
...@@ -69,12 +69,13 @@ void exposeMaths () ...@@ -69,12 +69,13 @@ void exposeMaths ()
if(!eigenpy::register_symbolic_link_to_registered_type<Eigen::AngleAxisd>()) if(!eigenpy::register_symbolic_link_to_registered_type<Eigen::AngleAxisd>())
eigenpy::exposeAngleAxis(); eigenpy::exposeAngleAxis();
class_ <Transform3f> ("Transform3f", init<>()) class_ <Transform3f> ("Transform3f", init<>("Default constructor."))
.def (init<Matrix3f, Vec3f>()) .def (init<Matrix3f, Vec3f>())
.def (init<Quaternion3f, Vec3f>()) .def (init<Quaternion3f, Vec3f>())
.def (init<Matrix3f>()) .def (init<Matrix3f>())
.def (init<Quaternion3f>()) .def (init<Quaternion3f>())
.def (init<Vec3f>()) .def (init<Vec3f>())
.def (init<Transform3f>(args("self","other"),"Copy constructor."))
.def ("getQuatRotation", &Transform3f::getQuatRotation) .def ("getQuatRotation", &Transform3f::getQuatRotation)
.def ("getTranslation", &Transform3f::getTranslation, return_value_policy<copy_const_reference>()) .def ("getTranslation", &Transform3f::getTranslation, return_value_policy<copy_const_reference>())
......
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