Class SimpleLineDataProvider
A simple line with two points.
Inheritance
SimpleLineDataProvider
Assembly: cs.temp.dll.dll
public class SimpleLineDataProvider : BaseMixedRealityLineDataProvider
Properties
The point where this line will end.
Declaration
public MixedRealityPose EndPoint { get; set; }
Property Value
The number of points this line has.
Declaration
public override int PointCount { get; }
Property Value
Overrides
The starting point of this line which is always located at the GameObject's transform position
Declaration
public MixedRealityPose StartPoint { get; }
Property Value
Methods
Get a point based on point index
Point index will be pre-clamped
Declaration
protected override Vector3 GetPointInternal(int pointIndex)
Parameters
Type |
Name |
Description |
Int32 |
pointIndex |
|
Returns
Overrides
Get a point based on normalized distance along line
Normalized distance will be pre-clamped
Declaration
protected override Vector3 GetPointInternal(float normalizedDistance)
Parameters
Type |
Name |
Description |
Single |
normalizedDistance |
|
Returns
Overrides
Get the UnClamped world length of the line
Declaration
protected override float GetUnClampedWorldLengthInternal()
Returns
Overrides
Gets the up vector at a normalized length along line (used for rotation)
Declaration
protected override Vector3 GetUpVectorInternal(float normalizedLength)
Parameters
Type |
Name |
Description |
Single |
normalizedLength |
|
Returns
Overrides
Declaration
protected override void SetPointInternal(int pointIndex, Vector3 point)
Parameters
Type |
Name |
Description |
Int32 |
pointIndex |
|
Vector3 |
point |
|
Overrides