Hi,
My return method just return 0.0f am I putting the code input wrong my data List is definately full because I tested this
My return method just return 0.0f am I putting the code input wrong my data List is definately full because I tested this
public float getData()
{
float coordinates = 0.0f;
for( int i = 0; i < data.size(); i++ )
{
coordinates = data.get( i );
}
return coordinates;
}