Isis 3 Programmer Reference
BulletClosestRayCallback.h
1#ifndef BulletClosestRayCallback_h
2#define BulletClosestRayCallback_h
8/* SPDX-License-Identifier: CC0-1.0 */
9
10#include <QScopedPointer>
11#include <QString>
12#include <QVector>
13
14#include "Constants.h"
15#include "IException.h"
16#include "IsisBullet.h"
17#include "SurfacePoint.h"
18
19namespace Isis {
20
21class BulletTargetShape;
22
33 class BulletClosestRayCallback : public btCollisionWorld::ClosestRayResultCallback {
34 public:
36 BulletClosestRayCallback(const BulletClosestRayCallback &result, const btVector3 &point,
37 const btVector3 &normal);
38 BulletClosestRayCallback(const btVector3 &observer, const btVector3 &lookdir);
39 BulletClosestRayCallback(const btVector3 &observer, const btVector3 &lookdir,
40 const btCollisionWorld::RayResultCallback &source,
41 btCollisionWorld::LocalRayResult &rayResult,
42 bool nornmalInWorldSpace);
44
45 bool isValid() const;
46
47 btVector3 observer() const;
48 btVector3 lookdir() const;
49
50 btScalar fraction() const;
51 btVector3 point() const;
52 btVector3 normal() const;
53 int triangleIndex() const;
54 int partId() const;
55
56 btScalar distance() const;
57 btScalar distance(const BulletClosestRayCallback &other) const;
58 btScalar distance(const btVector3 &other) const;
59 bool operator==(const BulletClosestRayCallback &other) const;
60
61 bool isVisible(const BulletClosestRayCallback &other,
62 const btScalar tolerance = DBL_MAX) const;
63
64 const BulletTargetShape *body() const;
65
66 protected:
67 btVector3 m_point;
68 btVector3 m_normal;
74 virtual btScalar addSingleResult(btCollisionWorld::LocalRayResult &rayResult,
75 bool normalInWorldSpace);
76
77 private:
78 unsigned int defaultFlags() const;
79 void copyRayResult(btCollisionWorld::RayResultCallback &dest,
80 const btCollisionWorld::RayResultCallback &source);
81
82 };
83
84} // namespace Isis
85
86#endif
87
Bullet ray tracing callback for closest hit on target surface.
void copyRayResult(btCollisionWorld::RayResultCallback &dest, const btCollisionWorld::RayResultCallback &source)
Easy way to copy one callback into another.
btScalar fraction() const
Return the intersection hit fraction or fractional distance along the ray of the intersection.
btScalar distance() const
Returns the distance from the intersection point to the beginning of the ray.
btVector3 m_normal
! The intersection point in body fixed (x, y, z) kilometers.
btVector3 lookdir() const
Return the end of the ray.
int m_partId
! The 0-based index of the intersected triangle.
bool isValid() const
Checks if the callback is valid/has a valid intersection.
virtual ~BulletClosestRayCallback()
Destory a callback.
int triangleIndex() const
Return the 0-based index of the intersected triangle.
btVector3 point() const
Return the intersection point, if one exists.
bool operator==(const BulletClosestRayCallback &other) const
Equality operator to check if this callback is equivalent to another callback.
unsigned int defaultFlags() const
Return the default ray cast flags.
bool isVisible(const BulletClosestRayCallback &other, const btScalar tolerance=DBL_MAX) const
Check if the intersection in this is visible based on another callback.
btVector3 normal() const
Return the local surface normal at the intersection, if an intersection exists.
int partId() const
Return the Bullet ID of the intersected collision object.
virtual btScalar addSingleResult(btCollisionWorld::LocalRayResult &rayResult, bool normalInWorldSpace)
! The Bullet ID of the intersected collision object.
const BulletTargetShape * body() const
@breif Return pointer to target shape
int m_triangleIndex
! The local surface normal at the intersection point in body fixed (x, y, z).
btVector3 observer() const
Return the beginning of the ray.
Bullet Target Shape for planetary bodies.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16