Go to the documentation of this file.
26 #ifndef TESSERACT_GEOMETRY_CYLINDER_H
27 #define TESSERACT_GEOMETRY_CYLINDER_H
31 #include <boost/serialization/export.hpp>
47 using Ptr = std::shared_ptr<Cylinder>;
48 using ConstPtr = std::shared_ptr<const Cylinder>;
50 Cylinder(
double radius,
double length);
58 bool operator==(const
Cylinder& rhs) const;
59 bool operator!=(const
Cylinder& rhs) const;
67 template <
class Archive>
68 void serialize(Archive& ar,
const unsigned int version);
std::shared_ptr< Geometry > Ptr
#define TESSERACT_COMMON_IGNORE_WARNINGS_PUSH
void serialize(Archive &ar, const unsigned int version)
Geometry::Ptr clone() const override final
Create a copy of this shape.
~Cylinder() override=default
#define TESSERACT_COMMON_IGNORE_WARNINGS_POP
friend class boost::serialization::access
std::shared_ptr< const Geometry > ConstPtr