![]() |
Isis 3 Programmer Reference
|
Struct for capturing multiple intersections when using embree::rtcintersectscene. More...
#include <EmbreeTargetShape.h>


Public Member Functions | |
| RTCMultiHitRay () | |
| Default constructor for RTCMultiHitRay. | |
| RTCMultiHitRay (const std::vector< double > &origin, const std::vector< double > &direction) | |
| Constructor for RTCMultiHitRay given a ray origin and look direction. | |
| RTCMultiHitRay (LinearAlgebra::Vector origin, LinearAlgebra::Vector direction) | |
| Constructor for RTCMultiHitRay given a ray origin and look direction as ISIS linear algebra vectors. | |
Public Attributes | |
| unsigned | hitGeomIDs [16] |
| IDs of the geometries (bodies) hit. | |
| unsigned | hitPrimIDs [16] |
| IDs of the primitives (trinagles) hit. | |
| float | hitUs [16] |
| Barycentric u coordinate of the hits. | |
| float | hitVs [16] |
| Barycentric v coordinate of the hits. | |
| int | lastHit |
| Index of the last hit in the hit containers. | |
Struct for capturing multiple intersections when using embree::rtcintersectscene.
Definition at line 44 of file EmbreeTargetShape.h.
| Isis::RTCMultiHitRay::RTCMultiHitRay | ( | ) |
Default constructor for RTCMultiHitRay.
Definition at line 28 of file EmbreeTargetShape.cpp.
References lastHit.
| Isis::RTCMultiHitRay::RTCMultiHitRay | ( | const std::vector< double > & | origin, |
| const std::vector< double > & | direction ) |
Constructor for RTCMultiHitRay given a ray origin and look direction.
| origin | The body-fixed (x, y, z) origin of the ray in kilometers. |
| direction | The unit look direction vector in body-fixed (x, y, z). |
Definition at line 56 of file EmbreeTargetShape.cpp.
References lastHit.
| Isis::RTCMultiHitRay::RTCMultiHitRay | ( | LinearAlgebra::Vector | origin, |
| LinearAlgebra::Vector | direction ) |
Constructor for RTCMultiHitRay given a ray origin and look direction as ISIS linear algebra vectors.
| origin | The body-fixed (x, y, z) origin of the ray in kilometers. |
| direction | The unit look direction vector in body-fixed (x, y, z). |
Definition at line 86 of file EmbreeTargetShape.cpp.
References lastHit.
| unsigned Isis::RTCMultiHitRay::hitGeomIDs[16] |
IDs of the geometries (bodies) hit.
Definition at line 67 of file EmbreeTargetShape.h.
| unsigned Isis::RTCMultiHitRay::hitPrimIDs[16] |
IDs of the primitives (trinagles) hit.
Definition at line 68 of file EmbreeTargetShape.h.
| float Isis::RTCMultiHitRay::hitUs[16] |
Barycentric u coordinate of the hits.
Definition at line 69 of file EmbreeTargetShape.h.
| float Isis::RTCMultiHitRay::hitVs[16] |
Barycentric v coordinate of the hits.
Definition at line 70 of file EmbreeTargetShape.h.
| int Isis::RTCMultiHitRay::lastHit |
Index of the last hit in the hit containers.
Definition at line 71 of file EmbreeTargetShape.h.
Referenced by Isis::EmbreeShapeModel::pointToRay(), RTCMultiHitRay(), RTCMultiHitRay(), and RTCMultiHitRay().