Class LinearInterpolatorQ


  • public class LinearInterpolatorQ
    extends InterpolatorQ
    Make a linear interpolation between to position

    Given a start \mathbf{s}, end \mathbf{e} and duration d
    the interpolation is implemented as \mathbf{x}(t)=\mathbf{s} + (\mathbf{e}-\mathbf{s})*t/d.

    The template argument given needs to support addition with the "+" operator
    and scaling with a double using the "*" operator.

    For use with a rw::math::Transform3D see the template specialization
    • Constructor Summary

      Constructors 
      Constructor Description
      LinearInterpolatorQ​(long cPtr, boolean cMemoryOwn)  
      LinearInterpolatorQ​(Q start, Q end, double duration)
      Construct LinearInterpolator starting a start and finishing in end
      and taking duration time.

      If duration <= 0 an exception is thrown

    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Q ddx​(double t)
      Conditional comment:

      End of conditional comment.
      void delete()  
      double duration()  
      Q dx​(double t)
      Conditional comment:

      End of conditional comment.
      static long getCPtr​(LinearInterpolatorQ obj)  
      Q getEnd()
      Returns the end position of the interpolator
      Q getStart()
      Returns the start position of the interpolator
      Q x​(double t)
      Conditional comment:

      End of conditional comment.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • LinearInterpolatorQ

        public LinearInterpolatorQ​(long cPtr,
                                   boolean cMemoryOwn)
      • LinearInterpolatorQ

        public LinearInterpolatorQ​(Q start,
                                   Q end,
                                   double duration)
        Construct LinearInterpolator starting a start and finishing in end
        and taking duration time.

        If duration <= 0 an exception is thrown

        Parameters:
        start - [in] Start of interpolator
        end - [in] End of interpolator
        duration - [in] Time it takes to from one end to the other.
    • Method Detail

      • x

        public Q x​(double t)
        Conditional comment:

        End of conditional comment.
        Overrides:
        x in class InterpolatorQ
      • dx

        public Q dx​(double t)
        Conditional comment:

        End of conditional comment.
        Overrides:
        dx in class InterpolatorQ
      • ddx

        public Q ddx​(double t)
        Conditional comment:

        End of conditional comment.
        Overrides:
        ddx in class InterpolatorQ
      • getStart

        public Q getStart()
        Returns the start position of the interpolator
        Returns:
        The start position of the interpolator
      • getEnd

        public Q getEnd()
        Returns the end position of the interpolator
        Returns:
        The end position of the interpolator