STLAsciiParse Class Reference

Internal class used when parsing STL ASCII format. More...

Inheritance diagram for STLAsciiParse:
Collaboration diagram for STLAsciiParse:

Public Member Functions

 STLAsciiParse (const label nTrisEstimated)
 Construct with the estimated number of triangles in the STL. More...
 
void clear ()
 Reset stored values. More...
 
bool is_sorted () const noexcept
 Do all the solid groups appear in order? More...
 
DynamicList< STLpoint > & points () noexcept
 A list of unstitched triangle points. More...
 
DynamicList< label > & facets () noexcept
 A list of facet IDs (group IDs) corresponds to the number of triangles. More...
 
DynamicList< word > & names () noexcept
 Solid names in the order of their appearance. More...
 
DynamicList< label > & sizes () noexcept
 Solid sizes in the order of their appearance. More...
 

Protected Member Functions

void beginSolid (word solidName)
 Action when entering 'solid'. More...
 
void beginFacet ()
 Action when entering 'facet'. More...
 
void resetVertex ()
 Reset vertex component to zero. More...
 
bool addVertexComponent (float val)
 Add next vertex component. On each third call, adds the point. More...
 
bool addVertexComponent (const char *text)
 Add next vertex component. On each third call, adds the point. More...
 
void endFacet ()
 Action on 'endfacet'. More...
 
 STLAsciiParse (const STLAsciiParse &)=delete
 No copy construct. More...
 
void operator= (const STLAsciiParse &)=delete
 No copy assignment. More...
 

Protected Attributes

bool sorted_
 
label groupId_
 
label lineNum_
 
int nFacetPoints_
 The number of local points on the current facet. More...
 
int nVertexCmpt_
 Current vertex component when reading 'vertex'. More...
 
STLpoint currVertex_
 Scratch space for reading 'vertex'. More...
 
DynamicList< STLpointpoints_
 
DynamicList< label > facets_
 
DynamicList< wordnames_
 
DynamicList< label > sizes_
 
HashTable< label > nameLookup_
 

Detailed Description

Internal class used when parsing STL ASCII format.

Source files

Definition at line 50 of file STLAsciiParse.H.

Constructor & Destructor Documentation

◆ STLAsciiParse() [1/2]

STLAsciiParse ( const STLAsciiParse )
protecteddelete

No copy construct.

◆ STLAsciiParse() [2/2]

STLAsciiParse ( const label  nTrisEstimated)
inline

Construct with the estimated number of triangles in the STL.

Definition at line 129 of file STLAsciiParseI.H.

Member Function Documentation

◆ beginSolid()

void beginSolid ( word  solidName)
inlineprotected

◆ beginFacet()

void beginFacet ( )
inlineprotected

Action when entering 'facet'.

Definition at line 57 of file STLAsciiParseI.H.

Referenced by STLAsciiParseManual::execute().

Here is the caller graph for this function:

◆ resetVertex()

void resetVertex ( )
inlineprotected

Reset vertex component to zero.

Definition at line 64 of file STLAsciiParseI.H.

◆ addVertexComponent() [1/2]

bool addVertexComponent ( float  val)
inlineprotected

Add next vertex component. On each third call, adds the point.

Returns
true when point has been added (on the last component)

Definition at line 70 of file STLAsciiParseI.H.

Referenced by STLAsciiParseManual::execute().

Here is the caller graph for this function:

◆ addVertexComponent() [2/2]

bool addVertexComponent ( const char *  text)
inlineprotected

Add next vertex component. On each third call, adds the point.

Returns
true when point has been added (on the last component)

> safer, but slower: readFloat(text, currVertex_[nVertexCmpt_]);

Definition at line 85 of file STLAsciiParseI.H.

◆ endFacet()

void endFacet ( )
inlineprotected

Action on 'endfacet'.

Definition at line 103 of file STLAsciiParseI.H.

Referenced by STLAsciiParseManual::execute().

Here is the caller graph for this function:

◆ operator=()

void operator= ( const STLAsciiParse )
protecteddelete

No copy assignment.

◆ clear()

void clear ( )
inline

Reset stored values.

Definition at line 143 of file STLAsciiParseI.H.

◆ is_sorted()

bool is_sorted ( ) const
inlinenoexcept

Do all the solid groups appear in order?

Definition at line 150 of file STLAsciiParse.H.

References STLAsciiParse::sorted_.

◆ points()

DynamicList<STLpoint>& points ( )
inlinenoexcept

A list of unstitched triangle points.

Definition at line 155 of file STLAsciiParse.H.

References STLAsciiParse::points_.

◆ facets()

DynamicList<label>& facets ( )
inlinenoexcept

A list of facet IDs (group IDs) corresponds to the number of triangles.

Definition at line 161 of file STLAsciiParse.H.

References STLAsciiParse::facets_.

◆ names()

DynamicList<word>& names ( )
inlinenoexcept

Solid names in the order of their appearance.

Definition at line 166 of file STLAsciiParse.H.

References STLAsciiParse::names_.

◆ sizes()

DynamicList<label>& sizes ( )
inlinenoexcept

Solid sizes in the order of their appearance.

Definition at line 171 of file STLAsciiParse.H.

References STLAsciiParse::sizes_.

Member Data Documentation

◆ sorted_

bool sorted_
protected

Definition at line 56 of file STLAsciiParse.H.

Referenced by STLAsciiParse::beginSolid(), and STLAsciiParse::is_sorted().

◆ groupId_

label groupId_
protected

Definition at line 57 of file STLAsciiParse.H.

Referenced by STLAsciiParse::beginSolid().

◆ lineNum_

label lineNum_
protected

Definition at line 58 of file STLAsciiParse.H.

Referenced by STLAsciiParseManual::execute().

◆ nFacetPoints_

int nFacetPoints_
protected

The number of local points on the current facet.

Definition at line 63 of file STLAsciiParse.H.

◆ nVertexCmpt_

int nVertexCmpt_
protected

Current vertex component when reading 'vertex'.

Definition at line 68 of file STLAsciiParse.H.

◆ currVertex_

STLpoint currVertex_
protected

Scratch space for reading 'vertex'.

Definition at line 73 of file STLAsciiParse.H.

◆ points_

DynamicList<STLpoint> points_
protected

Definition at line 75 of file STLAsciiParse.H.

Referenced by STLAsciiParse::points().

◆ facets_

DynamicList<label> facets_
protected

Definition at line 76 of file STLAsciiParse.H.

Referenced by STLAsciiParse::facets().

◆ names_

DynamicList<word> names_
protected

Definition at line 77 of file STLAsciiParse.H.

Referenced by STLAsciiParse::beginSolid(), and STLAsciiParse::names().

◆ sizes_

DynamicList<label> sizes_
protected

Definition at line 78 of file STLAsciiParse.H.

Referenced by STLAsciiParse::beginSolid(), and STLAsciiParse::sizes().

◆ nameLookup_

HashTable<label> nameLookup_
protected

Definition at line 79 of file STLAsciiParse.H.

Referenced by STLAsciiParse::beginSolid().


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