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];
        }