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


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< STLpoint > | points_ |
| DynamicList< label > | facets_ |
| DynamicList< word > | names_ |
| DynamicList< label > | sizes_ |
| HashTable< label > | nameLookup_ |
Internal class used when parsing STL ASCII format.
Definition at line 50 of file STLAsciiParse.H.
|
protecteddelete |
No copy construct.
|
inline |
Construct with the estimated number of triangles in the STL.
Definition at line 129 of file STLAsciiParseI.H.
|
inlineprotected |
Action when entering 'solid'.
Definition at line 23 of file STLAsciiParseI.H.
References HashTable< T, Key, Hash >::cfind(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, STLAsciiParse::groupId_, HashTable< T, Key, Hash >::insert(), STLAsciiParse::nameLookup_, STLAsciiParse::names_, Foam::nl, DynamicList< T, SizeMin >::push_back(), UList< T >::size(), STLAsciiParse::sizes_, and STLAsciiParse::sorted_.
Referenced by STLAsciiParseManual::execute().


|
inlineprotected |
Action when entering 'facet'.
Definition at line 57 of file STLAsciiParseI.H.
Referenced by STLAsciiParseManual::execute().

|
inlineprotected |
Reset vertex component to zero.
Definition at line 64 of file STLAsciiParseI.H.
|
inlineprotected |
Add next vertex component. On each third call, adds the point.
Definition at line 70 of file STLAsciiParseI.H.
Referenced by STLAsciiParseManual::execute().

|
inlineprotected |
Add next vertex component. On each third call, adds the point.
> safer, but slower: readFloat(text, currVertex_[nVertexCmpt_]);
Definition at line 85 of file STLAsciiParseI.H.
|
inlineprotected |
Action on 'endfacet'.
Definition at line 103 of file STLAsciiParseI.H.
Referenced by STLAsciiParseManual::execute().

|
protecteddelete |
No copy assignment.
|
inline |
Reset stored values.
Definition at line 143 of file STLAsciiParseI.H.
|
inlinenoexcept |
Do all the solid groups appear in order?
Definition at line 150 of file STLAsciiParse.H.
References STLAsciiParse::sorted_.
|
inlinenoexcept |
A list of unstitched triangle points.
Definition at line 155 of file STLAsciiParse.H.
References STLAsciiParse::points_.
|
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_.
|
inlinenoexcept |
Solid names in the order of their appearance.
Definition at line 166 of file STLAsciiParse.H.
References STLAsciiParse::names_.
|
inlinenoexcept |
Solid sizes in the order of their appearance.
Definition at line 171 of file STLAsciiParse.H.
References STLAsciiParse::sizes_.
|
protected |
Definition at line 56 of file STLAsciiParse.H.
Referenced by STLAsciiParse::beginSolid(), and STLAsciiParse::is_sorted().
|
protected |
Definition at line 57 of file STLAsciiParse.H.
Referenced by STLAsciiParse::beginSolid().
|
protected |
Definition at line 58 of file STLAsciiParse.H.
Referenced by STLAsciiParseManual::execute().
|
protected |
The number of local points on the current facet.
Definition at line 63 of file STLAsciiParse.H.
|
protected |
Current vertex component when reading 'vertex'.
Definition at line 68 of file STLAsciiParse.H.
|
protected |
Scratch space for reading 'vertex'.
Definition at line 73 of file STLAsciiParse.H.
|
protected |
Definition at line 75 of file STLAsciiParse.H.
Referenced by STLAsciiParse::points().
|
protected |
Definition at line 76 of file STLAsciiParse.H.
Referenced by STLAsciiParse::facets().
|
protected |
Definition at line 77 of file STLAsciiParse.H.
Referenced by STLAsciiParse::beginSolid(), and STLAsciiParse::names().
|
protected |
Definition at line 78 of file STLAsciiParse.H.
Referenced by STLAsciiParse::beginSolid(), and STLAsciiParse::sizes().
|
protected |
Definition at line 79 of file STLAsciiParse.H.
Referenced by STLAsciiParse::beginSolid().