Object

scalafx.animation

Interpolator

Related Doc: package animation

Permalink

object Interpolator

Wraps a Interpolator. Really no point wrapping the JavaFX Interpolator class, so this just exposes the statics.

Source
Interpolator.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Interpolator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def Discrete: Interpolator

    Permalink

    Built-in Interpolator that provides discrete time interpolation.

  5. def EaseBoth: Interpolator

    Permalink

    Built-in Interpolator instance that provides ease in/out behavior.

  6. def EaseIn: Interpolator

    Permalink

    Built-in Interpolator instance that provides ease in behavior.

  7. def EaseOut: Interpolator

    Permalink

    Built-in Interpolator instance that provides ease out behavior.

  8. def Linear: Interpolator

    Permalink

    Built-in Interpolator that provides linear time interpolation.

  9. def Spline(x1: Double, y1: Double, x2: Double, y2: Double): Interpolator

    Permalink

    Creates an Interpolator, which curve() is shaped using the spline control points defined by (x1, y1) and (x2, y2).

    Creates an Interpolator, which curve() is shaped using the spline control points defined by (x1, y1) and (x2, y2).

    x1

    x coordinate of the first control point

    y1

    y coordinate of the first control point

    x2

    x coordinate of the second control point

    y2

    y coordinate of the second control point

    returns

    A spline interpolator

  10. def Tangent(t1: Duration, v1: Double, t2: Duration, v2: Double): Interpolator

    Permalink

    Create a tangent Interpolator.

    Create a tangent Interpolator.

    t1

    The delta time of the in-tangent

    v1

    The value of the in-tangent

    t2

    The delta time of the out-tangent

    v2

    The value of the out-tangent

    returns

    the new tangent interpolator

  11. def Tangent(t: Duration, v: Double): Interpolator

    Permalink

    Creates a tangent Interpolator, for which in-tangent and out-tangent are identical.

    Creates a tangent Interpolator, for which in-tangent and out-tangent are identical.

    t

    The delta time of the tangent

    v

    The value of the tangent

    returns

    the new Tangent interpolator

  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def DISCRETE: Interpolator

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use Discrete; DISCRETE will be removed in a future release

  2. def EASE_BOTH: Interpolator

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use EaseBoth; EASE_BOTH will be removed in a future release

  3. def EASE_IN: Interpolator

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use EaseIn; EASE_IN will be removed in a future release

  4. def EASE_OUT: Interpolator

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use EaseOut; EASE_OUT will be removed in a future release

  5. def LINEAR: Interpolator

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use Linear; LINEAR will be removed in a future release

  6. def SPLINE(x1: Double, y1: Double, x2: Double, y2: Double): Interpolator

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use Spline; SPLINE will be removed in a future release

  7. def TANGENT(t1: Duration, v1: Double, t2: Duration, v2: Double): Interpolator

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use Tangent; TANGENT will be removed in a future release

  8. def TANGENT(t: Duration, v: Double): Interpolator

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use Tangent; TANGENT will be removed in a future release

Inherited from AnyRef

Inherited from Any

Ungrouped