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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hurstel
CGoGN
Commits
548b6638
Commit
548b6638
authored
Jan 15, 2013
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add forgotten ,false parameter in createHexa/Tetra calls
parent
f1c7acec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
include/Algo/Import/importMesh.hpp
include/Algo/Import/importMesh.hpp
+2
-2
include/Algo/Modelisation/primitives3d.hpp
include/Algo/Modelisation/primitives3d.hpp
+2
-2
No files found.
include/Algo/Import/importMesh.hpp
View file @
548b6638
...
...
@@ -302,7 +302,7 @@ bool importMeshSToV(typename PFP::MAP& map, Surface::Import::MeshTablesSurface<P
nbe
=
edgesBuffer
.
size
();
if
(
nbe
>
2
)
{
Dart
d
=
Surface
::
Modelisation
::
createPrism
<
PFP
>
(
map
,
nbe
);
Dart
d
=
Surface
::
Modelisation
::
createPrism
<
PFP
>
(
map
,
nbe
,
false
);
//Embed the base faces
for
(
unsigned
int
j
=
0
;
j
<
nbe
;
++
j
)
...
...
@@ -414,7 +414,7 @@ bool importMeshSurfToVol(typename PFP::MAP& map, Surface::Import::MeshTablesSurf
for
(
unsigned
int
k
=
0
;
k
<
nbStage
;
++
k
)
{
Dart
d
=
Surface
::
Modelisation
::
createPrism
<
PFP
>
(
map
,
nbe
);
Dart
d
=
Surface
::
Modelisation
::
createPrism
<
PFP
>
(
map
,
nbe
,
false
);
//Embed the base faces
for
(
unsigned
int
j
=
0
;
j
<
nbe
;
++
j
)
...
...
include/Algo/Modelisation/primitives3d.hpp
View file @
548b6638
...
...
@@ -41,14 +41,14 @@ Dart Primitive3D<PFP>::HexaGrid1Topo(unsigned int nx)
{
// first cube
Dart
d0
=
Surface
::
Modelisation
::
createHexahedron
<
PFP
>
(
m_map
);
Dart
d0
=
Surface
::
Modelisation
::
createHexahedron
<
PFP
>
(
m_map
,
false
);
m_tableVertDarts
.
push_back
(
d0
);
Dart
d1
=
m_map
.
template
phi
<
2112
>(
d0
);
for
(
unsigned
int
i
=
1
;
i
<
nx
;
++
i
)
{
Dart
d2
=
Surface
::
Modelisation
::
createHexahedron
<
PFP
>
(
m_map
);
Dart
d2
=
Surface
::
Modelisation
::
createHexahedron
<
PFP
>
(
m_map
,
false
);
m_tableVertDarts
.
push_back
(
d2
);
m_map
.
sewVolumes
(
d1
,
d2
,
false
);
...
...
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