Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nektar
Nektar
Commits
9db62882
Commit
9db62882
authored
Apr 19, 2017
by
Julian Marcon
Browse files
Continuing lines
parent
588506b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/NekMeshUtils/CADSystem/OCE/CADSystemOCE.cpp
View file @
9db62882
...
...
@@ -416,6 +416,7 @@ TopoDS_Shape CADSystemOCE::BuildGeo(string geo)
map
<
int
,
string
>
surfs
;
string
fline
;
string
flinetmp
;
while
(
!
f
.
eof
())
{
...
...
@@ -431,6 +432,15 @@ TopoDS_Shape CADSystemOCE::BuildGeo(string geo)
continue
;
}
if
(
!
boost
::
ends_with
(
fline
,
";"
))
{
flinetmp
+=
fline
;
continue
;
}
fline
=
flinetmp
+
fline
;
flinetmp
.
clear
();
vector
<
string
>
tmp1
,
tmp2
;
boost
::
split
(
tmp1
,
fline
,
boost
::
is_any_of
(
"="
));
...
...
Write
Preview
Supports
Markdown
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