public interface MutablePoint


This interface is used refer to Points that can be modified, as a scope to PointTransformer

Summary

Public methods

abstract float

The x coordinate of the Point

abstract float

The y coordinate of the Point

abstract void
setX(float x)

The x coordinate of the Point

abstract void
setY(float y)

The y coordinate of the Point

Public methods

getX

Added in 1.0.0-alpha05
abstract float getX()

The x coordinate of the Point

getY

Added in 1.0.0-alpha05
abstract float getY()

The y coordinate of the Point

setX

Added in 1.0.0-alpha05
abstract void setX(float x)

The x coordinate of the Point

setY

Added in 1.0.0-alpha05
abstract void setY(float y)

The y coordinate of the Point