예제 #1
0
파일: Point.php 프로젝트: brick/geo
 /**
  * Creates an empty Point with XYZ dimensionality.
  *
  * @param integer $srid An optional SRID.
  *
  * @return Point
  */
 public static function xyzEmpty($srid = 0)
 {
     return new Point(CoordinateSystem::xyz($srid));
 }