IdPt3D |
Overview
IdPt2D is an object which consists an ID number, three double precision numbers for x, y and z coordinate, and a standard deviation. IdPt2D can also be used as a general data structure, though.
Member data
Name | Data type | Meaning |
id | int | ID number |
x | double | x coordinate |
y | double | y coordinate |
z | double | z coordinate |
sd | double | standard deviation |
Operator
no operator provided
Construction function
{IdPt3D} ret = IDPT3D([{int} argm1, {double} argm2, {double} argm3, {double} argm4, {double} argm5])
argm1 = Point ID (default = 0)
argm2 = x coordinate (default = 0)
argm3 = y coordinate (default = 0)
argm4 = z coordinate (default = 0)
argm5 = standard deviation (default = 0)
Example:
->pt_1 = IdPt3D() | a deafult IdPt3D object (id = 0, x = 0, y = 0, z = 0, sd = 0) |
->pt_1 = IdPt3D(10, 52.3, 65.2, 1.0, 0.05) |
an IdPt3D object (id = 10, x = 52.3, y = 65.2, z= 1.0, sd = 0.05) |
Lfunction
object.ID() = {int} left-value
object.X() = {double} left-value
object.Y() = {double} left-value
object.Z() = {double} left-value
object.SD() = {double} left-value
Example:
->pt_1.id() = 5009
->pt_1.sd() = 1.25 |
Class function
ID | INIT | MATRIX | PT | SD |
X | Y | Z |