public class Point3f
{ float x, y, z;

  Point3f(float x, float y, float z)
  { this.x = x;
    this.y = y;
    this.z = z;
  }

}
