BEPUphysics.BroadPhaseEntries.Terrain.GetPosition C# (CSharp) Method

GetPosition() public method

Gets the position of a vertex at the given indices.
public GetPosition ( int i, int j, System.Vector3 &position ) : void
i int First dimension index into the heightmap array.
j int Second dimension index into the heightmap array.
position System.Vector3 Position at the given indices.
return void
        public void GetPosition(int i, int j, out Vector3 position)
        {
            Shape.GetPosition(i, j, ref worldTransform, out position);
        }