Class SplineFactory
Methods to create spline shapes.
Inherited Members
Namespace: UnityEngine.Splines
Syntax
public static class SplineFactory
Methods
CreateCatmullRom(IList<float3>, Boolean)
Create a Spline from a list of positions and place tangents to create Catmull Rom curves.
Declaration
public static Spline CreateCatmullRom(IList<float3> positions, bool closed = false)
Parameters
Type | Name | Description |
---|---|---|
IList<float3> | positions | A collection of knot positions. |
Boolean | closed | Whether the spline is open (has a start and end point) or closed (forms an unbroken loop). |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
CreateCircle(Single)
Creates a Spline in the shape of a circle.
Declaration
public static Spline CreateCircle(float radius)
Parameters
Type | Name | Description |
---|---|---|
Single | radius | The radius of the circle. |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
CreateHelix(Single, Single, Int32)
Creates a Spline in the shape of a helix with a single revolution.
Declaration
public static Spline CreateHelix(float radius, float height, int revolutions)
Parameters
Type | Name | Description |
---|---|---|
Single | radius | The distance from the center to the helix's curve. |
Single | height | The height of the helix shape. |
Int32 | revolutions | The number of revolutions the helix should have. |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
CreateLinear(IList<float3>, Boolean)
Create a Spline from a list of positions.
Declaration
public static Spline CreateLinear(IList<float3> positions, bool closed = false)
Parameters
Type | Name | Description |
---|---|---|
IList<float3> | positions | A collection of knot positions. |
Boolean | closed | Whether the spline is open (has a start and end point) or closed (forms an unbroken loop). |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
CreateLinear(IList<float3>, IList<quaternion>, Boolean)
Create a Spline from a list of positions.
Declaration
public static Spline CreateLinear(IList<float3> positions, IList<quaternion> rotations, bool closed = false)
Parameters
Type | Name | Description |
---|---|---|
IList<float3> | positions | A collection of knot positions. |
IList<quaternion> | rotations | A collection of knot rotations. Must be equal in length to the positions array. |
Boolean | closed | Whether the spline is open (has a start and end point) or closed (forms an unbroken loop). |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
CreatePolygon(Single, Int32)
Creates a Spline in the shape of a polygon with a specific number of sides.
Declaration
public static Spline CreatePolygon(float edgeSize, int sides)
Parameters
Type | Name | Description |
---|---|---|
Single | edgeSize | The size of the polygon's edges. |
Int32 | sides | The amount of sides the polygon has. |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
CreateRoundedCornerSquare(Single, Single)
Creates a Spline in the shape of a square with circular arcs at its corners.
Declaration
public static Spline CreateRoundedCornerSquare(float size, float cornerRadius)
Parameters
Type | Name | Description |
---|---|---|
Single | size | The size of the square's edges. |
Single | cornerRadius | The radius of the circular arcs at the corners of the shape.
A value of 0 creates a square with no rounding. A value that is half of |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
Remarks
The range for cornerRadius
is 0 and half of size
.
CreateRoundedSquare(Single, Single)
Create a Spline in a square shape with rounding at the edges.
Declaration
public static Spline CreateRoundedSquare(float radius, float rounding)
Parameters
Type | Name | Description |
---|---|---|
Single | radius | The distance from center to outermost edge. |
Single | rounding | The amount of rounding to apply to corners. |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
CreateSquare(Single)
Creates a Spline in the shape of a square with sharp corners.
Declaration
public static Spline CreateSquare(float size)
Parameters
Type | Name | Description |
---|---|---|
Single | size | The size of the square's edges. |
Returns
Type | Description |
---|---|
Spline | A new Spline. |
CreateStarPolygon(Single, Int32, Single)
Creates a Spline in in the shape of a star with a specified number of corners.
Declaration
public static Spline CreateStarPolygon(float edgeSize, int corners, float concavity)
Parameters
Type | Name | Description |
---|---|---|
Single | edgeSize | The distance between the corners of the star. |
Int32 | corners | The amount of corners the star has. |
Single | concavity | The sharpness of the corners. The range is 0 through 1. |
Returns
Type | Description |
---|---|
Spline | A new Spline. |