Description:

Gets the 3D location of the vertices forming a face.

Syntax:
public bool GetFaceVertices(
int faceIndex,
out Point3f a,
out Point3f b,
out Point3f c,
out Point3f d
)
Parameters:
  • faceIndex
  • Type: int
  • A face index.
  • a
  • Type: Point3f
  • A first point. This out argument is assigned during the call.
  • b
  • Type: Point3f
  • A second point. This out argument is assigned during the call.
  • c
  • Type: Point3f
  • A third point. This out argument is assigned during the call.
  • d
  • Type: Point3f
  • A fourth point. This out argument is assigned during the call.
Returns:
Type: bool
True if the operation succeeded, otherwise false.
Available since:
5.0

Nothing found