Vector3? | Position[Get] Position in tracking space of the anchor. |
Quaternion? | Rotation[Get] Rotation in tracking space of the Anchor. |
bool | IsPositionTracked[Get] Indicates whether or not the position is currently tracked. |
bool | IsRotationTracked[Get] Indicates whether or not the rotation is currently tracked. |
Vector3? | ComputeWorldPosition ( Camera camera ) Computes the world space position of the anchor. |
Quaternion? | ComputeWorldRotation ( Camera camera ) Computes the world space rotation of the anchor. |
Vector3? | ComputeWorldPosition ( Transform trackingSpaceToWorldSpaceTransform ) Returns world-space position of the anchor. |
Quaternion? | ComputeWorldRotation ( Transform trackingSpaceToWorldSpaceTransform ) Returns world-space rotation of the anchor. |
Vector3? OVRLocatable.TrackingSpacePose.Position |
---|
Position in tracking space of the anchor. Null if and when the position is invalid See Also: Rotation, ComputeWorldPosition, ComputeWorldRotation |
Quaternion? OVRLocatable.TrackingSpacePose.Rotation |
---|
Rotation in tracking space of the Anchor. Null if and when the rotation is invalid See Also: Position, ComputeWorldPosition, ComputeWorldRotation |
bool OVRLocatable.TrackingSpacePose.IsPositionTracked |
---|
Indicates whether or not the position is currently tracked. |
bool OVRLocatable.TrackingSpacePose.IsRotationTracked |
---|
Indicates whether or not the rotation is currently tracked. |
Vector3? OVRLocatable.TrackingSpacePose.ComputeWorldPosition ( Camera camera ) |
---|
Computes the world space position of the anchor. Parameters camera A Camera component that will be use to compute the transform to world space Returns The nullable Vector3 position in world space which may be null if and when Position is invalid or head pose is invalid. See Also: Position, Rotation, ComputeWorldRotation Exceptions ArgumentNullException If camera is null |
Quaternion? OVRLocatable.TrackingSpacePose.ComputeWorldRotation ( Camera camera ) |
---|
Computes the world space rotation of the anchor. Parameters camera A Camera component that will be use to compute the transform to world space Returns The nullable Quaternion rotation in world space which may be null if and when Rotation is invalid or if head rotation is invalid. See Also: Position, Rotation, ComputeWorldPosition Exceptions ArgumentNullException If camera is null |
Vector3? OVRLocatable.TrackingSpacePose.ComputeWorldPosition ( Transform trackingSpaceToWorldSpaceTransform ) |
---|
Returns world-space position of the anchor. Parameters trackingSpaceToWorldSpaceTransform Uses this transform to convert position from tracking-space to world-space. |
Quaternion? OVRLocatable.TrackingSpacePose.ComputeWorldRotation ( Transform trackingSpaceToWorldSpaceTransform ) |
---|
Returns world-space rotation of the anchor. Parameters trackingSpaceToWorldSpaceTransform Uses this transform to convert rotation from tracking-space to world-space. |