Point

class Point(val delegate: Point) extends Light with PositionDelegate[Point] with SFXDelegate[Point]
Companion
object
trait PositionDelegate[Point]
class Light
trait ColorDelegate[Light]
trait SFXDelegate[Point]
class Object
trait Matchable
class Any
class Spot

Value members

Constructors

def this(x: Double, y: Double, z: Double, color: Color)

Concrete methods

The z coordinate of the light position.

The z coordinate of the light position.

def z_=(v: Double): Unit

Inherited methods

def color: ObjectProperty[Color]

The Effect's color.

The Effect's color.

Inherited from
ColorDelegate
def color_=(c: Color): Unit
Inherited from
ColorDelegate
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
override def toString: String
Returns

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

Definition Classes
Inherited from
SFXDelegate

X Position

X Position

Inherited from
PositionDelegate
def x_=(v: Double): Unit
Inherited from
PositionDelegate

Y Position

Y Position

Inherited from
PositionDelegate
def y_=(v: Double): Unit
Inherited from
PositionDelegate

Concrete fields

override val delegate: Point