mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: add VTP output support for surfMesh
- use proxy writer for triSurface writing
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user