robot_model
src
pyrobot_model.cpp
Go to the documentation of this file.
1
/*********************************************************************
2
* Software License Agreement (BSD License)
3
*
4
* Copyright (c) 2021, Peter Mitrano
5
* All rights reserved.
6
*
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions
9
* are met:
10
*
11
* * Redistributions of source code must retain the above copyright
12
* notice, this list of conditions and the following disclaimer.
13
* * Redistributions in binary form must reproduce the above
14
* copyright notice, this list of conditions and the following
15
* disclaimer in the documentation and/or other materials provided
16
* with the distribution.
17
* * The name of Peter Mitrano may not be used to endorse or promote
18
* products derived from this software without specific prior
19
* written permission.
20
*
21
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
* POSSIBILITY OF SUCH DAMAGE.
33
*********************************************************************/
34
35
/* Author: Peter Mitrano */
36
37
#include <pybind11/pybind11.h>
38
#include <pybind11/stl.h>
39
#include <
moveit/robot_model/robot_model.h
>
40
#include <urdf_model/model.h>
41
#include <
moveit/python/pybind_rosmsg_typecasters.h
>
42
43
namespace
py
=
pybind11
;
44
using namespace
robot_model
;
45
46
void
def_robot_model_bindings
(py::module& m)
47
{
48
m.doc() =
"Definition of a kinematic model. Not thread safe, however multiple instances can be created."
;
49
py::class_<RobotModel, RobotModelPtr>(m,
"RobotModel"
)
50
.def(py::init<const urdf::ModelInterfaceSharedPtr&, const srdf::ModelConstSharedPtr&>(), py::arg(
"urdf_model"
),
51
py::arg(
"srdf_model"
))
52
.def(
"getName"
, &
RobotModel::getName
)
53
.def(
"getLinkModelNames"
, &
RobotModel::getLinkModelNames
)
54
.def(
"getJointModelNames"
, &
RobotModel::getJointModelNames
)
55
//
56
;
57
58
py::class_<JointModelGroup, JointModelGroupPtr>(m,
"JointModelGroup"
)
59
.def(
"getLinkModelNames"
, &
JointModelGroup::getLinkModelNames
)
60
.def(
"getJointModelNames"
, &
JointModelGroup::getJointModelNames
)
61
//
62
;
63
}
moveit::core
Core components of MoveIt.
Definition:
kinematics_base.h:83
pybind_rosmsg_typecasters.h
robot_model.h
def_robot_model_bindings
void def_robot_model_bindings(py::module &m)
Definition:
pyrobot_model.cpp:46
moveit::core::JointModelGroup::getJointModelNames
const std::vector< std::string > & getJointModelNames() const
Get the names of the joints in this group. These are the names of the joints returned by getJointMode...
Definition:
joint_model_group.h:216
moveit::core::RobotModel::getName
const std::string & getName() const
Get the model name.
Definition:
robot_model.h:153
moveit::core::JointModelGroup::getLinkModelNames
const std::vector< std::string > & getLinkModelNames() const
Get the names of the links that are part of this joint group.
Definition:
joint_model_group.h:284
pybind11
Definition:
pybind_rosmsg_typecasters.h:55
moveit::core::RobotModel::getLinkModelNames
const std::vector< std::string > & getLinkModelNames() const
Get the link names (of all links)
Definition:
robot_model.h:362
moveit::core::RobotModel::getJointModelNames
const std::vector< std::string > & getJointModelNames() const
Get the array of joint names, in the order they appear in the robot state.
Definition:
robot_model.h:232
moveit_core
Author(s): Ioan Sucan
, Sachin Chitta
, Acorn Pooley
autogenerated on Sun Nov 3 2024 03:26:15