Skip to content

Commit

Permalink
Merge pull request #50 from VisionSystemsInc/more_rotation_3d_constru…
Browse files Browse the repository at this point in the history
…ctors

wrap additional rotation_3d constructors
  • Loading branch information
andyneff authored Jul 31, 2019
2 parents fd3ddc2 + 6d2bd18 commit f91ed4a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vgl/algo/pyvgl_algo.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ void wrap_vgl_algo(py::module &m)
.def(py::init<>())
.def(py::init<vnl_vector_fixed<double,4> >())
.def(py::init<vnl_matrix_fixed<double,3,3> >())
.def(py::init<vnl_vector_fixed<double,3> >())
.def(py::init<vnl_vector_fixed<double,3>,vnl_vector_fixed<double,3> >())
.def("as_matrix", &vgl_rotation_3d<double>::as_matrix)
.def("as_quaternion", &vgl_rotation_3d<double>::as_quaternion)
.def("inverse", &vgl_rotation_3d<double>::inverse)
Expand Down

0 comments on commit f91ed4a

Please sign in to comment.