37 #ifndef COAL_SHAPE_CONVEX_HXX
38 #define COAL_SHAPE_CONVEX_HXX
46 template <
typename PolygonT>
48 unsigned int num_points_,
49 std::shared_ptr<std::vector<PolygonT>> polygons_,
50 unsigned int num_polygons_)
51 :
ConvexBase(), polygons(polygons_), num_polygons(num_polygons_) {
57 template <
typename PolygonT>
59 :
ConvexBase(other), num_polygons(other.num_polygons) {
66 template <
typename PolygonT>
69 template <
typename PolygonT>
71 unsigned int num_points_,
72 std::shared_ptr<std::vector<PolygonT>> polygons_,
73 unsigned int num_polygons_) {
76 this->num_polygons = num_polygons_;
77 this->polygons = polygons_;
79 this->fillNeighbors();
80 this->buildSupportWarmStart();
83 template <
typename PolygonT>
88 template <
typename PolygonT>
90 typedef typename PolygonT::size_type size_type;
91 typedef typename PolygonT::index_type index_type;
96 C_canonical <<
Scalar(1 / 60),
106 if (!(points.get())) {
108 <<
"Error in `Convex::computeMomentofInertia`! Convex has no vertices."
112 const std::vector<Vec3s>& points_ = *points;
113 if (!(polygons.get())) {
115 <<
"Error in `Convex::computeMomentofInertia`! Convex has no polygons."
119 const std::vector<PolygonT>& polygons_ = *polygons;
120 for (
unsigned int i = 0; i < num_polygons; ++i) {
121 const PolygonT& polygon = polygons_[i];
124 Vec3s plane_center(0, 0, 0);
125 for (size_type j = 0; j < polygon.size(); ++j)
126 plane_center += points_[polygon[(index_type)j]];
127 plane_center /=
Scalar(polygon.size());
131 const Vec3s& v3 = plane_center;
132 for (size_type j = 0; j < polygon.size(); ++j) {
133 index_type e_first = polygon[
static_cast<index_type
>(j)];
134 index_type e_second =
135 polygon[
static_cast<index_type
>((j + 1) % polygon.size())];
136 const Vec3s& v1 = points_[e_first];
137 const Vec3s& v2 = points_[e_second];
139 A << v1.transpose(), v2.transpose(),
141 C += A.transpose() * C_canonical * A * (v1.cross(v2)).dot(v3);
145 return C.trace() * Matrix3s::Identity() - C;
148 template <
typename PolygonT>
150 typedef typename PolygonT::size_type size_type;
151 typedef typename PolygonT::index_type index_type;
155 if (!(points.get())) {
156 std::cerr <<
"Error in `Convex::computeCOM`! Convex has no vertices."
160 const std::vector<Vec3s>& points_ = *points;
161 if (!(polygons.get())) {
162 std::cerr <<
"Error in `Convex::computeCOM`! Convex has no polygons."
166 const std::vector<PolygonT>& polygons_ = *polygons;
167 for (
unsigned int i = 0; i < num_polygons; ++i) {
168 const PolygonT& polygon = polygons_[i];
170 Vec3s plane_center(0, 0, 0);
171 for (size_type j = 0; j < polygon.size(); ++j)
172 plane_center += points_[polygon[(index_type)j]];
173 plane_center /=
Scalar(polygon.size());
177 const Vec3s& v3 = plane_center;
178 for (size_type j = 0; j < polygon.size(); ++j) {
179 index_type e_first = polygon[
static_cast<index_type
>(j)];
180 index_type e_second =
181 polygon[
static_cast<index_type
>((j + 1) % polygon.size())];
182 const Vec3s& v1 = points_[e_first];
183 const Vec3s& v2 = points_[e_second];
184 Scalar d_six_vol = (v1.cross(v2)).dot(v3);
186 com += (points_[e_first] + points_[e_second] + plane_center) * d_six_vol;
190 return com / (vol * 4);
193 template <
typename PolygonT>
195 typedef typename PolygonT::size_type size_type;
196 typedef typename PolygonT::index_type index_type;
199 if (!(points.get())) {
200 std::cerr <<
"Error in `Convex::computeVolume`! Convex has no vertices."
204 const std::vector<Vec3s>& points_ = *points;
205 if (!(polygons.get())) {
206 std::cerr <<
"Error in `Convex::computeVolume`! Convex has no polygons."
210 const std::vector<PolygonT>& polygons_ = *polygons;
211 for (
unsigned int i = 0; i < num_polygons; ++i) {
212 const PolygonT& polygon = polygons_[i];
215 Vec3s plane_center(0, 0, 0);
216 for (size_type j = 0; j < polygon.size(); ++j)
217 plane_center += points_[polygon[(index_type)j]];
218 plane_center /=
Scalar(polygon.size());
222 const Vec3s& v3 = plane_center;
223 for (size_type j = 0; j < polygon.size(); ++j) {
224 index_type e_first = polygon[
static_cast<index_type
>(j)];
225 index_type e_second =
226 polygon[
static_cast<index_type
>((j + 1) % polygon.size())];
227 const Vec3s& v1 = points_[e_first];
228 const Vec3s& v2 = points_[e_second];
229 Scalar d_six_vol = (v1.cross(v2)).dot(v3);
237 template <
typename PolygonT>
239 neighbors.reset(
new std::vector<Neighbors>(num_points));
241 typedef typename PolygonT::size_type size_type;
242 typedef typename PolygonT::index_type index_type;
243 std::vector<std::set<index_type>> nneighbors(num_points);
244 unsigned int c_nneighbors = 0;
246 if (!(polygons.get())) {
247 std::cerr <<
"Error in `Convex::fillNeighbors`! Convex has no polygons."
250 const std::vector<PolygonT>& polygons_ = *polygons;
251 for (
unsigned int l = 0; l < num_polygons; ++l) {
252 const PolygonT& polygon = polygons_[l];
253 const size_type n = polygon.size();
255 for (size_type j = 0; j < polygon.size(); ++j) {
256 size_type i = (j == 0) ? n - 1 : j - 1;
257 size_type k = (j == n - 1) ? 0 : j + 1;
258 index_type pi = polygon[(index_type)i], pj = polygon[(index_type)j],
259 pk = polygon[(index_type)k];
261 if (nneighbors[pj].count(pi) == 0) {
263 nneighbors[pj].insert(pi);
265 if (nneighbors[pj].count(pk) == 0) {
267 nneighbors[pj].insert(pk);
272 nneighbors_.reset(
new std::vector<unsigned int>(c_nneighbors));
274 unsigned int* p_nneighbors = nneighbors_->data();
275 std::vector<Neighbors>& neighbors_ = *neighbors;
276 for (
unsigned int i = 0; i < num_points; ++i) {
278 if (nneighbors[i].size() >= (std::numeric_limits<unsigned char>::max)())
280 n.
count_ = (
unsigned char)nneighbors[i].size();
283 std::copy(nneighbors[i].begin(), nneighbors[i].end(), p_nneighbors);
285 assert(p_nneighbors == nneighbors_->data() + c_nneighbors);
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
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
#define COAL_THROW_PRETTY(message, exception)
Definition: fwd.hh:64
unsigned int * n_
Definition: geometric_shapes.h:683
void buildSupportWarmStart()
Build the support points warm starts.
void set(std::shared_ptr< std::vector< Vec3s >> points_, unsigned int num_points_)
Set the points of the convex shape.
void initialize(std::shared_ptr< std::vector< Vec3s >> points_, unsigned int num_points_)
Initialize the points of the convex shape This also initializes the ConvexBase::center.
unsigned char count_
Definition: geometric_shapes.h:682
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
Definition: geometric_shapes.h:681