Point constructor
Contents
[
Hide
]init
Constructs a new instance of Point
def __init__(self):
...
init
Initializes a new instance of the Point
structure from the Size
structure.
def __init__(self, size):
...
Parameter | Type | Description |
---|---|---|
size | Size | Contains the new point coordinates. |
init
Initializes a new instance of the Point
structure using coordinates specified by an integer value.
def __init__(self, dw):
...
Parameter | Type | Description |
---|---|---|
dw | int | A 32-bit integer that specifies the coordinates for the new point. |
init
Initializes a new instance of the Point
structure with the specified coordinates.
def __init__(self, x, y):
...
Parameter | Type | Description |
---|---|---|
x | int | The horizontal position of the point. |
y | int | The vertical position of the point. |
See Also
- module
aspose.cad
- class
Point
- class
Size