BEPUphysics.DataStructures.StaticMeshData.GetVertexPosition C# (CSharp) Метод

GetVertexPosition() публичный Метод

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.
Результат void
        public override void GetVertexPosition(int i, out Vector3 vertex)
        {
            vertex = vertices[i];
        }