MeshFaceList.GetFaceVertices Method

MeshFaceListGetFaceVertices Method

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

Namespace:  Rhino.Geometry.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public bool GetFaceVertices(
	int faceIndex,
	out Point3f a,
	out Point3f b,
	out Point3f c,
	out Point3f d
)
Public Function GetFaceVertices ( 
	faceIndex As Integer,
	<OutAttribute> ByRef a As Point3f,
	<OutAttribute> ByRef b As Point3f,
	<OutAttribute> ByRef c As Point3f,
	<OutAttribute> ByRef d As Point3f
) As Boolean

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.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.14
See Also