Loading...
Searching...
No Matches
tetPoints Class Reference

Tet point storage. Default constructable (tetrahedron is not). More...

#include <tetrahedron.H>

Inheritance diagram for tetPoints:
Collaboration diagram for tetPoints:

Public Member Functions

 tetPoints ()=default
 Default construct.
void front ()=delete
 The front() accessor (from FixedList) has no purpose.
void back ()=delete
 The back() accessor (from FixedList) has no purpose.
 tetPoints (const point &p0, const point &p1, const point &p2, const point &p3)
 Construct from four points.
 tetPoints (const tetPointRef &pts)
 Construct from point references.
 tetPoints (const FixedList< point, 4 > &pts)
 Construct from four points.
 tetPoints (const UList< point > &points, const FixedList< label, 4 > &indices)
 Copy construct from subset of points.
const pointa () const noexcept
 The first vertex.
const pointb () const noexcept
 The second vertex.
const pointc () const noexcept
 The third vertex.
const pointd () const noexcept
 The fourth vertex.
pointa () noexcept
 The first vertex.
pointb () noexcept
 The second vertex.
pointc () noexcept
 The third vertex.
pointd () noexcept
 The fourth vertex.
tetPointRef tet () const
 Return as tetrahedron reference.
void flip ()
 Invert tetrahedron by swapping third and fourth vertices.
Pair< pointbox () const
 The enclosing (bounding) box for the tetrahedron.
treeBoundBox bounds () const
 The bounding box for the tetrahedron.
Public Member Functions inherited from FixedList< point, 4 >
 FixedList ()=default
 Default construct.
autoPtr< FixedList< point, N > > clone () const
 Clone.
const pointcdata () const noexcept
 Return pointer to the underlying array serving as data storage.
pointdata () noexcept
 Return pointer to the underlying array serving as data storage.
const char * cdata_bytes () const noexcept
 Return pointer to the underlying array serving as data storage,.
char * data_bytes () noexcept
 Return pointer to the underlying array serving as data storage,.
pointget () noexcept
 Element access using compile-time indexing.
pointfront () noexcept
 Access first element of the list, position [0].
pointback () noexcept
 Access last element of the list, position [N-1].
label fcIndex (const label i) const noexcept
 Return the forward circular index, i.e. next index which returns to the first at the end of the list.
const pointfcValue (const label i) const
 Return forward circular value (ie, next value in the list).
label rcIndex (const label i) const noexcept
 Return the reverse circular index, i.e. previous index which returns to the last at the beginning of the list.
const pointrcValue (const label i) const
 Return reverse circular value (ie, previous value in the list).
void checkStart (const label start) const
 Check start is within valid range [0,size).
void checkSize (const label size) const
 Check size is identical to template parameter N.
void checkIndex (const label i) const
 Check index is within valid range [0,N).
bool uniform () const
 True if all entries have identical values, and list is non-empty.
bool contains (const point &val) const
 True if the value is contained in the list.
label find (const point &val) const
 Find index of the first occurrence of the value.
label rfind (const point &val, label pos=-1) const
 Find index of the last occurrence of the value.
void resize (const label n)
 Dummy function, to make FixedList consistent with List Any resizing is ignored (Fatal with bad sizing in full debug).
void resize_fill (const label n, const point &val)
 Set val for all elements. Any resizing is ignored (Fatal with bad sizing in full debug).
void resize_nocopy (const label n)
 Dummy function, to make FixedList consistent with List Any resizing is ignored (Fatal with bad sizing in full debug).
void setSize (const label n)
 Dummy function, to make FixedList consistent with List.
void fill (const point &val)
 Assign all entries to the given value.
void moveFirst (const label i)
 Move element to the first position.
void moveLast (const label i)
 Move element to the last position.
void swapFirst (const label i)
 Swap element with the first element.
void swapLast (const label i)
 Swap element with the last element.
void transfer (FixedList< point, N > &list)
 Transfer by swapping using a move assignment for the content of the individual list elements.
pointoperator[] (const label i)
 Return element of FixedList.
void operator= (const UList< point > &list)
 Assignment to UList operator. Takes linear time.
