PathEngine home | previous: | next: |
Returns the coordinates of a point in a convex solid object.
void convexSolid_Point(int32_t convexSolidIndex, int32_t pointIndex, int32_t& x, int32_t& y, int32_t& z) const; |
convexSolidIndex | The (zero-based) index of the convex solid being queried. Must be greater than or equal to zero, and less than the value returned by numberOfConvexSolids(). | ||
pointIndex | The (zero-based) index of the point within the convex solid. Must be a greater than or equal to zero and less than the value returned by convexSolid_Points() for convexSolidIndex. | ||
x | Returns the point's x coordinate. | ||
y | Returns the point's y coordinate. | ||
z | Returns the point's z coordinate. |
void convexSolid_Point(int convexSolidIndex, int pointIndex, out int x, out int y, out int z); |
void convexSolid_Point(int convexSolidIndex, int pointIndex, int_OutArgument x, int_OutArgument y, int_OutArgument z); |
Documentation for PathEngine release 6.04 - Copyright © 2002-2024 PathEngine | next: |