trait SemiInterpolation[A] extends AnyRef

Semi-interpolation varies a single value over time. It can be seen as an Interpolation with one end fixed (left or right).

Self Type
SemiInterpolation[A]
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SemiInterpolation
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(value: A, t: Double): A

    Produce the value at time t (from 0 to 1)

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. def lens[B](l: Lens[B, A]): SemiInterpolation[B]

    Obtain a semi-interpolation of type B that varies a value of type A “inside” it using the current semi-interpolation

  12. def mapTime(f: (Double) ⇒ Double): SemiInterpolation[A]

    Map the time interval with the given function

    Map the time interval with the given function

    For example, the function (_ * 2) will make the interpolation twice faster, and it will happen in the first half of the full time interval.

  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  16. def optional[B](o: Optional[B, A]): SemiInterpolation[B]

    Obtain a semi-interpolation of type B that varies a value of type A “inside” it using the current semi-interpolation

  17. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  18. def timespan(from: Double, to: Double): SemiInterpolation[A]

    Make the interpolation happen in the given timespan, instead of [0; 1]

    Make the interpolation happen in the given timespan, instead of [0; 1]

    This is essentially a more convenient alternative to mapTime. For example, timespan(0, 1.0/2) is equivalent to mapTime(_ * 2).

  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped