Click or drag to resize

MeshFaceListGetFaceVertices Method

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

Namespace:  Rhino.Geometry.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public bool GetFaceVertices(
	int faceIndex,
	out Point3f a,
	out Point3f b,
	out Point3f c,
	out Point3f d
)

Parameters

faceIndex
Type: SystemInt32
A face index.
a
Type: Rhino.GeometryPoint3f
A first point. This out argument is assigned during the call.
b
Type: Rhino.GeometryPoint3f
A second point. This out argument is assigned during the call.
c
Type: Rhino.GeometryPoint3f
A third point. This out argument is assigned during the call.
d
Type: Rhino.GeometryPoint3f
A fourth point. This out argument is assigned during the call.

Return Value

Type: Boolean
true if the operation succeeded, otherwise false.
See Also