Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
9e4f98c6
Commit
9e4f98c6
authored
16 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
e531a4de
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Mesh/Generator.cpp
+5
-6
5 additions, 6 deletions
Mesh/Generator.cpp
doc/VERSIONS.txt
+4
-3
4 additions, 3 deletions
doc/VERSIONS.txt
with
9 additions
and
9 deletions
Mesh/Generator.cpp
+
5
−
6
View file @
9e4f98c6
...
@@ -408,16 +408,15 @@ static void Mesh2D(GModel *m)
...
@@ -408,16 +408,15 @@ static void Mesh2D(GModel *m)
}
}
}
}
// look if there a
re model faces for which
// look if there are model faces for which
the "full quad" algo is
//
full quad algo is
set ON
// set ON
bool
fullQuad
=
false
;
bool
fullQuad
=
false
;
for
(
GModel
::
fiter
it
=
m
->
firstFace
()
;
it
!=
m
->
lastFace
();
++
it
)
for
(
GModel
::
fiter
it
=
m
->
firstFace
()
;
it
!=
m
->
lastFace
();
++
it
)
if
(
CTX
.
mesh
.
algo_recombine
==
2
&&
(
*
it
)
->
quadrangles
.
size
())
if
(
CTX
.
mesh
.
algo_recombine
==
2
&&
(
*
it
)
->
quadrangles
.
size
())
fullQuad
=
true
;
fullQuad
=
true
;
if
(
fullQuad
)
RefineMesh
(
m
,
false
,
true
);
if
(
fullQuad
)
RefineMesh
(
m
,
false
,
true
);
// gmshCollapseSmallEdges (*m);
// gmshCollapseSmallEdges (*m);
double
t2
=
Cpu
();
double
t2
=
Cpu
();
CTX
.
mesh_timer
[
1
]
=
t2
-
t1
;
CTX
.
mesh_timer
[
1
]
=
t2
-
t1
;
...
...
This diff is collapsed.
Click to expand it.
doc/VERSIONS.txt
+
4
−
3
View file @
9e4f98c6
$Id: VERSIONS.txt,v 1.
19
2008-11-2
5
1
7:18:33
geuzaine Exp $
$Id: VERSIONS.txt,v 1.
20
2008-11-2
8
1
8:49:10
geuzaine Exp $
2.2.7 (?): fixed clipping planes when more than 32 views are present
2.2.7 (?): restored full-quad recombine algorithm; fixed clipping
(replaced General.Clip with {Geometry,Mesh,View}.Clip).
planes when more than 32 views are present (replaced General.Clip with
{Geometry,Mesh,View}.Clip).
2.2.6 (Nov 21, 2008): better transfinite smoothing and automatic
2.2.6 (Nov 21, 2008): better transfinite smoothing and automatic
corner selection; fixed high order meshing crashes on Windows and
corner selection; fixed high order meshing crashes on Windows and
...
...
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