本文整理汇总了C#中XY.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# XY.ToString方法的具体用法?C# XY.ToString怎么用?C# XY.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XY
的用法示例。
在下文中一共展示了XY.ToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RandomSlice
/*
* METHODS
*/
// Create a random slice inside the QuadTree boundary
public bool RandomSlice(int iteration, int max_iterations, ref XY output)
{
if (iteration > max_iterations) return false;
float sliceX = Mathf.Round(Random.Range(boundary.Left(), boundary.Right()));
float sliceY = Mathf.Round(Random.Range(boundary.Bottom(), boundary.Top()));
if (Mathf.Abs(sliceX - boundary.Left ()) < DungeonGenerator.ROOM_MIN_SIZE) return RandomSlice(iteration+1,max_iterations,ref output);
if (Mathf.Abs(boundary.Right() - sliceX) < DungeonGenerator.ROOM_MIN_SIZE) return RandomSlice(iteration+1,max_iterations,ref output);
if (Mathf.Abs(boundary.Top () - sliceY) < DungeonGenerator.ROOM_MIN_SIZE) return RandomSlice(iteration+1,max_iterations,ref output);
if (Mathf.Abs(sliceY - boundary.Bottom()) < DungeonGenerator.ROOM_MIN_SIZE) return RandomSlice(iteration+1,max_iterations,ref output);
output = new XY(sliceX, sliceY);
Debug.Log("Random slice, iteration = " + iteration + ", max = " + max_iterations + ", ouput = " + output.ToString());
return true;
}