Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
e9d424b7
Commit
e9d424b7
authored
Jul 30, 2008
by
Mattijs Janssens
Browse files
removal of warning
parent
eb562dfd
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/utilities/surface/surfaceCheck/surfaceCheck.C
View file @
e9d424b7
...
...
@@ -49,20 +49,20 @@ bool validTri(const triSurface& surf, const label faceI)
||
(
f
[
2
]
<
0
)
||
(
f
[
2
]
>=
surf
.
points
().
size
())
)
{
WarningIn
(
"validTri(const triSurface&, const label)"
)
<<
"triangle "
<<
faceI
<<
" vertices "
<<
f
<<
" uses point indices outside point range 0.."
<<
surf
.
points
().
size
()
-
1
<<
endl
;
//
WarningIn("validTri(const triSurface&, const label)")
//
<< "triangle " << faceI << " vertices " << f
//
<< " uses point indices outside point range 0.."
//
<< surf.points().size()-1 << endl;
return
false
;
}
if
((
f
[
0
]
==
f
[
1
])
||
(
f
[
0
]
==
f
[
2
])
||
(
f
[
1
]
==
f
[
2
]))
{
WarningIn
(
"validTri(const triSurface&, const label)"
)
<<
"triangle "
<<
faceI
<<
" uses non-unique vertices "
<<
f
<<
endl
;
//
WarningIn("validTri(const triSurface&, const label)")
//
<< "triangle " << faceI
//
<< " uses non-unique vertices " << f
//
<< endl;
return
false
;
}
...
...
@@ -91,11 +91,11 @@ bool validTri(const triSurface& surf, const label faceI)
&&
((
f
[
2
]
==
nbrF
[
0
])
||
(
f
[
2
]
==
nbrF
[
1
])
||
(
f
[
2
]
==
nbrF
[
2
]))
)
{
WarningIn
(
"validTri(const triSurface&, const label)"
)
<<
"triangle "
<<
faceI
<<
" vertices "
<<
f
<<
" has the same vertices as triangle "
<<
nbrFaceI
<<
" vertices "
<<
nbrF
<<
endl
;
//
WarningIn("validTri(const triSurface&, const label)")
//
<< "triangle " << faceI << " vertices " << f
//
<< " has the same vertices as triangle " << nbrFaceI
//
<< " vertices " << nbrF
//
<< endl;
return
false
;
}
...
...
@@ -270,9 +270,9 @@ int main(int argc, char *argv[])
if
(
f
[
0
]
==
f
[
1
]
||
f
[
0
]
==
f
[
2
]
||
f
[
1
]
==
f
[
2
])
{
WarningIn
(
args
.
executable
())
<<
"Illegal triangle "
<<
faceI
<<
" vertices "
<<
f
<<
" coords "
<<
f
.
points
(
surf
.
points
())
<<
endl
;
//
WarningIn(args.executable())
//
<< "Illegal triangle " << faceI << " vertices " << f
//
<< " coords " << f.points(surf.points()) << endl;
}
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