PointsSequence
PointsSequence - Begin
Returns the first point of the sequence.
IN
| Name | Type | Description |
|---|---|---|
| InPointsSequence | PointsSequence | The input PointsSequence |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutPoint2Di | Point2Di | First point of the sequence. |
| Error | ErrorState | Gets the execution error message |
PointsSequence - Contains
Checks if the given point is contained inside the points sequence.
IN
| Name | Type | Description |
|---|---|---|
| InPointsSequence | PointsSequence | The input PointsSequence |
| InPosition | Point2Di | The point to check for containment. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutBool | Bool | True if the point is within the region, false otherwise. |
| Error | ErrorState | Gets the execution error message |
PointsSequence - CreatePointsSequence_CreateFromValue
Creates a new PointsSequence object.
IN
| Name | Type | Description |
|---|---|---|
| InX | Int | X coordinate. |
| InY | Int | Y coordinate. |
| InLength | Int | Length on X axis. Range: 〔0, +inf). |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutPointsSequence | PointsSequence | The PointsSequence instance. |
| Error | ErrorState | Gets the execution error message |
PointsSequence - End
Returns the last point (not included) of the sequence.
IN
| Name | Type | Description |
|---|---|---|
| InPointsSequence | PointsSequence | The input PointsSequence |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutPoint2Di | Point2Di | Last point of the sequence. |
| Error | ErrorState | Gets the execution error message |
PointsSequence - GetEnd
Returns the last x coordinate (not included) of the sequence.
IN
| Name | Type | Description |
|---|---|---|
| InPointsSequence | PointsSequence | The input PointsSequence |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutInt | Int | Last x coordinate of the sequence. |
| Error | ErrorState | Gets the execution error message |