Class EllipseLineDataProvider
Creates an elliptical line shape.
Inheritance
EllipseLineDataProvider
Assembly: cs.temp.dll.dll
public class EllipseLineDataProvider : BaseMixedRealityLineDataProvider
Properties
The number of points this line has.
Declaration
public override int PointCount { get; }
Property Value
Overrides
Declaration
public Vector2 Radius { get; set; }
Property Value
Declaration
public int Resolution { get; set; }
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
Declaration
protected override void SetPointInternal(int pointIndex, Vector3 point)
Parameters
Type |
Name |
Description |
Int32 |
pointIndex |
|
Vector3 |
point |
|
Overrides