OpenSim.Region.Framework.Scenes.Scene.GetPositionAtGround C# (CSharp) Method

GetPositionAtGround() private method

private GetPositionAtGround ( float x, float y ) : Vector3
x float
y float
return Vector3
        private Vector3 GetPositionAtGround(float x, float y)
        {
            return new Vector3(x, y, GetGroundHeight(x, y));
        }
Scene