PathEngine home previous: iSolidObjects::convexSolid_Attribute()next: iSolidObjects::convexSolid_Points()
Contents, API Reference, Interfaces, iSolidObjects, convexSolid_Point

iSolidObjects::convexSolid_Point()

Description

Returns the coordinates of a point in a convex solid object.

Syntax

void convexSolid_Point(int32_t convexSolidIndex, int32_t pointIndex, int32_t& x, int32_t& y, int32_t& z) const;

Parameters

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.

C# Mapping

void convexSolid_Point(int convexSolidIndex, int pointIndex, out int x, out int y, out int z);

Java Mapping

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 PathEnginenext: iSolidObjects::convexSolid_Points()