57 template <
typename BV1,
typename BV2>
59 static void convert(
const BV1& bv1,
const Transform3s& tf1, BV2& bv2);
60 static void convert(
const BV1& bv1, BV2& bv2);
65 struct Converter<AABB, AABB> {
66 static void convert(
const AABB& bv1,
const Transform3s& tf1, AABB& bv2) {
67 const Vec3s& center = bv1.center();
69 const Vec3s center2 = tf1.transform(center);
70 bv2.min_ = center2 - Vec3s::Constant(r);
71 bv2.max_ = center2 + Vec3s::Constant(r);
74 static void convert(
const AABB& bv1, AABB& bv2) { bv2 = bv1; }
78 struct Converter<AABB, OBB> {
79 static void convert(
const AABB& bv1,
const Transform3s& tf1, OBB& bv2) {
80 bv2.To = tf1.transform(bv1.center());
81 bv2.extent.noalias() = (bv1.max_ - bv1.min_) * 0.5;
82 bv2.axes = tf1.getRotation();
85 static void convert(
const AABB& bv1, OBB& bv2) {
86 bv2.To = bv1.center();
87 bv2.extent.noalias() = (bv1.max_ - bv1.min_) * 0.5;
88 bv2.axes.setIdentity();
93 struct Converter<OBB, OBB> {
94 static void convert(
const OBB& bv1,
const Transform3s& tf1, OBB& bv2) {
95 bv2.extent = bv1.extent;
96 bv2.To = tf1.transform(bv1.To);
97 bv2.axes.noalias() = tf1.getRotation() * bv1.axes;
100 static void convert(
const OBB& bv1, OBB& bv2) { bv2 = bv1; }
104 struct Converter<OBBRSS, OBB> {
105 static void convert(
const OBBRSS& bv1,
const Transform3s& tf1, OBB& bv2) {
106 Converter<OBB, OBB>::convert(bv1.obb, tf1, bv2);
109 static void convert(
const OBBRSS& bv1, OBB& bv2) {
110 Converter<OBB, OBB>::convert(bv1.obb, bv2);
115 struct Converter<RSS, OBB> {
116 static void convert(
const RSS& bv1,
const Transform3s& tf1, OBB& bv2) {
118 bv2.extent =
Vec3s(bv1.length[0] * half + bv1.radius,
119 bv1.length[1] * half + bv1.radius, bv1.radius);
120 bv2.To = tf1.transform(bv1.Tr);
121 bv2.axes.noalias() = tf1.getRotation() * bv1.axes;
124 static void convert(
const RSS& bv1, OBB& bv2) {
126 bv2.extent =
Vec3s(bv1.length[0] * half + bv1.radius,
127 bv1.length[1] * half + bv1.radius, bv1.radius);
133 template <
typename BV1>
134 struct Converter<BV1, AABB> {
135 static void convert(
const BV1& bv1,
const Transform3s& tf1, AABB& bv2) {
136 const Vec3s& center = bv1.center();
138 Scalar r =
Vec3s(bv1.width(), bv1.height(), bv1.depth()).norm() * half;
139 const Vec3s center2 = tf1.transform(center);
140 bv2.min_ = center2 - Vec3s::Constant(r);
141 bv2.max_ = center2 + Vec3s::Constant(r);
144 static void convert(
const BV1& bv1, AABB& bv2) {
145 const Vec3s& center = bv1.center();
147 Scalar r =
Vec3s(bv1.width(), bv1.height(), bv1.depth()).norm() * half;
148 bv2.min_ = center - Vec3s::Constant(r);
149 bv2.max_ = center + Vec3s::Constant(r);
153 template <
typename BV1>
154 struct Converter<BV1, OBB> {
155 static void convert(
const BV1& bv1,
const Transform3s& tf1, OBB& bv2) {
157 Converter<BV1, AABB>::convert(bv1, bv);
158 Converter<AABB, OBB>::convert(bv, tf1, bv2);
161 static void convert(
const BV1& bv1, OBB& bv2) {
163 Converter<BV1, AABB>::convert(bv1, bv);
164 Converter<AABB, OBB>::convert(bv, bv2);
169 struct Converter<OBB, RSS> {
170 static void convert(
const OBB& bv1,
const Transform3s& tf1, RSS& bv2) {
171 bv2.Tr = tf1.transform(bv1.To);
172 bv2.axes.noalias() = tf1.getRotation() * bv1.axes;
174 bv2.radius = bv1.extent[2];
175 bv2.length[0] = 2 * (bv1.extent[0] - bv2.radius);
176 bv2.length[1] = 2 * (bv1.extent[1] - bv2.radius);
179 static void convert(
const OBB& bv1, RSS& bv2) {
183 bv2.radius = bv1.extent[2];
184 bv2.length[0] = 2 * (bv1.extent[0] - bv2.radius);
185 bv2.length[1] = 2 * (bv1.extent[1] - bv2.radius);
190 struct Converter<RSS, RSS> {
191 static void convert(
const RSS& bv1,
const Transform3s& tf1, RSS& bv2) {
192 bv2.Tr = tf1.transform(bv1.Tr);
193 bv2.axes.noalias() = tf1.getRotation() * bv1.axes;
195 bv2.radius = bv1.radius;
196 bv2.length[0] = bv1.length[0];
197 bv2.length[1] = bv1.length[1];
200 static void convert(
const RSS& bv1, RSS& bv2) { bv2 = bv1; }
204 struct Converter<OBBRSS, RSS> {
205 static void convert(
const OBBRSS& bv1,
const Transform3s& tf1, RSS& bv2) {
206 Converter<RSS, RSS>::convert(bv1.rss, tf1, bv2);
209 static void convert(
const OBBRSS& bv1, RSS& bv2) {
210 Converter<RSS, RSS>::convert(bv1.rss, bv2);
215 struct Converter<AABB, RSS> {
216 static void convert(
const AABB& bv1,
const Transform3s& tf1, RSS& bv2) {
217 bv2.Tr = tf1.transform(bv1.center());
220 Scalar d[3] = {bv1.width(), bv1.height(), bv1.depth()};
221 Eigen::DenseIndex
id[3] = {0, 1, 2};
223 for (Eigen::DenseIndex i = 1; i < 3; ++i) {
224 for (Eigen::DenseIndex j = i; j > 0; --j) {
225 if (d[j] > d[j - 1]) {
232 Eigen::DenseIndex tmp =
id[j];
240 const Vec3s extent = (bv1.max_ - bv1.min_) * 0.5;
241 bv2.radius = extent[
id[2]];
242 bv2.length[0] = (extent[
id[0]] - bv2.radius) * 2;
243 bv2.length[1] = (extent[
id[1]] - bv2.radius) * 2;
245 const Matrix3s& R = tf1.getRotation();
246 const bool left_hand = (
id[0] == (
id[1] + 1) % 3);
248 bv2.axes.col(0) = -R.col(
id[0]);
250 bv2.axes.col(0) = R.col(
id[0]);
251 bv2.axes.col(1) = R.col(
id[1]);
252 bv2.axes.col(2) = R.col(
id[2]);
255 static void convert(
const AABB& bv1, RSS& bv2) {
256 convert(bv1, Transform3s(), bv2);
261 struct Converter<AABB, OBBRSS> {
262 static void convert(
const AABB& bv1,
const Transform3s& tf1, OBBRSS& bv2) {
263 Converter<AABB, OBB>::convert(bv1, tf1, bv2.obb);
264 Converter<AABB, RSS>::convert(bv1, tf1, bv2.rss);
267 static void convert(
const AABB& bv1, OBBRSS& bv2) {
268 Converter<AABB, OBB>::convert(bv1, bv2.obb);
269 Converter<AABB, RSS>::convert(bv1, bv2.rss);
279 template <
typename BV1,
typename BV2>
280 static inline void convertBV(
const BV1& bv1,
const Transform3s& tf1, BV2& bv2) {
281 details::Converter<BV1, BV2>::convert(bv1, tf1, bv2);
286 template <
typename BV1,
typename BV2>
287 static inline void convertBV(
const BV1& bv1, BV2& bv2) {
288 details::Converter<BV1, BV2>::convert(bv1, bv2);
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