BEPUphysics.BroadPhaseEntries.Terrain.GetNormal C# (CSharp) Метод

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

Gets the normal of a vertex at the given indices.
public GetNormal ( int i, int j, System.Vector3 &normal ) : void
i int First dimension index into the heightmap array.
j int Second dimension index into the heightmap array.
normal System.Vector3 Normal at the given indices.
Результат void
        public void GetNormal(int i, int j, out Vector3 normal)
        {
            Shape.GetNormal(i, j, ref worldTransform, out normal);
        }