Class SoInterpolateVec2f

All Implemented Interfaces:
SafeDisposable

public class SoInterpolateVec2f extends SoInterpolate
Interpolates 2D floating-point vectors. This engine linearly interpolates between two 2D vectors, based on the alpha input value. The alpha value should be between 0.0 and 1.0.

The input fields can have multiple vectors, allowing the engine to interpolate several objects in parallel. One of the inputs may have more values than the other. In that case, the last value of the shorter input will be repeated as necessary.

File format/default:

InterpolateVec2f {

    alpha 0
    input0 0 0
    input1 0 0
}

See Also:
  • Field Details

    • input0

      public final SoMFVec2f input0
      The engine linearly interpolates from input0 to input1.
    • input1

      public final SoMFVec2f input1
      The engine linearly interpolates from input0 to input1.
  • Constructor Details

    • SoInterpolateVec2f

      public SoInterpolateVec2f()
      Constructor.