Example of Entering and Displaying 2D Point Objects
The example demonstrates working with the two-dimensional point object, including the display and modification
of its properties. The AboutPoint2d() function requires the reference to an existing two-dimensional point as an
OdGePoint2d instance and returns the string containing the values of the X, Y coordinates of the passed point
as an OdString value. The function declares the variable of the OdString type and uses the format() method
to convert the coordinates to a string. The AboutPoint2d() function has the following implementation:
The EntryPoint2d() function requires a reference to an existing two-dimensional point as an OdGePoint2d instance
which is used as a default value and returns True if the user modifies the passed instance, or False if the user cancels
entry. The function organizes a loop for entry of coordinates and displays the current values of coordinates before
the loop. If an entered value of a coordinate is incorrect, the function displays an error message and repeats the entry.
If the entered X, Y coordinates are correct, the function passes the modified instance in the calling function through
own argument and returns True as a result. If the user selects [Q], the function cancels the entry, remains the current
coordinates, and returns False as a result. The EntryPoint2d() function has the following implementation: