Public Member Functions | List of all members
Point Class Reference

Point class is used in coordinate values which specify the start point or direction.
The class can be created from Application class.
. More...

Inherits PointBase.

Public Member Functions

double GetX ()
 Returns the value of the X-coordinate as a real number. More...
 
double GetY ()
 Returns the value of the Y-coordinate as a real number. More...
 
double GetZ ()
 Returns the value of the Z-coordinate as a real number. More...
 
void Set (double x, double y, double z)
 Specifies the coordinate values (X, Y, Z). More...
 
void SetX (double x)
 Specifies the value of the X-coordinate. More...
 
void SetY (double y)
 Specifies the value of the Y-coordinate. More...
 
void SetZ (double z)
 Specifies the value of the Z-coordinate. More...
 
Variant Value ()
 Returns a value as a table. More...
 
double x ()
 Returns the value of the X-coordinate as a real number. More...
 
double y ()
 Returns the value of the Y-coordinate as a real number. More...
 
double z ()
 Returns the value of the Z-coordinate as a real number. More...
 

Detailed Description

Point class is used in coordinate values which specify the start point or direction.
The class can be created from Application class.
.

Example of calling the class object:

app.CreatePoint(0,0,0)

Member Function Documentation

double Point::GetX ( )

Returns the value of the X-coordinate as a real number.

Returns
Value of the X-coordinate
double Point::GetY ( )

Returns the value of the Y-coordinate as a real number.

Returns
Value of the Y-coordinate
double Point::GetZ ( )

Returns the value of the Z-coordinate as a real number.

Returns
Value of the Z-coordinate
void Point::Set ( double  x,
double  y,
double  z 
)

Specifies the coordinate values (X, Y, Z).

Parameters
xValue of the X-coordinate
yValue of the Y-coordinate
zValue of the Z-coordinate
void Point::SetX ( double  x)

Specifies the value of the X-coordinate.

Parameters
xValue of the X-coordinate
void Point::SetY ( double  y)

Specifies the value of the Y-coordinate.

Parameters
yValue of the Y-coordinate
void Point::SetZ ( double  z)

Specifies the value of the Z-coordinate.

Parameters
zValue of the Z-coordinate
Variant Point::Value ( )

Returns a value as a table.

Returns
Value of the coordinates (X, Y, Z)
double Point::x ( )
inline

Returns the value of the X-coordinate as a real number.

Returns
Value of the X-coordinate

This is the property of Point class. It can be used the same way as GetX() .

double Point::y ( )
inline

Returns the value of the Y-coordinate as a real number.

Returns
Value of the Y-coordinate

This is the property of Point class. It can be used the same way as GetY() .

double Point::z ( )
inline

Returns the value of the Z-coordinate as a real number.

Returns
Value of the Z-coordinate

This is the property of Point class. It can be used the same way as GetZ() .