coal 3.0.1
Coal, The Collision Detection Library. Previously known as HPP-FCL, fork of FCL -- The Flexible Collision Library
Loading...
Searching...
No Matches
OBB.h
Go to the documentation of this file.
1/*
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2011-2014, Willow Garage, Inc.
5 * Copyright (c) 2014-2015, Open Source Robotics Foundation
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
18 * * Neither the name of Open Source Robotics Foundation nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 * POSSIBILITY OF SUCH DAMAGE.
34 */
35
38#ifndef COAL_OBB_H
39#define COAL_OBB_H
40
41#include "coal/data_types.h"
42
43namespace coal {
44
45struct CollisionRequest;
46
49
52 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
53
60
63
66
67 OBB() : axes(Matrix3s::Zero()), To(Vec3s::Zero()), extent(Vec3s::Zero()) {}
68
70 bool operator==(const OBB& other) const {
71 return axes == other.axes && To == other.To && extent == other.extent;
72 }
73
75 bool operator!=(const OBB& other) const { return !(*this == other); }
76
78 bool contain(const Vec3s& p) const;
79
82 bool overlap(const OBB& other) const;
83
88 bool overlap(const OBB& other, const CollisionRequest& request,
89 Scalar& sqrDistLowerBound) const;
90
92 Scalar distance(const OBB& other, Vec3s* P = NULL, Vec3s* Q = NULL) const;
93
96 OBB& operator+=(const Vec3s& p);
97
99 OBB& operator+=(const OBB& other) {
100 *this = *this + other;
101 return *this;
102 }
103
106 OBB operator+(const OBB& other) const;
107
109 inline Scalar size() const { return extent.squaredNorm(); }
110
112 inline const Vec3s& center() const { return To; }
113
115 inline Scalar width() const { return 2 * extent[0]; }
116
118 inline Scalar height() const { return 2 * extent[1]; }
119
121 inline Scalar depth() const { return 2 * extent[2]; }
122
124 inline Scalar volume() const { return width() * height() * depth(); }
125};
126
// end of Bounding_Volume
128
130COAL_DLLAPI OBB translate(const OBB& bv, const Vec3s& t);
131
134COAL_DLLAPI bool overlap(const Matrix3s& R0, const Vec3s& T0, const OBB& b1,
135 const OBB& b2);
136
139COAL_DLLAPI bool overlap(const Matrix3s& R0, const Vec3s& T0, const OBB& b1,
140 const OBB& b2, const CollisionRequest& request,
141 Scalar& sqrDistLowerBound);
142
148COAL_DLLAPI bool obbDisjoint(const Matrix3s& B, const Vec3s& T, const Vec3s& a,
149 const Vec3s& b);
150} // namespace coal
151
152#endif
#define COAL_DLLAPI
Definition config.hh:88
Main namespace.
Definition broadphase_bruteforce.h:44
KDOP< N > translate(const KDOP< N > &bv, const Vec3s &t)
translate the KDOP BV
bool overlap(const Matrix3s &R0, const Vec3s &T0, const AABB &b1, const AABB &b2)
Check collision between two aabbs, b1 is in configuration (R0, T0) and b2 is in identity.
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
bool obbDisjoint(const Matrix3s &B, const Vec3s &T, const Vec3s &a, const Vec3s &b)
request to the collision algorithm
Definition collision_data.h:311
Oriented bounding box class.
Definition OBB.h:51
bool operator==(const OBB &other) const
Equality operator.
Definition OBB.h:70
Scalar distance(const OBB &other, Vec3s *P=NULL, Vec3s *Q=NULL) const
Distance between two OBBs, not implemented.
bool operator!=(const OBB &other) const
Difference operator.
Definition OBB.h:75
OBB operator+(const OBB &other) const
Return the merged OBB of current OBB and the other one (the result is not compact).
const Vec3s & center() const
Center of the OBB.
Definition OBB.h:112
EIGEN_MAKE_ALIGNED_OPERATOR_NEW Matrix3s axes
Orientation of OBB. axis[i] is the ith column of the orientation matrix for the box; it is also the i...
Definition OBB.h:59
Scalar height() const
Height of the OBB.
Definition OBB.h:118
Vec3s To
Center of OBB.
Definition OBB.h:62
Scalar depth() const
Depth of the OBB.
Definition OBB.h:121
bool overlap(const OBB &other, const CollisionRequest &request, Scalar &sqrDistLowerBound) const
Scalar size() const
Size of the OBB (used in BV_Splitter to order two OBBs)
Definition OBB.h:109
Scalar volume() const
Volume of the OBB.
Definition OBB.h:124
Scalar width() const
Width of the OBB.
Definition OBB.h:115
OBB & operator+=(const OBB &other)
Merge the OBB and another OBB (the result is not compact).
Definition OBB.h:99
OBB & operator+=(const Vec3s &p)
A simple way to merge the OBB and a point (the result is not compact).
bool overlap(const OBB &other) const
bool contain(const Vec3s &p) const
Check whether the OBB contains a point.
Vec3s extent
Half dimensions of OBB.
Definition OBB.h:65
OBB()
Definition OBB.h:67