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