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

GetVertexPosition() public abstract method

Gets the position of a vertex in the data.
public abstract GetVertexPosition ( int i, Microsoft.Xna.Framework.Vector3 &vertex ) : void
i int Index of the vertex.
vertex Microsoft.Xna.Framework.Vector3 Position of the vertex.
return void
        public abstract void GetVertexPosition(int i, out Vector3 vertex);
    }