surfaceFeatures Class Reference

Holds feature edges/points of surface. More...

Public Types

enum  edgeStatus { NONE , REGION , EXTERNAL , INTERNAL }
 

Public Member Functions

 ClassName ("surfaceFeatures")
 
 surfaceFeatures (const triSurface &)
 Construct from surface. More...
 
 surfaceFeatures (const triSurface &, const labelList &featurePoints, const labelList &featureEdges, const label externalStart, const label internalStart)
 Construct from components. More...
 
 surfaceFeatures (const triSurface &, const scalar includedAngle, const scalar minLen=0, const label minElems=0, const bool geometricTestOnly=false)
 Construct from surface, angle and min cumulative length and/or. More...
 
 surfaceFeatures (const triSurface &, const dictionary &dict)
 Construct from dictionary. More...
 
 surfaceFeatures (const triSurface &, const fileName &fName)
 Construct from file. More...
 
 surfaceFeatures (const triSurface &, const pointField &points, const edgeList &edges, const scalar mergeTol=1e-6, const bool geometricTestOnly=false)
 Construct from pointField and edgeList (edgeMesh) More...
 
 surfaceFeatures (const surfaceFeatures &)
 Copy constructor. More...
 
const triSurfacesurface () const
 
const labelListfeaturePoints () const
 Return feature point list. More...
 
const labelListfeatureEdges () const
 Return feature edge list. More...
 
label externalStart () const
 Start of external edges. More...
 
label internalStart () const
 Start of internal edges. More...
 
label nRegionEdges () const
 Return number of region edges. More...
 
label nExternalEdges () const
 Return number of external edges. More...
 
label nInternalEdges () const
 Return number of internal edges. More...
 
labelList selectFeatureEdges (const bool regionEdges, const bool externalEdges, const bool internalEdges) const
 Helper function: select a subset of featureEdges_. More...
 
void findFeatures (const scalar includedAngle, const bool geometricTestOnly)
 Find feature edges using provided included angle. More...
 
labelList trimFeatures (const scalar minLen, const label minElems, const scalar includedAngle)
 Delete small sets of edges. Edges are stringed up and any. More...
 
List< edgeStatustoStatus () const
 From member feature edges to status per edge. More...
 
void setFromStatus (const List< edgeStatus > &edgeStat, const scalar includedAngle)
 Set from status per edge. More...
 
Map< labelnearestSamples (const labelList &selectedPoints, const pointField &samples, const scalarField &maxDistSqr) const
 Find nearest sample for selected surface points. More...
 
Map< labelnearestSamples (const labelList &selectedEdges, const pointField &samples, const scalarField &sampleDist, const scalarField &maxDistSqr, const scalar minSampleDist=0.1) const
 Find nearest sample for regularly sampled points along. More...
 
Map< pointIndexHitnearestEdges (const labelList &selectedEdges, const edgeList &sampleEdges, const labelList &selectedSampleEdges, const pointField &samplePoints, const scalarField &sampleDist, const scalarField &maxDistSqr, const scalar minSampleDist=0.1) const
 Like nearestSamples but now gets nearest point on. More...
 
void nearestSurfEdge (const labelList &selectedEdges, const pointField &samples, scalar searchSpanSqr, labelList &edgeLabel, labelList &edgeEndPoint, pointField &edgePoint) const
 Find nearest surface edge (out of selectedEdges) for. More...
 
void nearestSurfEdge (const labelList &selectedEdges, const edgeList &sampleEdges, const labelList &selectedSampleEdges, const pointField &samplePoints, const vector &searchSpan, labelList &edgeLabel, pointField &pointOnEdge, pointField &pointOnFeature) const
 Find nearest surface edge (out of selectedEdges) for each. More...
 
void nearestFeatEdge (const edgeList &edges, const pointField &points, scalar searchSpanSqr, labelList &edgeLabel) const
 Find nearest feature edge to each surface edge. Uses the. More...
 
void writeDict (Ostream &) const
 Write as dictionary. More...
 
void write (const fileName &fName) const
 Write as dictionary to file. More...
 
