path_delete_point(ind,n)
Jump to navigation
Jump to search
Description
Deletes the nth point in the give path.
Parameters
Parameter | Data Type | Description |
---|---|---|
ind | unsigned | index of the path |
n | unsigned | nth index of the point |
Return Values
void: This function does not return anything.
Example Call
// demonstrates deleting the second point in a path
path_delete_point(mypath, 1);