OpenSim.Region.Framework.Scenes.Scene.GetPositionAtGround C# (CSharp) Метод

GetPositionAtGround() приватный Метод

private GetPositionAtGround ( float x, float y ) : Vector3
x float
y float
Результат Vector3
        private Vector3 GetPositionAtGround(float x, float y)
        {
            return new Vector3(x, y, GetGroundHeight(x, y));
        }
Scene