MOAB: Mesh Oriented datABase  (version 5.4.1)
moab::GeomQueryTool::RayHistory Class Reference

#include <GeomQueryTool.hpp>

Public Member Functions

void reset ()
void reset_to_last_intersection ()
void rollback_last_intersection ()
ErrorCode get_last_intersection (EntityHandle &last_facet_hit) const
int size () const
bool in_history (EntityHandle ent) const
void add_entity (EntityHandle ent)

Private Attributes

std::vector< EntityHandleprev_facets

Friends

class GeomQueryTool

Detailed Description

Definition at line 61 of file GeomQueryTool.hpp.


Member Function Documentation

Add entity to the RayHistory

Definition at line 733 of file GeomQueryTool.cpp.

{
    prev_facets.push_back( ent );
}

Get the last intersection in the RayHistory. This will return a null EntityHandle (0) if the history is empty.

Definition at line 715 of file GeomQueryTool.cpp.

References MB_ENTITY_NOT_FOUND, and MB_SUCCESS.

{
    if( prev_facets.size() > 0 )
    {
        last_facet_hit = prev_facets.back();
        return MB_SUCCESS;
    }
    else
    {
        return MB_ENTITY_NOT_FOUND;
    }
}
Returns:
Boolean indicating if this entity is in the RayHistory

Definition at line 728 of file GeomQueryTool.cpp.

{
    return std::find( prev_facets.begin(), prev_facets.end(), ent ) != prev_facets.end();
}

Clear this entire history-- logically equivalent to creating a new history, but probably more efficient.

Definition at line 695 of file GeomQueryTool.cpp.

References prev_facets.

Referenced by gqt_outside_face_rayfire_history(), and gqt_outside_face_rayfire_history_fail().

{
    prev_facets.clear();
}

Clear the history up to the most recent intersection. This should be called when a ray changes direction at the site of a surface crossing, a situation that most commonly occurs at a reflecting boundary.

Definition at line 700 of file GeomQueryTool.cpp.

{

    if( prev_facets.size() > 1 )
    {
        prev_facets[0] = prev_facets.back();
        prev_facets.resize( 1 );
    }
}

Remove the most recent intersection. This allows a subsequent call along the same ray to return the same intersection.

Definition at line 710 of file GeomQueryTool.cpp.

{
    if( prev_facets.size() ) prev_facets.pop_back();
}
int moab::GeomQueryTool::RayHistory::size ( ) const [inline]
Returns:
the number of surface crossings currently represented by this ray history

Definition at line 93 of file GeomQueryTool.hpp.

References prev_facets.

Referenced by gqt_outside_face_rayfire_history().

        {
            return prev_facets.size();
        }

Friends And Related Function Documentation

friend class GeomQueryTool [friend]

Definition at line 111 of file GeomQueryTool.hpp.


Member Data Documentation

List of all members.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines