STYLE: surfaceFeatureExtract: get info from Coeffs dictionary. Added comment

This commit is contained in:
mattijs
2012-04-03 10:36:23 +01:00
parent 5d60157dd1
commit 69569cc45e
4 changed files with 56 additions and 35 deletions

View File

@ -18,7 +18,7 @@ bottomAir.stl
{
extractionMethod extractFromSurface;
extractFromSurface
extractFromSurfaceCoeffs
{
// Mark edges whose adjacent surface normals are at an angle less
// than includedAngle as features
@ -34,7 +34,7 @@ heater.stl
{
extractionMethod extractFromSurface;
extractFromSurface
extractFromSurfaceCoeffs
{
// Mark edges whose adjacent surface normals are at an angle less
// than includedAngle as features
@ -50,7 +50,7 @@ leftSolid.stl
{
extractionMethod extractFromSurface;
extractFromSurface
extractFromSurfaceCoeffs
{
// Mark edges whose adjacent surface normals are at an angle less
// than includedAngle as features
@ -66,7 +66,7 @@ rightSolid.stl
{
extractionMethod extractFromSurface;
extractFromSurface
extractFromSurfaceCoeffs
{
// Mark edges whose adjacent surface normals are at an angle less
// than includedAngle as features
@ -82,7 +82,7 @@ topAir.stl
{
extractionMethod extractFromSurface;
extractFromSurface
extractFromSurfaceCoeffs
{
// Mark edges whose adjacent surface normals are at an angle less
// than includedAngle as features

View File

@ -18,7 +18,7 @@ flange.obj
{
extractionMethod extractFromSurface;
extractFromSurface
extractFromSurfaceCoeffs
{
// Mark edges whose adjacent surface normals are at an angle less
// than includedAngle as features
@ -27,10 +27,14 @@ flange.obj
includedAngle 155;
}
// Write options
writeVTK no;
writeObj yes;
writeFeatureEdgeMesh no;
// Write .eMesh file (for snappyHexMesh)
writeFeatureEdgeMesh no;
// Write features to obj format for postprocessing
writeObj yes;
}