B2d_shape_get_point_y - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Gets the y coordinate of the nth point of a given shape.
Parameter | Description |
---|---|
id | index of the shape |
pn | nth point of the shape to get the y coordinate of |
double: Returns the y coordinate of the nth point of the given shape.
// demonstrates getting the y coordinate of the second point of a shape
py = b2d_shape_get_point_y(myshape, 1);
NOTOC