mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: surfaceFeatureExtract: option not in argList
This commit is contained in:
@ -413,6 +413,11 @@ int main(int argc, char *argv[])
|
|||||||
"distance to look for close features"
|
"distance to look for close features"
|
||||||
);
|
);
|
||||||
argList::addBoolOption
|
argList::addBoolOption
|
||||||
|
(
|
||||||
|
"writeVTK",
|
||||||
|
"write surface property VTK files"
|
||||||
|
);
|
||||||
|
argList::addBoolOption
|
||||||
(
|
(
|
||||||
"manifoldEdgesOnly",
|
"manifoldEdgesOnly",
|
||||||
"remove any non-manifold (open or more than two connected faces) edges"
|
"remove any non-manifold (open or more than two connected faces) edges"
|
||||||
@ -595,8 +600,8 @@ int main(int argc, char *argv[])
|
|||||||
surfaceFeatures newSet(surf);
|
surfaceFeatures newSet(surf);
|
||||||
newSet.setFromStatus(edgeStat);
|
newSet.setFromStatus(edgeStat);
|
||||||
|
|
||||||
Info<< endl << "Writing trimmed features to " << outFileName << endl;
|
//Info<< endl << "Writing trimmed features to " << outFileName << endl;
|
||||||
newSet.write(outFileName);
|
//newSet.write(outFileName);
|
||||||
|
|
||||||
// Info<< endl << "Writing edge objs." << endl;
|
// Info<< endl << "Writing edge objs." << endl;
|
||||||
// newSet.writeObj("final");
|
// newSet.writeObj("final");
|
||||||
|
|||||||
Reference in New Issue
Block a user