IdPt2D Class Function Manual |
Purpose
To report the current value of ID of the point object.
Class
IdPt2D
Usage
{int} ret = object.ID()
Example:
->pt = IdPt2D() ->pt.init(1,100,200,3.5) ->print pt 1 ( 100.000 , 200.000) 3.500 ->pt.id() |
See also (class function)
x, y, sd
Purpose
To initialize a Pt2D point object.
Class
IdPt2D
Usage
{void} object.INIT({int} argm1,{double} argm2,{double} argm3,{double} argm4)
argm1 = ID number
argm2 = x coordinate
argm3 = y coordinate
argm4 = standard deviation
Example:
->pt = IdPt2D() ->pt.init(1,100,200,3.5) ->print pt 1 ( 100.000 ,
200.000) 3.500 |
See also (class function)
x, y
Purpose
To convert to a Matrix object.
Class
IdPt2D
Usage
{Matrix} ret = object.MATRIX()
Example:
->pt.init(1,100,200,3.5) ->print pt 1 ( 100.000 , 200.000) 3.500 ->M = pt.matrix() ->M |
See also (class function)
init
Purpose
To convert to a Pt2D object.
Class
IdPt2D
Usage
{Pt2D} ret = object.PT()
Example:
->pt.init(1,100,200,3.5) ->print pt 1 ( 100.000 , 200.000) 3.500 ->pt1 = pt.pt() ->pt1 |
See also (class function)
matrix
Purpose
To report the current value of standard deviation of the point object.
Class
IdPt2D
Usage
{double} ret = object.SD()
Example:
->pt = IdPt2D() ->pt.init(1,100,200,3.5) ->print pt 1 ( 100.000 , 200.000) 3.500 ->pt.sd() |
See also (class function)
x, y
Purpose
To report the current x coordinate of the point object.
Class
IdPt2D
Usage
{double} ret = object.X()
Example:
->pt = IdPt2D() ->pt.init(1,100,200,3.5) ->print pt 1 ( 100.000 , 200.000) 3.500 ->pt.x() |
See also (class function)
y, sd
Purpose
To report the current y coordinate of the point object.
Class
IdPt2D
Usage
{double} ret = object.Y()
Example:
->pt = IdPt2D() ->pt.init(1,100,200,3.5) ->print pt 1 ( 100.000 , 200.000) 3.500 ->pt.y() |
See also (class function)
x, sd