void writeObj (const fileName &prefix) const
 Write to separate OBJ files (region, external, internal edges,. More...
 
void operator= (const surfaceFeatures &)
 

Detailed Description

Holds feature edges/points of surface.

Feature edges are stored in one list and sorted: 0 .. externalStart_-1 : region edges externalStart_ .. internalStart_-1 : external edges internalStart_ .. size-1 : internal edges

NOTE: angle is included angle, not feature angle and is in degrees. The included angle is the smallest angle between two planes. For coplanar faces it is 180, for straight angles it is 90. To pick up straight edges only use included angle of 91 degrees

Source files

Definition at line 68 of file surfaceFeatures.H.

Member Enumeration Documentation

◆ edgeStatus

enum edgeStatus
Enumerator
NONE 
REGION 
EXTERNAL 
INTERNAL 

Definition at line 72 of file surfaceFeatures.H.

Constructor & Destructor Documentation

◆ surfaceFeatures() [1/7]

surfaceFeatures ( const triSurface surf)

Construct from surface.

Definition at line 447 of file surfaceFeatures.C.

◆ surfaceFeatures() [2/7]

surfaceFeatures ( const triSurface surf,
const labelList featurePoints,
const labelList featureEdges,
const label  externalStart,
const label  internalStart 
)

Construct from components.

Definition at line 458 of file surfaceFeatures.C.

◆ surfaceFeatures() [3/7]

surfaceFeatures ( const triSurface surf,
const scalar  includedAngle,
const scalar  minLen = 0,
const label  minElems = 0,
const bool  geometricTestOnly = false 
)

Construct from surface, angle and min cumulative length and/or.

number of elements. If geometric test only is true, then region information is ignored and features are only assigned based on the geometric criteria

Definition at line 476 of file surfaceFeatures.C.

References surfaceFeatures::findFeatures(), and surfaceFeatures::trimFeatures().

Here is the call graph for this function:

◆ surfaceFeatures() [4/7]

surfaceFeatures ( const triSurface surf,
const dictionary dict 
)

Construct from dictionary.

Definition at line 500 of file surfaceFeatures.C.

◆ surfaceFeatures() [5/7]

surfaceFeatures ( const triSurface surf,
const fileName fName 
)

Construct from file.

Definition at line 514 of file surfaceFeatures.C.

References dictionary::lookup().

Here is the call graph for this function:

◆ surfaceFeatures() [6/7]

◆ surfaceFeatures() [7/7]

Copy constructor.

Definition at line 618 of file surfaceFeatures.C.

Member Function Documentation

◆ ClassName()

ClassName ( "surfaceFeatures"  )

◆ surface()

const triSurface& surface ( ) const
inline

Definition at line 227 of file surfaceFeatures.H.

Referenced by extendedEdgeMesh::extendedEdgeMesh(), and surfaceFeatures::operator=().

Here is the caller graph for this function:

◆ featurePoints()

const labelList& featurePoints ( ) const
inline

Return feature point list.

Definition at line 233 of file surfaceFeatures.H.

Referenced by extendedEdgeMesh::extendedEdgeMesh(), and surfaceFeatures::operator=().

Here is the caller graph for this function:

◆ featureEdges()

const labelList& featureEdges ( ) const
inline

Return feature edge list.

Definition at line 239 of file surfaceFeatures.H.

Referenced by extendedEdgeMesh::extendedEdgeMesh(), and surfaceFeatures::operator=().

Here is the caller graph for this function:

◆ externalStart()

label externalStart ( ) const
inline

Start of external edges.

Definition at line 245 of file surfaceFeatures.H.

Referenced by surfaceFeatures::operator=().

Here is the caller graph for this function:

◆ internalStart()

label internalStart ( ) const
inline

Start of internal edges.

Definition at line 251 of file surfaceFeatures.H.

Referenced by surfaceFeatures::operator=().

Here is the caller graph for this function:

◆ nRegionEdges()

label nRegionEdges ( ) const
inline

Return number of region edges.

Definition at line 257 of file surfaceFeatures.H.

Referenced by extendedEdgeMesh::extendedEdgeMesh().

Here is the caller graph for this function:

◆ nExternalEdges()

label nExternalEdges ( ) const
inline

Return number of external edges.

Definition at line 263 of file surfaceFeatures.H.

◆ nInternalEdges()

label nInternalEdges ( ) const
inline

Return number of internal edges.

Definition at line 269 of file surfaceFeatures.H.

◆ selectFeatureEdges()

Foam::labelList selectFeatureEdges ( const bool  regionEdges,
const bool  externalEdges,
const bool  internalEdges 
) const

Helper function: select a subset of featureEdges_.

Definition at line 630 of file surfaceFeatures.C.

References DynamicList< T, SizeInc, SizeMult, SizeDiv >::append(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::setCapacity(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::shrink(), and List< T >::size().

Here is the call graph for this function:

◆ findFeatures()

void findFeatures ( const scalar  includedAngle,
const bool  geometricTestOnly 
)

Find feature edges using provided included angle.

Definition at line 673 of file surfaceFeatures.C.

References Foam::cos(), and Foam::degToRad().

Referenced by surfaceFeatures::surfaceFeatures().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ trimFeatures()

Foam::labelList trimFeatures ( const scalar  minLen,
const label  minElems,
const scalar  includedAngle 
)

Delete small sets of edges. Edges are stringed up and any.

string of length < minLen (or nElems < minElems) is deleted.

Definition at line 698 of file surfaceFeatures.C.

References forAll, edge::mag(), and List< T >::size().

Referenced by surfaceFeatures::surfaceFeatures().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ toStatus()

From member feature edges to status per edge.

Definition at line 92 of file surfaceFeatures.C.

◆ setFromStatus()

void setFromStatus ( const List< edgeStatus > &  edgeStat,
const scalar  includedAngle 
)

Set from status per edge.

Definition at line 120 of file surfaceFeatures.C.

References Foam::cos(), Foam::degToRad(), and forAll.

Referenced by surfaceFeatures::surfaceFeatures().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ nearestSamples() [1/2]

Foam::Map< Foam::label > nearestSamples ( const labelList selectedPoints,
const pointField samples,
const scalarField maxDistSqr 
) const

Find nearest sample for selected surface points.

(usually the set of featurePoints). Return map from index in samples to surface point. Do not include points that are further than maxDist away (separate maxDist for every sample). Supply maxDistSqr.

Definition at line 908 of file surfaceFeatures.C.

References Foam::abort(), indexedOctree< Type >::bb(), Foam::endl(), Foam::FatalError, FatalErrorInFunction, forAll, forAllConstIter, PointIndexHit< Point >::hit(), PointIndexHit< Point >::index(), HashTable< T, Key, Hash >::insert(), Foam::magSqr(), pointLabels(), Foam::Pout, samples(), List< T >::size(), and Foam::meshTools::writeOBJ().

Here is the call graph for this function:

◆ nearestSamples() [2/2]

Foam::Map< Foam::label > nearestSamples ( const labelList selectedEdges,
const pointField samples,
const scalarField sampleDist,
const scalarField maxDistSqr,
const scalar  minSampleDist = 0.1 
) const

Find nearest sample for regularly sampled points along.

the selected (surface) edges. Return map from sample to edge. maxDistSqr is distance squared below which gets snapped. Edge gets sampled at points sampleDist[sampleI] apart. (with a maximum of 10 samples per edge)

Definition at line 992 of file surfaceFeatures.C.

References Foam::e, Foam::endl(), Foam::exit(), forAll, forAllConstIter, PointIndexHit< Point >::hit(), PointIndexHit< Point >::hitPoint(), PointIndexHit< Point >::index(), HashTable< T, Key, Hash >::insert(), Foam::mag(), Foam::magSqr(), Foam::max(), Foam::Pout, s(), samples(), List< T >::size(), and Foam::meshTools::writeOBJ().

Here is the call graph for this function:

◆ nearestEdges()

Foam::Map< Foam::pointIndexHit > nearestEdges ( const labelList selectedEdges,
const edgeList sampleEdges,
const labelList selectedSampleEdges,
const pointField samplePoints,
const scalarField sampleDist,
const scalarField maxDistSqr,
const scalar  minSampleDist = 0.1 
) const

Like nearestSamples but now gets nearest point on.

sample-edge instead of nearest sample-point itself. Return map from sample edge to feature edge.

Definition at line 1128 of file surfaceFeatures.C.

References edge::centre(), Foam::e, Foam::endl(), Foam::exit(), forAll, forAllConstIter, PointIndexHit< Point >::hit(), PointIndexHit< Point >::hitPoint(), PointIndexHit< Point >::index(), HashTable< T, Key, Hash >::insert(), Foam::mag(), Foam::magSqr(), Foam::max(), Foam::Pout, s(), indexedOctree< Type >::shapes(), List< T >::size(), and Foam::meshTools::writeOBJ().

Here is the call graph for this function:

◆ nearestSurfEdge() [1/2]

void nearestSurfEdge ( const labelList selectedEdges,
const pointField samples,
scalar  searchSpanSqr,
labelList edgeLabel,
labelList edgeEndPoint,
pointField edgePoint 
) const

Find nearest surface edge (out of selectedEdges) for.

each sample point. Sets:

  • edgeLabel : label of surface edge.
  • edgePoint : exact position of nearest point on edge.
  • edgeEndPoint : -1, 0, 1 depending on whether edgePoint is on inside/start/end of edge

Definition at line 1279 of file surfaceFeatures.C.

References Foam::e, forAll, PointIndexHit< Point >::hit(), PointIndexHit< Point >::index(), boundBox::inflate(), PointIndexHit< Point >::rawPoint(), samples(), List< T >::setSize(), and List< T >::size().

Here is the call graph for this function:

◆ nearestSurfEdge() [2/2]

void nearestSurfEdge ( const labelList selectedEdges,
const edgeList sampleEdges,
const labelList selectedSampleEdges,
const pointField samplePoints,
const vector searchSpan,
labelList edgeLabel,
pointField pointOnEdge,
pointField pointOnFeature 
) const

Find nearest surface edge (out of selectedEdges) for each.

sample edge. Sets:

  • edgeLabel : label of surface edge.
  • pointOnEdge : exact position of nearest point on edge.
  • pointOnFeature : exact position on sample edge.

Definition at line 1349 of file surfaceFeatures.C.

References line< Point, PointRef >::centre(), Foam::e, forAll, PointIndexHit< Point >::hit(), PointIndexHit< Point >::hitPoint(), PointIndexHit< Point >::index(), List< T >::setSize(), and List< T >::size().

Here is the call graph for this function:

◆ nearestFeatEdge()

void nearestFeatEdge ( const edgeList edges,
const pointField points,
scalar  searchSpanSqr,
labelList edgeLabel 
) const

Find nearest feature edge to each surface edge. Uses the.

mid-point of the surface edges.

Definition at line 1415 of file surfaceFeatures.C.

References edge::centre(), forAll, PointIndexHit< Point >::hit(), Foam::identityMap(), PointIndexHit< Point >::index(), boundBox::inflate(), Foam::mag(), points, List< T >::size(), edge::start(), and edge::vec().

Referenced by surfaceFeatures::surfaceFeatures().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ writeDict()

void writeDict ( Ostream writeFile) const

Write as dictionary.

Definition at line 832 of file surfaceFeatures.C.

References dictionary::add(), and dictionary::write().

Here is the call graph for this function:

◆ write()

void write ( const fileName fName) const

Write as dictionary to file.

Definition at line 845 of file surfaceFeatures.C.

◆ writeObj()

void writeObj ( const fileName prefix) const

Write to separate OBJ files (region, external, internal edges,.

feature points) for visualisation

Definition at line 853 of file surfaceFeatures.C.

References Foam::e, Foam::endl(), forAll, OFstream::name(), Foam::Pout, and Foam::meshTools::writeOBJ().

Here is the call graph for this function:

◆ operator=()


The documentation for this class was generated from the following files: