38 #ifndef COAL_SHAPE_CONVEX_H
39 #define COAL_SHAPE_CONVEX_H
48 template <
typename PolygonT>
63 Convex(std::shared_ptr<std::vector<Vec3s>> points_,
unsigned int num_points_,
64 std::shared_ptr<std::vector<PolygonT>> polygons_,
65 unsigned int num_polygons_);
92 std::shared_ptr<std::vector<PolygonT>>
polygons,
Base for convex polytope.
Definition: geometric_shapes.h:639
Convex polytope.
Definition: convex.h:49
virtual Convex< PolygonT > * clone() const
Clone (deep copy)
Definition: convex.hxx:84
Matrix3s computeMomentofInertia() const
based on http://number-none.com/blow/inertia/bb_inertia.doc
Definition: convex.hxx:89
~Convex()
Definition: convex.hxx:67
void fillNeighbors()
Definition: convex.hxx:238
unsigned int num_polygons
Definition: convex.h:102
Vec3s computeCOM() const
compute center of mass
Definition: convex.hxx:149
std::shared_ptr< std::vector< PolygonT > > polygons
An array of PolygonT object. PolygonT should contains a list of vertices for each polygon,...
Definition: convex.h:101
void set(std::shared_ptr< std::vector< Vec3s >> points, unsigned int num_points, std::shared_ptr< std::vector< PolygonT >> polygons, unsigned int num_polygons)
Set the current Convex from a list of points and polygons.
Definition: convex.hxx:70
Convex()
Construct an uninitialized convex object.
Definition: convex.h:52
Scalar computeVolume() const
compute the volume
Definition: convex.hxx:194
unsigned int num_points
Definition: geometric_shapes.h:714
std::shared_ptr< std::vector< Vec3s > > points
An array of the points of the polygon.
Definition: geometric_shapes.h:713
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
double Scalar
Definition: data_types.h:68
Eigen::Matrix< Scalar, 3, 3 > Matrix3s
Definition: data_types.h:74