BaseMesh.ConvertAdjacencyToPointReps(GraphicsStream) Method (Microsoft.DirectX.Direct3D)

Converts mesh adjacency information to an array of point representatives.

Definition

Visual Basic Public Function ConvertAdjacencyToPointReps( _
    ByVal adjacency As GraphicsStream _
) As Integer()
C# public int[] ConvertAdjacencyToPointReps(
    GraphicsStream adjacency
);
C++ public:
array<int>^ ConvertAdjacencyToPointReps(
    GraphicsStreamadjacency
);
JScript public function ConvertAdjacencyToPointReps(
    adjacency : GraphicsStream
) : int[];

Parameters

adjacency Microsoft.DirectX.GraphicsStream
A GraphicsStream that contains three Int32Leave Site values per face, which specify the three neighbors for each face in the mesh.

Return Value

System.Int32[]
Array that contains one Int32Leave Site per vertex of the mesh that is filled with point representative data.

Remarks

Exceptions

InvalidCallException

The method call is invalid. For example, a method's parameter might contain an invalid value.

OutOfMemoryExceptionLeave Site

Microsoft Direct3D could not allocate sufficient memory to complete the call.

Applies To

Mesh, ProgressiveMesh

See Also