cartesianpathconstraintsbuilder.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Pilz GmbH & Co. KG
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef CARTESIANPATHCONSTRAINTSBUILDER_H
18 #define CARTESIANPATHCONSTRAINTSBUILDER_H
19 
20 #include <string>
21 
22 #include <moveit_msgs/Constraints.h>
23 
24 #include "cartesianconfiguration.h"
25 
27 {
33 {
34 public:
35  CartesianPathConstraintsBuilder& setConstraintName(const std::string& constraint_name);
37 
38  moveit_msgs::Constraints toPathConstraints() const;
39 
40 private:
41  std::string constraint_name_;
43 };
44 
46 CartesianPathConstraintsBuilder::setConstraintName(const std::string& constraint_name)
47 {
48  constraint_name_ = constraint_name;
49  return *this;
50 }
51 
54 {
55  configuration_ = configuration;
56  return *this;
57 }
58 
59 inline moveit_msgs::Constraints CartesianPathConstraintsBuilder::toPathConstraints() const
60 {
61  moveit_msgs::PositionConstraint pos_constraint;
62  pos_constraint.link_name = configuration_.getLinkName();
63  pos_constraint.constraint_region.primitive_poses.push_back(configuration_.getPose());
64 
65  moveit_msgs::Constraints path_constraints;
66  path_constraints.name = constraint_name_;
67  path_constraints.position_constraints.push_back(pos_constraint);
68  return path_constraints;
69 }
70 
71 } // namespace pilz_industrial_motion_testutils
72 
73 #endif // CARTESIANPATHCONSTRAINTSBUILDER_H
path_constraints
Helper class to build moveit_msgs::Constraints from a given configuration.
CartesianPathConstraintsBuilder & setConstraintName(const std::string &constraint_name)
CartesianPathConstraintsBuilder & setConfiguration(const CartesianConfiguration &configuration)
Class to define a robot configuration in space with the help of cartesian coordinates.


pilz_industrial_motion_testutils
Author(s):
autogenerated on Mon Feb 28 2022 23:13:36