iterator begin () noexcept
 Return an iterator to begin traversing the FixedList.
iterator end () noexcept
 Return an iterator to end traversing the FixedList.
const_iterator cbegin () const noexcept
 Return const_iterator to begin traversing the constant FixedList.
const_iterator cend () const noexcept
 Return const_iterator to end traversing the constant FixedList.
reverse_iterator rbegin ()
 Return reverse_iterator to begin reverse traversing the FixedList.
reverse_iterator rend ()
 Return reverse_iterator to end reverse traversing the FixedList.
const_reverse_iterator crbegin () const
 Return const_reverse_iterator to begin reverse traversing FixedList.
const_reverse_iterator crend () const
 Return const_reverse_iterator to end reverse traversing FixedList.
void swap (FixedList< point, N > &other)
 Swap lists by swapping the content of the individual list elements.
bool operator== (const FixedList< point, N > &list) const
 Equality operation on FixedLists of the same type.
bool operator!= (const FixedList< point, N > &list) const
 The opposite of the equality operation. Takes linear time.
bool operator< (const FixedList< point, N > &list) const
 Compare two FixedLists lexicographically. Takes linear time.
bool operator> (const FixedList< point, N > &list) const
 Compare two FixedLists lexicographically. Takes linear time.
bool operator<= (const FixedList< point, N > &list) const
 Return true if !(a > b). Takes linear time.
bool operator>= (const FixedList< point, N > &list) const
 Return true if !(a < b). Takes linear time.
IstreamreadList (Istream &is)
 Read from Istream, discarding contents of existing List.
OstreamwriteList (Ostream &os, const label shortLen=0) const
 Write List, with line-breaks in ASCII when length exceeds shortLen.
pointfirst () noexcept
 Access first element of the list, position [0] - front().
pointlast () noexcept
 Access last element of the list, position [N-1] - back().
bool found (const point &val, label pos=0) const
 Same as contains().

Additional Inherited Members

Public Types inherited from FixedList< point, 4 >
typedef point value_type
 The value type the FixedList contains.
typedef pointpointer
 The pointer type for non-const access to value_type items.
typedef const pointconst_pointer
 The pointer type for const access to value_type items.
typedef pointreference
 The type used for storing into value_type objects.
typedef const pointconst_reference
 The type used for reading from constant value_type objects.
typedef pointiterator
 Random access iterator for traversing FixedList.
typedef const pointconst_iterator
 Random access iterator for traversing FixedList.
typedef label size_type
 The type to represent the size of a FixedList.
typedef label difference_type
 The difference between iterator objects.
typedef std::reverse_iterator< iteratorreverse_iterator
 Reverse iterator (non-const access).
typedef std::reverse_iterator< const_iteratorconst_reverse_iterator
 Reverse iterator (const access).
Static Public Member Functions inherited from FixedList< point, 4 >
static const FixedList< point, N > & null () noexcept
 Return a null FixedList (reference to a nullObject). Read/write access is questionable.
static std::streamsize size_bytes () noexcept
 Number of contiguous bytes for the list data,.
static std::streamsize byteSize ()
 Number of contiguous bytes for the list data, runtime FatalError if type is not contiguous.
static constexpr bool empty () noexcept
 Always false since zero-sized FixedList is compile-time disabled.
static constexpr label size () noexcept
 Return the number of elements in the FixedList.
static constexpr unsigned max_size () noexcept
 The dimensioned size (template parameter N) of the FixedList.
Protected Member Functions inherited from FixedList< point, 4 >
void writeEntry (Ostream &os) const
 Write the FixedList with its compound type.

Detailed Description

Tet point storage. Default constructable (tetrahedron is not).

Definition at line 82 of file tetrahedron.H.

Constructor & Destructor Documentation

◆ tetPoints() [1/5]

tetPoints ( )
default

Default construct.

◆ tetPoints() [2/5]

tetPoints ( const point & p0,
const point & p1,
const point & p2,
const point & p3 )
inline

Construct from four points.

Definition at line 28 of file tetrahedronI.H.

References a(), b(), c(), d(), and p0.

Here is the call graph for this function:

