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
c4c81510
Commit
c4c81510
authored
12 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
fix compile without ann
parent
e2be0a3d
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
Mesh/meshGFaceElliptic.cpp
+34
-35
34 additions, 35 deletions
Mesh/meshGFaceElliptic.cpp
with
34 additions
and
35 deletions
Mesh/meshGFaceElliptic.cpp
+
34
−
35
View file @
c4c81510
...
@@ -60,10 +60,10 @@ static void printQuads(GFace *gf, fullMatrix<SPoint2> uv, std::vector<MQuadrangl
...
@@ -60,10 +60,10 @@ static void printQuads(GFace *gf, fullMatrix<SPoint2> uv, std::vector<MQuadrangl
}
}
static
void
printParamGrid
(
GFace
*
gf
,
std
::
vector
<
MVertex
*>
vert1
,
std
::
vector
<
MVertex
*>
vert2
,
static
void
printParamGrid
(
GFace
*
gf
,
std
::
vector
<
MVertex
*>
vert1
,
std
::
vector
<
MVertex
*>
vert2
,
std
::
vector
<
MVertex
*>
e01
,
std
::
vector
<
MVertex
*>
e10
,
std
::
vector
<
MVertex
*>
e01
,
std
::
vector
<
MVertex
*>
e10
,
std
::
vector
<
MVertex
*>
e23
,
std
::
vector
<
MVertex
*>
e32
,
std
::
vector
<
MVertex
*>
e23
,
std
::
vector
<
MVertex
*>
e32
,
std
::
vector
<
MVertex
*>
e02
,
std
::
vector
<
MVertex
*>
e13
,
std
::
vector
<
MVertex
*>
e02
,
std
::
vector
<
MVertex
*>
e13
,
std
::
vector
<
MQuadrangle
*>
quads
)
std
::
vector
<
MQuadrangle
*>
quads
)
{
{
...
@@ -84,13 +84,13 @@ static void printParamGrid(GFace *gf, std::vector<MVertex*> vert1, std::vector<M
...
@@ -84,13 +84,13 @@ static void printParamGrid(GFace *gf, std::vector<MVertex*> vert1, std::vector<M
sprintf
(
name
,
"paramGrid_%d.pos"
,
gf
->
tag
());
sprintf
(
name
,
"paramGrid_%d.pos"
,
gf
->
tag
());
FILE
*
f
=
fopen
(
name
,
"w"
);
FILE
*
f
=
fopen
(
name
,
"w"
);
fprintf
(
f
,
"View
\"
%s
\"
{
\n
"
,
name
);
fprintf
(
f
,
"View
\"
%s
\"
{
\n
"
,
name
);
for
(
unsigned
int
i
=
0
;
i
<
p1
.
size
();
i
++
)
for
(
unsigned
int
i
=
0
;
i
<
p1
.
size
();
i
++
)
fprintf
(
f
,
"SP(%g,%g,%g) {%d};
\n
"
,
p1
[
i
].
x
(),
p1
[
i
].
y
(),
0.0
,
i
);
fprintf
(
f
,
"SP(%g,%g,%g) {%d};
\n
"
,
p1
[
i
].
x
(),
p1
[
i
].
y
(),
0.0
,
i
);
for
(
unsigned
int
j
=
0
;
j
<
p2
.
size
();
j
++
)
for
(
unsigned
int
j
=
0
;
j
<
p2
.
size
();
j
++
)
fprintf
(
f
,
"SP(%g,%g,%g) {%d};
\n
"
,
p2
[
j
].
x
(),
p2
[
j
].
y
(),
0.0
,
100
+
j
);
fprintf
(
f
,
"SP(%g,%g,%g) {%d};
\n
"
,
p2
[
j
].
x
(),
p2
[
j
].
y
(),
0.0
,
100
+
j
);
fprintf
(
f
,
"};
\n
"
);
fprintf
(
f
,
"};
\n
"
);
fclose
(
f
);
fclose
(
f
);
...
@@ -98,7 +98,7 @@ static void printParamGrid(GFace *gf, std::vector<MVertex*> vert1, std::vector<M
...
@@ -98,7 +98,7 @@ static void printParamGrid(GFace *gf, std::vector<MVertex*> vert1, std::vector<M
sprintf
(
name2
,
"paramEdges_%d.pos"
,
gf
->
tag
());
sprintf
(
name2
,
"paramEdges_%d.pos"
,
gf
->
tag
());
FILE
*
f2
=
fopen
(
name2
,
"w"
);
FILE
*
f2
=
fopen
(
name2
,
"w"
);
fprintf
(
f2
,
"View
\"
%s
\"
{
\n
"
,
name2
);
fprintf
(
f2
,
"View
\"
%s
\"
{
\n
"
,
name2
);
for
(
unsigned
int
i
=
0
;
i
<
e01
.
size
();
i
++
){
for
(
unsigned
int
i
=
0
;
i
<
e01
.
size
();
i
++
){
SPoint2
pi
;
reparamMeshVertexOnFace
(
e01
[
i
],
gf
,
pi
);
SPoint2
pi
;
reparamMeshVertexOnFace
(
e01
[
i
],
gf
,
pi
);
fprintf
(
f2
,
"SP(%g,%g,%g) {%d};
\n
"
,
pi
.
x
(),
pi
.
y
(),
0.0
,
1
);
fprintf
(
f2
,
"SP(%g,%g,%g) {%d};
\n
"
,
pi
.
x
(),
pi
.
y
(),
0.0
,
1
);
...
@@ -140,16 +140,16 @@ static void printParamGrid(GFace *gf, std::vector<MVertex*> vert1, std::vector<M
...
@@ -140,16 +140,16 @@ static void printParamGrid(GFace *gf, std::vector<MVertex*> vert1, std::vector<M
}
}
fprintf
(
f3
,
"};
\n
"
);
fprintf
(
f3
,
"};
\n
"
);
fclose
(
f3
);
fclose
(
f3
);
return
;
return
;
}
}
static
void
createQuadsFromUV
(
GFace
*
gf
,
fullMatrix
<
SPoint2
>
&
uv
,
std
::
vector
<
MQuadrangle
*>
&
newq
,
std
::
vector
<
MVertex
*>
&
newv
){
static
void
createQuadsFromUV
(
GFace
*
gf
,
fullMatrix
<
SPoint2
>
&
uv
,
std
::
vector
<
MQuadrangle
*>
&
newq
,
std
::
vector
<
MVertex
*>
&
newv
){
newq
.
clear
();
newq
.
clear
();
newv
.
clear
();
newv
.
clear
();
int
MM
=
uv
.
size1
();
int
MM
=
uv
.
size1
();
int
NN
=
uv
.
size2
();
int
NN
=
uv
.
size2
();
std
::
vector
<
std
::
vector
<
MVertex
*>
>
tab
(
MM
);
std
::
vector
<
std
::
vector
<
MVertex
*>
>
tab
(
MM
);
...
@@ -161,7 +161,7 @@ static void createQuadsFromUV(GFace *gf, fullMatrix<SPoint2> &uv, std::vector<M
...
@@ -161,7 +161,7 @@ static void createQuadsFromUV(GFace *gf, fullMatrix<SPoint2> &uv, std::vector<M
if
(
!
gp
.
succeeded
())
printf
(
"** AH new vertex not created p=%g %g
\n
"
,
uv
(
i
,
j
).
x
(),
uv
(
i
,
j
).
y
());
if
(
!
gp
.
succeeded
())
printf
(
"** AH new vertex not created p=%g %g
\n
"
,
uv
(
i
,
j
).
x
(),
uv
(
i
,
j
).
y
());
MVertex
*
vnew
=
new
MFaceVertex
(
gp
.
x
(),
gp
.
y
(),
gp
.
z
(),
gf
,
gp
.
u
(),
gp
.
v
());
MVertex
*
vnew
=
new
MFaceVertex
(
gp
.
x
(),
gp
.
y
(),
gp
.
z
(),
gf
,
gp
.
u
(),
gp
.
v
());
tab
[
i
][
j
]
=
vnew
;
tab
[
i
][
j
]
=
vnew
;
if
(
i
!=
0
&&
j
!=
0
&&
i
!=
uv
.
size1
()
-
1
&&
j
!=
uv
.
size2
()
-
1
)
if
(
i
!=
0
&&
j
!=
0
&&
i
!=
uv
.
size1
()
-
1
&&
j
!=
uv
.
size2
()
-
1
)
newv
.
push_back
(
vnew
);
newv
.
push_back
(
vnew
);
}
}
}
}
...
@@ -177,19 +177,19 @@ static void createQuadsFromUV(GFace *gf, fullMatrix<SPoint2> &uv, std::vector<M
...
@@ -177,19 +177,19 @@ static void createQuadsFromUV(GFace *gf, fullMatrix<SPoint2> &uv, std::vector<M
return
;
return
;
}
}
static
std
::
vector
<
MVertex
*>
saturateEdgeRegular
(
GFace
*
gf
,
SPoint2
p1
,
SPoint2
p2
,
static
std
::
vector
<
MVertex
*>
saturateEdgeRegular
(
GFace
*
gf
,
SPoint2
p1
,
SPoint2
p2
,
double
H
,
double
L
,
double
H
,
double
L
,
int
M
,
std
::
vector
<
SPoint2
>
&
pe
){
int
M
,
std
::
vector
<
SPoint2
>
&
pe
){
std
::
vector
<
MVertex
*>
pts
;
std
::
vector
<
MVertex
*>
pts
;
for
(
int
i
=
1
;
i
<
M
;
i
++
){
for
(
int
i
=
1
;
i
<
M
;
i
++
){
//double s = ((double)i/((double)(M)));
//double s = ((double)i/((double)(M)));
double
y
=
((
double
)(
i
))
*
H
/
M
;
double
y
=
((
double
)(
i
))
*
H
/
M
;
double
Yy
=
cosh
(
M_PI
*
y
/
L
)
-
tanh
(
M_PI
*
H
/
L
)
*
sinh
(
M_PI
*
y
/
L
);
double
Yy
=
cosh
(
M_PI
*
y
/
L
)
-
tanh
(
M_PI
*
H
/
L
)
*
sinh
(
M_PI
*
y
/
L
);
double
YyH
=
cosh
(
M_PI
*
H
/
L
)
-
tanh
(
M_PI
*
H
/
L
)
*
sinh
(
M_PI
*
H
/
L
);
double
YyH
=
cosh
(
M_PI
*
H
/
L
)
-
tanh
(
M_PI
*
H
/
L
)
*
sinh
(
M_PI
*
H
/
L
);
double
s
=
(
1
-
Yy
)
/
(
1.
-
YyH
);
double
s
=
(
1
-
Yy
)
/
(
1.
-
YyH
);
SPoint2
p
=
p1
+
(
p2
-
p1
)
*
s
;
SPoint2
p
=
p1
+
(
p2
-
p1
)
*
s
;
pe
.
push_back
(
p
);
pe
.
push_back
(
p
);
...
@@ -205,8 +205,8 @@ static std::vector<MVertex*> saturateEdgeRegular (GFace *gf, SPoint2 p1, SPoint2
...
@@ -205,8 +205,8 @@ static std::vector<MVertex*> saturateEdgeRegular (GFace *gf, SPoint2 p1, SPoint2
//elliptic surface grid generator
//elliptic surface grid generator
//see eq. 9.26 page 9-24 in handbook of grid generation
//see eq. 9.26 page 9-24 in handbook of grid generation
static
void
ellipticSmoother
(
fullMatrix
<
SPoint2
>
uv
,
GFace
*
gf
,
static
void
ellipticSmoother
(
fullMatrix
<
SPoint2
>
uv
,
GFace
*
gf
,
std
::
vector
<
MQuadrangle
*>
&
newq
,
std
::
vector
<
MQuadrangle
*>
&
newq
,
std
::
vector
<
MVertex
*>
&
newv
){
std
::
vector
<
MVertex
*>
&
newv
){
int
nbSmooth
=
100
;
int
nbSmooth
=
100
;
...
@@ -233,7 +233,7 @@ static void ellipticSmoother(fullMatrix<SPoint2> uv, GFace* gf,
...
@@ -233,7 +233,7 @@ static void ellipticSmoother(fullMatrix<SPoint2> uv, GFace* gf,
norm
+=
sqrt
((
uv
(
i
,
j
).
x
()
-
uk
)
*
(
uv
(
i
,
j
).
x
()
-
uk
)
+
(
uv
(
i
,
j
).
y
()
-
vk
)
*
(
uv
(
i
,
j
).
y
()
-
vk
));
norm
+=
sqrt
((
uv
(
i
,
j
).
x
()
-
uk
)
*
(
uv
(
i
,
j
).
x
()
-
uk
)
+
(
uv
(
i
,
j
).
y
()
-
vk
)
*
(
uv
(
i
,
j
).
y
()
-
vk
));
uv
(
i
,
j
)
=
SPoint2
(
uk
,
vk
);
uv
(
i
,
j
)
=
SPoint2
(
uk
,
vk
);
}
}
}
}
//printf("Elliptic smoother iter (%d) = %g \n", k, norm);
//printf("Elliptic smoother iter (%d) = %g \n", k, norm);
printQuads
(
gf
,
uv
,
newq
,
k
+
1
);
printQuads
(
gf
,
uv
,
newq
,
k
+
1
);
}
}
...
@@ -265,8 +265,8 @@ static void createRegularGrid (GFace *gf,
...
@@ -265,8 +265,8 @@ static void createRegularGrid (GFace *gf,
std
::
vector
<
MVertex
*>
&
e34
,
std
::
vector
<
SPoint2
>
&
pe34
,
int
sign34
,
std
::
vector
<
MVertex
*>
&
e34
,
std
::
vector
<
SPoint2
>
&
pe34
,
int
sign34
,
MVertex
*
v4
,
SPoint2
&
c4
,
MVertex
*
v4
,
SPoint2
&
c4
,
std
::
vector
<
MVertex
*>
&
e41
,
std
::
vector
<
SPoint2
>
&
pe41
,
int
sign41
,
std
::
vector
<
MVertex
*>
&
e41
,
std
::
vector
<
SPoint2
>
&
pe41
,
int
sign41
,
std
::
vector
<
MQuadrangle
*>
&
q
,
std
::
vector
<
MQuadrangle
*>
&
q
,
std
::
vector
<
MVertex
*>
&
newv
,
std
::
vector
<
MVertex
*>
&
newv
,
fullMatrix
<
SPoint2
>
&
uv
)
fullMatrix
<
SPoint2
>
&
uv
)
{
{
int
N
=
e12
.
size
();
int
N
=
e12
.
size
();
...
@@ -321,15 +321,15 @@ static void createRegularGrid (GFace *gf,
...
@@ -321,15 +321,15 @@ static void createRegularGrid (GFace *gf,
double
Vp
=
TRAN_QUAD
(
p12
.
y
(),
p23
.
y
(),
p34
.
y
(),
p41
.
y
(),
double
Vp
=
TRAN_QUAD
(
p12
.
y
(),
p23
.
y
(),
p34
.
y
(),
p41
.
y
(),
c1
.
y
(),
c2
.
y
(),
c3
.
y
(),
c4
.
y
(),
u
,
v
);
c1
.
y
(),
c2
.
y
(),
c3
.
y
(),
c4
.
y
(),
u
,
v
);
fprintf
(
f3
,
"SP(%g,%g,%g) {%d};
\n
"
,
Up
,
Vp
,
0.0
,
1
);
fprintf
(
f3
,
"SP(%g,%g,%g) {%d};
\n
"
,
Up
,
Vp
,
0.0
,
1
);
if
((
p12
.
x
()
&&
p12
.
y
()
==
-
1.0
)
||
(
p23
.
x
()
&&
p23
.
y
()
==
-
1.0
)
||
if
((
p12
.
x
()
&&
p12
.
y
()
==
-
1.0
)
||
(
p23
.
x
()
&&
p23
.
y
()
==
-
1.0
)
||
(
p34
.
x
()
&&
p34
.
y
()
==
-
1.0
)
||
(
p41
.
x
()
&&
p41
.
y
()
==
-
1.0
))
{
(
p34
.
x
()
&&
p34
.
y
()
==
-
1.0
)
||
(
p41
.
x
()
&&
p41
.
y
()
==
-
1.0
))
{
Msg
::
Error
(
"Wrong param -1"
);
Msg
::
Error
(
"Wrong param -1"
);
return
;
return
;
}
}
SPoint2
pij
(
Up
,
Vp
);
SPoint2
pij
(
Up
,
Vp
);
GPoint
gp
=
gf
->
point
(
pij
);
GPoint
gp
=
gf
->
point
(
pij
);
if
(
!
gp
.
succeeded
())
printf
(
"** AH new vertex not created p=%g %g
\n
"
,
Up
,
Vp
);
if
(
!
gp
.
succeeded
())
printf
(
"** AH new vertex not created p=%g %g
\n
"
,
Up
,
Vp
);
MVertex
*
vnew
=
new
MFaceVertex
(
gp
.
x
(),
gp
.
y
(),
gp
.
z
(),
gf
,
gp
.
u
(),
gp
.
v
());
MVertex
*
vnew
=
new
MFaceVertex
(
gp
.
x
(),
gp
.
y
(),
gp
.
z
(),
gf
,
gp
.
u
(),
gp
.
v
());
...
@@ -371,7 +371,7 @@ static void updateFaceQuads(GFace *gf, std::vector<MQuadrangle*> &quads, std::ve
...
@@ -371,7 +371,7 @@ static void updateFaceQuads(GFace *gf, std::vector<MQuadrangle*> &quads, std::ve
bool
createRegularTwoCircleGrid
(
Centerline
*
center
,
GFace
*
gf
)
bool
createRegularTwoCircleGrid
(
Centerline
*
center
,
GFace
*
gf
)
{
{
#if defined(HAVE_ANN)
std
::
list
<
GEdge
*>
bedges
=
gf
->
edges
();
std
::
list
<
GEdge
*>
bedges
=
gf
->
edges
();
std
::
list
<
GEdge
*>::
iterator
itb
=
bedges
.
begin
();
std
::
list
<
GEdge
*>::
iterator
itb
=
bedges
.
begin
();
std
::
list
<
GEdge
*>::
iterator
ite
=
bedges
.
end
();
ite
--
;
std
::
list
<
GEdge
*>::
iterator
ite
=
bedges
.
end
();
ite
--
;
...
@@ -384,7 +384,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
...
@@ -384,7 +384,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
return
false
;
return
false
;
}
}
//vert1 is the outer circle
//vert1 is the outer circle
//vert2 is the inner circle
//vert2 is the inner circle
// - - - -
// - - - -
// - -
// - -
...
@@ -416,13 +416,12 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
...
@@ -416,13 +416,12 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
double
n2
=
sqrt
(
pv2
.
x
()
*
pv2
.
x
()
+
pv2
.
y
()
*
pv2
.
y
());
double
n2
=
sqrt
(
pv2
.
x
()
*
pv2
.
x
()
+
pv2
.
y
()
*
pv2
.
y
());
if
(
n2
>
n1
)
{
if
(
n2
>
n1
)
{
vert_temp
=
vert1
;
vert_temp
=
vert1
;
vert1
.
clear
();
vert1
.
clear
();
vert1
=
vert2
;
vert1
=
vert2
;
vert2
.
clear
();
vert2
.
clear
();
vert2
=
vert_temp
;
vert2
=
vert_temp
;
}
}
#if defined(HAVE_ANN)
ANNpointArray
nodes
=
annAllocPts
(
N
,
3
);
ANNpointArray
nodes
=
annAllocPts
(
N
,
3
);
ANNidxArray
index
=
new
ANNidx
[
1
];
ANNidxArray
index
=
new
ANNidx
[
1
];
ANNdistArray
dist
=
new
ANNdist
[
1
];
ANNdistArray
dist
=
new
ANNdist
[
1
];
...
@@ -451,7 +450,6 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
...
@@ -451,7 +450,6 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
delete
[]
index
;
delete
[]
index
;
delete
[]
dist
;
delete
[]
dist
;
annDeallocPts
(
nodes
);
annDeallocPts
(
nodes
);
#endif;
MVertex
*
v0
=
vert1
[
0
];
SPoint2
p0
;
reparamMeshVertexOnFace
(
v0
,
gf
,
p0
);
MVertex
*
v0
=
vert1
[
0
];
SPoint2
p0
;
reparamMeshVertexOnFace
(
v0
,
gf
,
p0
);
MVertex
*
v1
=
vert1
[
N
/
2
];
SPoint2
p1
;
reparamMeshVertexOnFace
(
v1
,
gf
,
p1
);
MVertex
*
v1
=
vert1
[
N
/
2
];
SPoint2
p1
;
reparamMeshVertexOnFace
(
v1
,
gf
,
p1
);
...
@@ -465,7 +463,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
...
@@ -465,7 +463,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
for
(
int
i
=
N
/
2
+
1
;
i
<
N
;
i
++
)
e10
.
push_back
(
vert1
[
i
]);
for
(
int
i
=
N
/
2
+
1
;
i
<
N
;
i
++
)
e10
.
push_back
(
vert1
[
i
]);
for
(
int
i
=
1
;
i
<
N
/
2
;
i
++
)
e23
.
push_back
(
vert2
[(
close_ind
+
i
)
%
N
]);
for
(
int
i
=
1
;
i
<
N
/
2
;
i
++
)
e23
.
push_back
(
vert2
[(
close_ind
+
i
)
%
N
]);
for
(
int
i
=
N
/
2
+
1
;
i
<
N
;
i
++
)
e32
.
push_back
(
vert2
[(
close_ind
+
i
)
%
N
]);
for
(
int
i
=
N
/
2
+
1
;
i
<
N
;
i
++
)
e32
.
push_back
(
vert2
[(
close_ind
+
i
)
%
N
]);
std
::
vector
<
SPoint2
>
pe01
,
pe10
,
pe23
,
pe32
;
std
::
vector
<
SPoint2
>
pe01
,
pe10
,
pe23
,
pe32
;
for
(
unsigned
int
i
=
0
;
i
<
e01
.
size
();
i
++
){
for
(
unsigned
int
i
=
0
;
i
<
e01
.
size
();
i
++
){
SPoint2
p01
;
reparamMeshVertexOnFace
(
e01
[
i
],
gf
,
p01
);
SPoint2
p01
;
reparamMeshVertexOnFace
(
e01
[
i
],
gf
,
p01
);
...
@@ -479,8 +477,8 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
...
@@ -479,8 +477,8 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
}
}
std
::
vector
<
SPoint2
>
pe02
,
pe13
;
std
::
vector
<
SPoint2
>
pe02
,
pe13
;
std
::
vector
<
MVertex
*>
e02
=
saturateEdgeRegular
(
gf
,
p0
,
p2
,
length
,
arc
,
M
+
1
,
pe02
);
std
::
vector
<
MVertex
*>
e02
=
saturateEdgeRegular
(
gf
,
p0
,
p2
,
length
,
arc
,
M
+
1
,
pe02
);
std
::
vector
<
MVertex
*>
e13
=
saturateEdgeRegular
(
gf
,
p1
,
p3
,
length
,
arc
,
M
+
1
,
pe13
);
std
::
vector
<
MVertex
*>
e13
=
saturateEdgeRegular
(
gf
,
p1
,
p3
,
length
,
arc
,
M
+
1
,
pe13
);
printf
(
"N/2 edges size =%d %d
\n
"
,
pe01
.
size
(),
pe10
.
size
());
printf
(
"N/2 edges size =%d %d
\n
"
,
pe01
.
size
(),
pe10
.
size
());
printf
(
"M edges size =%d %d
\n
"
,
pe02
.
size
(),
pe13
.
size
());
printf
(
"M edges size =%d %d
\n
"
,
pe02
.
size
(),
pe13
.
size
());
...
@@ -513,7 +511,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
...
@@ -513,7 +511,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
//updateFaceQuads(gf, quads, newv);
//updateFaceQuads(gf, quads, newv);
//printQuads(gf, uv1, quads, 0);
//printQuads(gf, uv1, quads, 0);
ellipticSmoother
(
uv1
,
gf
,
quadS1
,
newv1
);
ellipticSmoother
(
uv1
,
gf
,
quadS1
,
newv1
);
createRegularGrid
(
gf
,
createRegularGrid
(
gf
,
v0
,
p0
,
v0
,
p0
,
e02
,
pe02
,
+
1
,
e02
,
pe02
,
+
1
,
...
@@ -524,7 +522,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
...
@@ -524,7 +522,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
v1
,
p1
,
v1
,
p1
,
e10
,
pe10
,
+
1
,
e10
,
pe10
,
+
1
,
quads
,
newv
,
uv2
);
quads
,
newv
,
uv2
);
ellipticSmoother
(
uv2
,
gf
,
quadS2
,
newv2
);
ellipticSmoother
(
uv2
,
gf
,
quadS2
,
newv2
);
quads
.
clear
();
quads
.
clear
();
...
@@ -532,6 +530,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
...
@@ -532,6 +530,7 @@ bool createRegularTwoCircleGrid (Centerline *center, GFace *gf)
for
(
int
i
=
0
;
i
<
quadS2
.
size
();
i
++
)
quads
.
push_back
(
quadS2
[
i
]);
for
(
int
i
=
0
;
i
<
quadS2
.
size
();
i
++
)
quads
.
push_back
(
quadS2
[
i
]);
printParamGrid
(
gf
,
vert1
,
vert2
,
e01
,
e10
,
e23
,
e32
,
e02
,
e13
,
quads
);
printParamGrid
(
gf
,
vert1
,
vert2
,
e01
,
e10
,
e23
,
e32
,
e02
,
e13
,
quads
);
#endif;
return
true
;
return
true
;
}
}
...
...
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