is_point_in_stroke method
Contents
[
Hide
]is_point_in_stroke
Determines whether the specified point is inside the current stroked path.
Returns
true if the point is inside the stroked path; otherwise, false.
def is_point_in_stroke(self, x, y):
...
| Parameter | Type | Description |
|---|---|---|
| x | float | The x-coordinate of the point to test. |
| y | float | The y-coordinate of the point to test. |
is_point_in_stroke
Determines whether the specified point is inside the specified stroked path.
Returns
true if the point is inside the stroked path; otherwise, false.
def is_point_in_stroke(self, path, x, y):
...
| Parameter | Type | Description |
|---|---|---|
| path | IPath | The path to test. See IPath. |
| x | float | The x-coordinate of the point to test. |
| y | float | The y-coordinate of the point to test. |
See Also
- module
aspose.svg.rendering - class
ICanvas - class
IPath