Continuity

Description

enum Tinman.Terrain.Util.Continuity

Enumeration of continuity types for ICurves.

Public / Constants

Position

public constant Position → (0:int32)

The curve provides C0 continuity, i.e. it is steady in respect to position.

When moving along a curve with Position continuity, position will update smoothly, but velocity and acceleration may change abruptly.

Tangent

public constant Tangent → (1:int32)

The curve provides C1 continuity, i.e. it is steady in respect to tangents.

When moving along a curve with Tangent continuity, position and velocity update smoothly, but acceleration may change abruptly.

Curvature

public constant Curvature → (2:int32)

The curve provides C2 continuity, i.e. it is steady in respect to curvature.

When moving along a curve with Tangent continuity, position, velocity and acceleration update smoothly.