Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HermitSpline

Hermit spline / Catmull–Rom spline to interpolate given set of points

remark

If you want to interpolate structural data, go for (Cg)Spline classes as they work better.

Hierarchy

  • HermitSpline

Index

Constructors

constructor

  • new HermitSpline(pointsToInterpolate: Vector3[], interpolationSubdivisions: number): HermitSpline
  • Creates new spline instance, performing the interpolation immediately when the class is constructed.

    Parameters

    • pointsToInterpolate: Vector3[]

      points to be interpolated

    • interpolationSubdivisions: number

      how many additional interpolated points will be added to each line segment

    Returns HermitSpline

Properties

Private resultingNormals

resultingNormals: Vector3[]

Private resultingPoints

resultingPoints: Vector3[]

Private resultingTangents

resultingTangents: Vector3[]

Accessors

normals

  • get normals(): Vector3[]

points

  • get points(): Vector3[]

tangents

  • get tangents(): Vector3[]

Methods

Private getEndpointTangent

  • getEndpointTangent(pk: Vector3, pkPlusOne: Vector3): Vector3

Private getInteriorTangent

  • getInteriorTangent(prevPoint: Vector3, nextPoint: Vector3): Vector3
  • Returns tangent vector of a line between two points

    Parameters

    • prevPoint: Vector3

      first point of the spline

    • nextPoint: Vector3

      second point of the spline

    Returns Vector3

    tangent vector

Private getNormalForTangent

  • getNormalForTangent(tang: Vector3): Vector3

Private interpolatePoints

  • interpolatePoints(pointsToInterpolate: Vector3[], interpolationSubdivisions: number): void

Private interpolatePositionCubic

  • interpolatePositionCubic(p0: Vector3, t0: Vector3, p1: Vector3, t1: Vector3, t: number): Vector3
  • Performs cubic interpolation of given positions

    Parameters

    • p0: Vector3

      first point

    • t0: Vector3

      tangent for the first point

    • p1: Vector3

      second point

    • t1: Vector3

      tangent for the second point

    • t: number

      interpolation parameter

    Returns Vector3

    interpolated position

Private interpolateTangentCubic

  • interpolateTangentCubic(p0: Vector3, t0: Vector3, p1: Vector3, t1: Vector3, t: number): Vector3
  • Performs cubic interpolation of the given tangents. First derivative of the interpolatePositionCubic function.

    Parameters

    • p0: Vector3

      first point

    • t0: Vector3

      tangent for the first point

    • p1: Vector3

      second point

    • t1: Vector3

      tangent for the second point

    • t: number

      interpolation parameter

    Returns Vector3

    interpolated tangent

Generated using TypeDoc