new Point( [x] [, y])
2D Point
A Point represents an (x,y) coordinate point.
--------------------
Since Point is a struct, it can be created manually by calling "new PDFNet.Point(x, y)"
eg. var myfoo = new PDFNet.Point(1,2);
Default values for a Point struct are:
x = 0
y = 0
Parameters:
Name | Type | Argument | Description |
---|---|---|---|
x |
number |
<optional> |
|
y |
number |
<optional> |
Properties:
Name | Type | Description |
---|---|---|
x |
number | |
y |
number |