integralpoint(
POINT
)

The integralpoint( function converts point coordinates to integers.


Parameters

This function has one parameter:

point – The point to convert.


Description

Points have two coordinates, which can be floating point values. This function rounds both coordinates to the nearest integer value.

integralpoint(point(10.2, 20.8)) ☞ 10,21

Note: This function returns a point. If you want to see what the coordinates are in this point, use the pointstr( function.


See Also


History

VersionStatusNotes
10.0NewNew in this version.