Rotate

class Rotate(val delegate: Rotate) extends Transform with SFXDelegate[Rotate]
class Transform
trait SFXDelegate[Rotate]
class Object
trait Matchable
class Any

Value members

Constructors

def this(angle: Double)

Creates a two-dimensional Rotate transform.

Creates a two-dimensional Rotate transform.

def this(angle: Double, pivotX: Double, pivotY: Double)

Creates a two-dimensional Rotate transform with pivot.

Creates a two-dimensional Rotate transform with pivot.

def this(angle: Double, pivotX: Double, pivotY: Double, pivotZ: Double)

Creates a simple Rotate transform with three-dimensional pivot.

Creates a simple Rotate transform with three-dimensional pivot.

def this(angle: Double, pivotX: Double, pivotY: Double, pivotZ: Double, axis: Point3D)

Creates a three-dimensional Rotate transform with pivot.

Creates a three-dimensional Rotate transform with pivot.

def this(angle: Double, axis: Point3D)

Creates a three-dimensional Rotate transform.

Creates a three-dimensional Rotate transform.

Concrete methods

Defines the angle of rotation measured in degrees.

Defines the angle of rotation measured in degrees.

def angle_=(v: Double): Unit
def axis: ObjectProperty[Point3D]

Defines the axis of rotation at the pivot point.

Defines the axis of rotation at the pivot point.

def axis_=(v: Point3D): Unit

Defines the X coordinate of the rotation pivot point.

Defines the X coordinate of the rotation pivot point.

def pivotX_=(v: Double): Unit

Defines the Y coordinate of the rotation pivot point.

Defines the Y coordinate of the rotation pivot point.

def pivotY_=(v: Double): Unit

Defines the Z coordinate of the rotation pivot point.

Defines the Z coordinate of the rotation pivot point.

def pivotZ_=(v: Double): Unit

Inherited methods

override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value Params
ref

Object to be compared.

Returns

if the other object is equals to this delegate or not.

Definition Classes
Inherited from
SFXDelegate
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate

Determines if this is currently an identity transform.

Determines if this is currently an identity transform.

Inherited from
Transform
def onTransformChanged: ObjectProperty[EventHandler[_ >: TransformChangedEvent]]

The onTransformChanged event handler is called whenever the transform changes any of its parameters.

The onTransformChanged event handler is called whenever the transform changes any of its parameters.

Inherited from
Transform
def onTransformChanged_=(v: EventHandler[_ >: TransformChangedEvent]): Unit
Inherited from
Transform
override def toString: String
Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
Inherited from
SFXDelegate

Determines if this is currently a 2D transform.

Determines if this is currently a 2D transform.

Inherited from
Transform

Concrete fields

override val delegate: Rotate