Ejemplo n.º 1
0
 /**
  * Creates a 3D point with specified X, Y and Z coordinates. In case of Geographic Coordinate
  * Systems, the X coordinate is the longitude and the Y is the latitude.
  *
  * @param x The X coordinate of the new 3D point.
  * @param y The Y coordinate of the new 3D point.
  * @param z The Z coordinate of the new 3D point.
  */
 public Point(double x, double y, double z) {
   m_description = VertexDescriptionDesignerImpl.getDefaultDescriptor2D();
   Point3D pt = new Point3D();
   pt.setCoords(x, y, z);
   setXYZ(pt);
 }