◆ tetPoints() [3/5]

tetPoints ( const tetPointRef & pts)
inlineexplicit

Construct from point references.

Definition at line 43 of file tetrahedronI.H.

References a(), b, c(), d(), and pts.

Here is the call graph for this function:

◆ tetPoints() [4/5]

tetPoints ( const FixedList< point, 4 > & pts)
inline

Construct from four points.

Definition at line 52 of file tetrahedronI.H.

References FixedList< point, 4 >::FixedList(), and pts.

Here is the call graph for this function:

◆ tetPoints() [5/5]

tetPoints ( const UList< point > & points,
const FixedList< label, 4 > & indices )
inline

Copy construct from subset of points.

Definition at line 58 of file tetrahedronI.H.

References FixedList< point, 4 >::FixedList(), and points.

Here is the call graph for this function:

Member Function Documentation

◆ front()

void front ( )
delete

The front() accessor (from FixedList) has no purpose.

◆ back()

void back ( )
delete

The back() accessor (from FixedList) has no purpose.

References FixedList< point, 4 >::FixedList(), p0, points, and pts.

Here is the call graph for this function:

◆ a() [1/2]

const point & a ( ) const
inlinenoexcept

The first vertex.

Definition at line 144 of file tetrahedron.H.

References FixedList< point, 4 >::get(), and Foam::noexcept.

Referenced by box(), tet(), tetPoints(), and tetPoints().

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

◆ b() [1/2]

const point & b ( ) const
inlinenoexcept

The second vertex.

Definition at line 149 of file tetrahedron.H.

References FixedList< point, 4 >::get(), and Foam::noexcept.

Referenced by tetPoints().

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

◆ c() [1/2]

const point & c ( ) const
inlinenoexcept

The third vertex.

Definition at line 154 of file tetrahedron.H.

References FixedList< point, 4 >::get(), and Foam::noexcept.

Referenced by box(), flip(), tet(), tetPoints(), and tetPoints().

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

◆ d() [1/2]

const point & d ( ) const
inlinenoexcept

The fourth vertex.

Definition at line 159 of file tetrahedron.H.

References FixedList< point, 4 >::get(), and Foam::noexcept.

Referenced by box(), flip(), tet(), tetPoints(), and tetPoints().

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

◆ a() [2/2]

point & a ( )
inlinenoexcept

The first vertex.

Definition at line 164 of file tetrahedron.H.

References FixedList< point, 4 >::get(), and Foam::noexcept.

Here is the call graph for this function:

◆ b() [2/2]

point & b ( )
inlinenoexcept

The second vertex.

Definition at line 169 of file tetrahedron.H.

References FixedList< point, 4 >::get(), and Foam::noexcept.

Here is the call graph for this function:

◆ c() [2/2]

point & c ( )
inlinenoexcept

The third vertex.

Definition at line 174 of file tetrahedron.H.

References FixedList< point, 4 >::get(), and Foam::noexcept.

Here is the call graph for this function:

◆ d() [2/2]

point & d ( )
inlinenoexcept

The fourth vertex.

Definition at line 179 of file tetrahedron.H.

References FixedList< point, 4 >::get(), and Foam::noexcept.

Here is the call graph for this function:

◆ tet()

Foam::tetPointRef tet ( ) const
inline

Return as tetrahedron reference.

Definition at line 120 of file tetrahedronI.H.

References a(), b, c(), and d().

Here is the call graph for this function:

◆ flip()

void flip ( )
inline

Invert tetrahedron by swapping third and fourth vertices.

Definition at line 126 of file tetrahedronI.H.

References c(), and d().

Here is the call graph for this function:

◆ box()

Foam::Pair< Foam::point > box ( ) const
inline

The enclosing (bounding) box for the tetrahedron.

Definition at line 161 of file tetrahedronI.H.

References a(), b, tetrahedron< point, const point & >::box(), c(), and d().

Referenced by bounds().

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

◆ bounds()

Foam::treeBoundBox bounds ( ) const
inline

The bounding box for the tetrahedron.

Definition at line 174 of file tetrahedronI.H.

References box().

Here is the call graph for this function:

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