This function gets the angle of the specified hatch line in radians.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_vect_hatchline_get_lineangle(
HIG_VECT_HATCHLINE hHatchline,
float* lpLineAngle
);
|
Name | Type | Description |
---|---|---|
hHatchline | HIG_VECT_HATCHLINE | Handle of the hatch line. |
lpLineAngle | float* | Pointer to the buffer for the line angle. |
Returns 0 if successful. Otherwise, returns the number of ImageGear errors that occurred during this function call.
This function does not process image pixels.
None
Copy Code
|
|
---|---|
float dblLineAngle;
IG_vect_hatchline_get_lineangle(hHatchLine, &dblLineAngle);
|