Matrix2d.lerp

Linearly interpolate <code>this</code> and <code>other</code> using the given interpolation factor <code>t</code> and store the result in <code>this</code>. <p> If <code>t</code> is <code>0.0</code> then the result is <code>this</code>. If the interpolation factor is <code>1.0</code> then the result is <code>other</code>.

@param other the other matrix @param t the interpolation factor between 0.0 and 1.0 @return this

  1. Matrix2d lerp(Matrix2d other, double t)
    struct Matrix2d
    lerp
    (,
    double t
    )
  2. Matrix2d lerp(Matrix2d other, double t, Matrix2d dest)

Meta