BEPUphysics.DataStructures.StaticMeshData.GetVertexPosition C# (CSharp) Method

GetVertexPosition() public method

Gets the position of a vertex in the data.
public GetVertexPosition ( int i, Vector3 &vertex ) : void
i int Index of the vertex.
vertex Vector3 Position of the vertex.
return void
        public override void GetVertexPosition(int i, out Vector3 vertex)
        {
            vertex = vertices[i];
        }