Struct XRReferencePoint
Describes session relative data for a reference point.
Syntax
public struct XRReferencePoint : ITrackable, IEquatable<XRReferencePoint>
Constructors
XRReferencePoint(TrackableId, Pose, TrackingState, IntPtr)
Constructs the session relative data for reference point.
This is typically provided by an implementation of the XRReferencePointSubsystem
and not invoked directly.
Declaration
public XRReferencePoint(TrackableId trackableId, Pose pose, TrackingState trackingState, IntPtr nativePtr)
Parameters
| Type |
Name |
Description |
| TrackableId |
trackableId |
The TrackableId associated with this reference point.
|
| Pose |
pose |
The Pose, in session space, of the reference point.
|
| TrackingState |
trackingState |
The TrackingState of the reference point.
|
| System.IntPtr |
nativePtr |
A native pointer associated with the reference point. The data pointed to by
this pointer is implementation-specific.
|
Properties
nativePtr
A native pointer associated with the reference point.
The data pointed to by this pointer is implementation-specific.
Declaration
public IntPtr nativePtr { get; }
Property Value
| Type |
Description |
| System.IntPtr |
|
pose
Get the Pose, in session space, for this reference point.
Declaration
public Pose pose { get; }
Property Value
Implements
trackableId
Get the TrackableId associated with this reference point.
Declaration
public TrackableId trackableId { get; }
Property Value
Implements
trackingState
Declaration
public TrackingState trackingState { get; }
Property Value
Implements
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
| Type |
Name |
Description |
| System.Object |
obj |
|
Returns
| Type |
Description |
| System.Boolean |
|
Overrides
System.ValueType.Equals(System.Object)
Equals(XRReferencePoint)
Declaration
public bool Equals(XRReferencePoint other)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
GetDefault()
Gets a default-initialized XRReferencePoint. This may be
different from the zero-initialized version, e.g., the pose
is Pose.identity instead of zero-initialized.
Declaration
public static XRReferencePoint GetDefault()
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
| Type |
Description |
| System.Int32 |
|
Overrides
System.ValueType.GetHashCode()
Operators
Equality(XRReferencePoint, XRReferencePoint)
Declaration
public static bool operator ==(XRReferencePoint lhs, XRReferencePoint rhs)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
Inequality(XRReferencePoint, XRReferencePoint)
Declaration
public static bool operator !=(XRReferencePoint lhs, XRReferencePoint rhs)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
See Also