Class Overview
PointF holds two float coordinates
Summary
Fields |
public
float |
x |
|
public
float |
y |
|
Public Methods |
final
boolean
|
equals(float x, float y)
Returns true if the point's coordinates equal (x,y)
|
final
float
|
length()
Return the euclidian distance from (0,0) to the point
|
static
float
|
length(float x, float y)
Returns the euclidian distance from (0,0) to (x,y)
|
final
void
|
negate()
|
final
void
|
offset(float dx, float dy)
|
final
void
|
set(float x, float y)
Set the point's x and y coordinates
|
final
void
|
set(PointF p)
Set the point's x and y coordinates to the coordinates of p
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Called before the object's memory is reclaimed by the VM.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
Fields
Public Constructors
public
PointF
(float x, float y)
Public Methods
public
final
boolean
equals
(float x, float y)
Returns true if the point's coordinates equal (x,y)
public
final
float
length
()
Return the euclidian distance from (0,0) to the point
public
static
float
length
(float x, float y)
Returns the euclidian distance from (0,0) to (x,y)
public
final
void
negate
()
public
final
void
offset
(float dx, float dy)
public
final
void
set
(float x, float y)
Set the point's x and y coordinates
public
final
void
set
(PointF p)
Set the point's x and y coordinates to the coordinates of p