IdPt1D Class Function Manual |
Purpose
To report the current ID number of the IdPt1D object.
Class
IdPt1D
Usage
{int} ret = object.ID()
Example:
->pt = IdPt1D() ->pt.init(1,150.238,1.5) ->print pt 1 ( 150.238) 1.500 ->pt.id() |
See also (class function)
x, sd
Purpose
To initialize an IdPt1D object.
Class
IdPt1D
Usage
{void} object.INIT({int} argm1,{double} argm2,{double} argm3)
argm1 = ID number
argm2 = x coordinate (or height)
argm3 = standard deviation (in pixel unit)
Example:
->pt = IdPt1D() ->pt.init(1,150.238,1.5) ->print pt 1 ( 150.238) 1.500 -> |
See also (class function)
id, x, sd
Purpose
To convert to a Matrix object.
Class
IdPt1D
Usage
{Matrix} ret = object.MATRIX()
Example:
->pt = IdPt1D() ->pt.init(1,150.238,1.5) ->print pt 1 ( 150.238)
1.500 ->M |
See also (class function)
id, x, sd
Purpose
To report the current standard deviation of the IdPt1D object.
Class
IdPt1D
Usage
{double} ret = object.ROW()
Example:
->pt = IdPt1D() ->pt.init(1,150.238,1.5) ->print pt 1 ( 150.238) 1.500 ->pt.sd() |
See also (class function)
id, x
Purpose
To report the current x coordinate, or height, of the IdPt1D object.
Class
IdPt1D
Usage
{double} ret = object.ROW()
Example:
->pt = IdPt1D() ->pt.init(1,150.238,1.5) ->print pt 1 ( 150.238) 1.500 ->pt.x() |
See also (class function)
id, sd