/**@class android.graphics.PointF
 implements android.os.Parcelable

@extends java.lang.Object

 PointF holds two float coordinates
*/
var PointF = {

/***/
x : "null",
/***/
y : "null",
/***/
CREATOR : "null",
/**Set the point's x and y coordinates
*/
set : function(  ) {},

/**Set the point's x and y coordinates to the coordinates of p
*/
set : function(  ) {},

/**
*/
negate : function(  ) {},

/**
*/
offset : function(  ) {},

/**Returns true if the point's coordinates equal (x,y)
*/
equals : function(  ) {},

/**
*/
equals : function(  ) {},

/**
*/
hashCode : function(  ) {},

/**
*/
toString : function(  ) {},

/**Return the euclidian distance from (0,0) to the point
*/
length : function(  ) {},

/**Returns the euclidian distance from (0,0) to (x,y)
*/
length : function(  ) {},

/**Parcelable interface methods
*/
describeContents : function(  ) {},

/**Write this point to the specified parcel. To restore a point from
 a parcel, use readFromParcel()
@param {Object {Parcel}} out The parcel to write the point's coordinates into
*/
writeToParcel : function(  ) {},

/**Set the point's coordinates from the data stored in the specified
 parcel. To write a point to a parcel, call writeToParcel().
@param {Object {Parcel}} in The parcel to read the point's coordinates from
*/
readFromParcel : function(  ) {},


};