Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
coal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coal
coal
Commits
6eb66620
Commit
6eb66620
authored
8 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Use Vec3f instead of FCL_REAL
parent
175bc9ea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/BVH/BVH_utility.cpp
+11
-25
11 additions, 25 deletions
src/BVH/BVH_utility.cpp
with
11 additions
and
25 deletions
src/BVH/BVH_utility.cpp
+
11
−
25
View file @
6eb66620
...
@@ -480,16 +480,15 @@ static inline void getExtentAndCenter_pointcloud(Vec3f* ps, Vec3f* ps2, unsigned
...
@@ -480,16 +480,15 @@ static inline void getExtentAndCenter_pointcloud(Vec3f* ps, Vec3f* ps2, unsigned
FCL_REAL
real_max
=
std
::
numeric_limits
<
FCL_REAL
>::
max
();
FCL_REAL
real_max
=
std
::
numeric_limits
<
FCL_REAL
>::
max
();
FCL_REAL
min_coord
[
3
]
=
{
real_max
,
real_max
,
real_max
}
;
Vec3f
min_coord
(
real_max
,
real_max
,
real_max
)
;
FCL_REAL
max_coord
[
3
]
=
{
-
real_max
,
-
real_max
,
-
real_max
}
;
Vec3f
max_coord
(
-
real_max
,
-
real_max
,
-
real_max
)
;
for
(
int
i
=
0
;
i
<
n
;
++
i
)
for
(
int
i
=
0
;
i
<
n
;
++
i
)
{
{
int
index
=
indirect_index
?
indices
[
i
]
:
i
;
int
index
=
indirect_index
?
indices
[
i
]
:
i
;
const
Vec3f
&
p
=
ps
[
index
];
const
Vec3f
&
p
=
ps
[
index
];
Vec3f
v
(
p
[
0
],
p
[
1
],
p
[
2
]);
Vec3f
proj
(
axes
.
transpose
()
*
p
);
Vec3f
proj
(
axes
.
transpose
()
*
v
);
for
(
int
j
=
0
;
j
<
3
;
++
j
)
for
(
int
j
=
0
;
j
<
3
;
++
j
)
{
{
...
@@ -510,16 +509,9 @@ static inline void getExtentAndCenter_pointcloud(Vec3f* ps, Vec3f* ps2, unsigned
...
@@ -510,16 +509,9 @@ static inline void getExtentAndCenter_pointcloud(Vec3f* ps, Vec3f* ps2, unsigned
}
}
}
}
Vec3f
o
((
max_coord
[
0
]
+
min_coord
[
0
])
/
2
,
center
.
noalias
()
=
axes
*
(
max_coord
+
min_coord
)
/
2
;
(
max_coord
[
1
]
+
min_coord
[
1
])
/
2
,
(
max_coord
[
2
]
+
min_coord
[
2
])
/
2
);
center
.
noalias
()
=
axes
*
o
;
extent
<<
(
max_coord
[
0
]
-
min_coord
[
0
])
/
2
,
(
max_coord
[
1
]
-
min_coord
[
1
])
/
2
,
(
max_coord
[
2
]
-
min_coord
[
2
])
/
2
;
extent
.
noalias
()
=
(
max_coord
-
min_coord
)
/
2
;
}
}
...
@@ -533,8 +525,8 @@ static inline void getExtentAndCenter_mesh(Vec3f* ps, Vec3f* ps2, Triangle* ts,
...
@@ -533,8 +525,8 @@ static inline void getExtentAndCenter_mesh(Vec3f* ps, Vec3f* ps2, Triangle* ts,
FCL_REAL
real_max
=
std
::
numeric_limits
<
FCL_REAL
>::
max
();
FCL_REAL
real_max
=
std
::
numeric_limits
<
FCL_REAL
>::
max
();
FCL_REAL
min_coord
[
3
]
=
{
real_max
,
real_max
,
real_max
}
;
Vec3f
min_coord
(
real_max
,
real_max
,
real_max
)
;
FCL_REAL
max_coord
[
3
]
=
{
-
real_max
,
-
real_max
,
-
real_max
}
;
Vec3f
max_coord
(
-
real_max
,
-
real_max
,
-
real_max
)
;
for
(
int
i
=
0
;
i
<
n
;
++
i
)
for
(
int
i
=
0
;
i
<
n
;
++
i
)
{
{
...
@@ -545,8 +537,7 @@ static inline void getExtentAndCenter_mesh(Vec3f* ps, Vec3f* ps2, Triangle* ts,
...
@@ -545,8 +537,7 @@ static inline void getExtentAndCenter_mesh(Vec3f* ps, Vec3f* ps2, Triangle* ts,
{
{
int
point_id
=
t
[
j
];
int
point_id
=
t
[
j
];
const
Vec3f
&
p
=
ps
[
point_id
];
const
Vec3f
&
p
=
ps
[
point_id
];
Vec3f
v
(
p
[
0
],
p
[
1
],
p
[
2
]);
Vec3f
proj
(
axes
.
transpose
()
*
p
);
Vec3f
proj
(
axes
.
transpose
()
*
v
);
for
(
int
k
=
0
;
k
<
3
;
++
k
)
for
(
int
k
=
0
;
k
<
3
;
++
k
)
{
{
...
@@ -561,8 +552,7 @@ static inline void getExtentAndCenter_mesh(Vec3f* ps, Vec3f* ps2, Triangle* ts,
...
@@ -561,8 +552,7 @@ static inline void getExtentAndCenter_mesh(Vec3f* ps, Vec3f* ps2, Triangle* ts,
{
{
int
point_id
=
t
[
j
];
int
point_id
=
t
[
j
];
const
Vec3f
&
p
=
ps2
[
point_id
];
const
Vec3f
&
p
=
ps2
[
point_id
];
Vec3f
v
(
p
[
0
],
p
[
1
],
p
[
2
]);
Vec3f
proj
(
axes
.
transpose
()
*
p
);
Vec3f
proj
(
axes
.
transpose
()
*
v
);
for
(
int
k
=
0
;
k
<
3
;
++
k
)
for
(
int
k
=
0
;
k
<
3
;
++
k
)
{
{
...
@@ -573,15 +563,11 @@ static inline void getExtentAndCenter_mesh(Vec3f* ps, Vec3f* ps2, Triangle* ts,
...
@@ -573,15 +563,11 @@ static inline void getExtentAndCenter_mesh(Vec3f* ps, Vec3f* ps2, Triangle* ts,
}
}
}
}
Vec3f
o
((
max_coord
[
0
]
+
min_coord
[
0
])
/
2
,
Vec3f
o
((
max_coord
+
min_coord
)
/
2
);
(
max_coord
[
1
]
+
min_coord
[
1
])
/
2
,
(
max_coord
[
2
]
+
min_coord
[
2
])
/
2
);
center
.
noalias
()
=
axes
*
o
;
center
.
noalias
()
=
axes
*
o
;
extent
<<
(
max_coord
[
0
]
-
min_coord
[
0
])
/
2
,
extent
.
noalias
()
=
(
max_coord
-
min_coord
)
/
2
;
(
max_coord
[
1
]
-
min_coord
[
1
])
/
2
,
(
max_coord
[
2
]
-
min_coord
[
2
])
/
2
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment