ENH: add VTP output support for surfMesh

- use proxy writer for triSurface writing
This commit is contained in:
Mark Olesen
2017-06-02 12:07:43 +02:00
parent a2e978d43e
commit 4cbbe3fd59
14 changed files with 1185 additions and 410 deletions

View File

@ -159,12 +159,16 @@ int main(int argc, char *argv[])
if
(
!MeshedSurface<face>::canRead(importName, true)
||
(
!optStdout
&& !MeshedSurface<face>::canWriteType(exportName.ext(), true)
)
!args.optionFound("triSurface")
&&
(
!MeshedSurface<face>::canRead(importName, true)
||
(
!optStdout
&& !MeshedSurface<face>::canWriteType(exportName.ext(), true)
)
)
)
{
return 1;