Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
KennethVanhoey
CGoGN
Commits
98f4c489
Commit
98f4c489
authored
Jun 15, 2011
by
Kenneth Vanhoey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
corrections sur gestion des boundingbox
parent
c6d8c4e1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
include/Algo/Decimation/edgeSelector.h
include/Algo/Decimation/edgeSelector.h
+1
-0
include/Algo/Geometry/boundingbox.h
include/Algo/Geometry/boundingbox.h
+1
-1
include/Geometry/bounding_box.hpp
include/Geometry/bounding_box.hpp
+1
-0
No files found.
include/Algo/Decimation/edgeSelector.h
View file @
98f4c489
...
...
@@ -26,6 +26,7 @@
#define __EDGESELECTOR_H__
#include "Algo/Decimation/selector.h"
#include "Algo/Geometry/boundingbox.h"
#include "Container/fakeAttribute.h"
#include "Utils/qem.h"
...
...
include/Algo/Geometry/boundingbox.h
View file @
98f4c489
...
...
@@ -41,7 +41,7 @@ namespace Geometry
template
<
typename
PFP
>
Geom
::
BoundingBox
<
typename
PFP
::
VEC3
>
computeBoundingBox
(
typename
PFP
::
MAP
&
map
,
const
typename
PFP
::
TVEC3
&
position
,
const
FunctorSelect
&
select
=
SelectorTrue
())
{
Geom
::
BoundingBox
<
typename
PFP
::
VEC3
>
bb
(
position
[
map
.
begin
()])
;
Geom
::
BoundingBox
<
typename
PFP
::
VEC3
>
bb
;
CellMarker
vmarker
(
map
,
VERTEX
);
for
(
Dart
d
=
map
.
begin
();
d
!=
map
.
end
();
map
.
next
(
d
))
...
...
include/Geometry/bounding_box.hpp
View file @
98f4c489
...
...
@@ -129,6 +129,7 @@ void BoundingBox<VEC>::addPoint(const VEC& p)
{
m_pMin
=
p
;
m_pMax
=
p
;
m_initialized
=
true
;
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment