fixedpoint
Description
The fixedpoint object is a version of a point containing an x and a y coordinate and which can be read but not altered. This type is one of the base types of the wxgraphic drawing support.
Type Tags
point
Object Value
The value of a fixedpoint object is a unique value that can be used to assign the coordinates of the point to another point object. The fixedpoint object cannot have its value changed by assignment. The value is compatible between point and fixedpoint objects.
fixedpoint.new()
Description
Creates a new fixedpoint object.
Prototype
fixedpoint
.new
(
integer
,
integer x
)
y
Parameters
Parameter | Default value | Type name | Description |
---|---|---|---|
x | None | integer | The value that is used for the x coordinate of the object. |
y | None | integer | The value that is used for the y coordinate of the object. |
Properties
Property | Type | Description |
---|---|---|
type | type | Specifies the fixedpoint type object. |
x | integer | Specifies the x coordinate of the point. |
y | integer | Specifies the y coordinate of the point. |