1 package com.gradoservice.proj4as
\r
3 public class ProjPoint
\r
9 public function ProjPoint(x:Number,y:Number,z:Number)
\r
16 public function clone():ProjPoint
\r
18 return new ProjPoint(this.x, this.y, this.z);
\r
22 * APIMethod: toString
\r
23 * Return a readable string version of the point
\r
26 * {String} String representation of Proj4js.Point object.
\r
27 * (ex. <i>"x=5,y=42"</i>)
\r
29 public function toString():String
\r
31 return ("x=" + this.x + ",y=" + this.y);
\r
35 * APIMethod: toShortString
\r
36 * Return a short string version of the point.
\r
39 * {String} Shortened String representation of Proj4js.Point object.
\r
40 * (ex. <i>"5, 42"</i>)
\r
42 public function toShortString ():String
\r
44 return (this.x + ", " + this.y);
\r