|
| SbSpherePlaneProjector (float edgeTol=0.9, bool orientToEye=TRUE) |
| Default constructor.
|
|
| SbSpherePlaneProjector (const SbSphere &sph, float edgeTol=0.9, bool orientToEye=TRUE) |
| Constructor taking the sphere.
|
|
| ~SbSpherePlaneProjector () |
| Destructor.
|
|
virtual SbProjector * | copy () const |
| Returns an instance that is a copy of this instance.
|
|
virtual SbVec3f | project (const SbVec2f &point) |
| Apply the projector using the given point, returning the point in three dimensions that it projects to.
|
|
virtual SbRotation | getRotation (const SbVec3f &point1, const SbVec3f &point2) |
| Computes a rotation based on two points on this projector.
|
|
| SbSphereSectionProjector (float edgeTol=.9, bool orientToEye=TRUE) |
| Default constructor.
|
|
| SbSphereSectionProjector (const SbSphere &sph, float edgeTol=.9, bool orientToEye=TRUE) |
| Constructor taking the sphere.
|
|
| ~SbSphereSectionProjector () |
| Destructor.
|
|
virtual SbProjector * | copy () const |
| Returns an instance that is a copy of this instance.
|
|
virtual SbVec3f | project (const SbVec2f &point) |
| Apply the projector using the given point, returning the point in three dimensions that it projects to.
|
|
virtual SbRotation | getRotation (const SbVec3f &point1, const SbVec3f &point2) |
| Computes a rotation based on two points on this projector.
|
|
void | setTolerance (float edgeTol) |
|
float | getTolerance () const |
| Set and get the edge tolerance as a fraction of the radius of the sphere.
|
|
void | setRadialFactor (float rad=0.0) |
|
float | getRadialFactor () const |
| Set and get the radial rotation factor.
|
|
bool | isWithinTolerance (const SbVec3f &point) |
| Find whether this point on the sphere or tolerance plane is within tolerance.
|
|
virtual SbVec3f | project (const SbVec2f &point)=0 |
| Apply the projector using the given point, returning the point in three dimensions that it projects to.
|
|
SbVec3f | projectAndGetRotation (const SbVec2f &point, SbRotation &rot) |
| Apply the projector using the given point, returning the point in three dimensions that it projects to.
|
|
virtual SbRotation | getRotation (const SbVec3f &point1, const SbVec3f &point2)=0 |
| Get a rotation given two points on this sphere projector.
|
|
void | setSphere (const SbSphere &sph) |
| Set and get the sphere on which to project points.
|
|
const SbSphere & | getSphere () const |
| Set and get the sphere on which to project points.
|
|
void | setOrientToEye (bool orientToEye) |
| Set and get whether the projector should always be oriented towards the eye.
|
|
bool | isOrientToEye () const |
| Set and get whether the projector should always be oriented towards the eye.
|
|
void | setFront (bool inFront) |
| Set whether the projector should intersect the half of the sphere that faces the eye.
|
|
bool | isFront () const |
| Get whether the projector should intersect the half of the sphere that faces the eye.
|
|
bool | isPointInFront (const SbVec3f &point) const |
| Get whether the projector should intersect the half of the sphere that faces the eye.
|
|
virtual void | setWorkingSpace (const SbMatrix &space) |
| Set the transform space to work in.
|
|
| ~SbSphereProjector () |
| Destructor.
|
|
virtual SbVec3f | project (const SbVec2f &point)=0 |
| Apply the projector using the given point, returning the point in three dimensions that it projects to.
|
|
virtual void | setViewVolume (const SbViewVolume &vol) |
| Set the view volume to use for the projection.
|
|
const SbViewVolume & | getViewVolume () const |
| Get the view volume to use for the projection.
|
|
virtual void | setWorkingSpace (const SbMatrix &space) |
| Set the transform space to work in.
|
|
const SbMatrix & | getWorkingSpace () const |
| Get the transform space to work in.
|
|
virtual SbProjector * | copy () const =0 |
| Creates and returns an exact copy of the projector.
|
|
SbSpherePlaneProjector projects a window space point (usually based on the mouse location) onto a surface defined by a sphere and plane cutting through the sphere. Two projected points can produce a rotation about the sphere's center. When the mouse position projects onto the plane, the rotations will be as if the plane is being dragged, causing the sphere to roll beneath it.
Incremental changes (delta rotation) can be computed during interactive sessions. Sphere projectors are typically used to write interactive 3D manipulators and viewers.
- See Also
- SbCylinderProjector, SbCylinderPlaneProjector, SbCylinderSectionProjector, SbCylinderSheetProjector, SbLineProjector, SbPlaneProjector, SbSphereSheetProjector
Definition at line 92 of file SbSpherePlaneProjector.h.