void drawNoiseCoordQuad() { if (!this.debugQuad.isErsatzNull()) { DebugLinesUtil.drawDebugQuad(this.debugQuad, Color.red); } }
void drawWindows() { for (int i = 0; i < windows.Count; ++i) { DebugLinesUtil.DrawWindow(windows[i]); //, Color.green, Color.cyan); } }
void drawTestLines() { foreach (CoordLine line in lines) { DebugLinesUtil.debugLine(line.start, line.end, Color.cyan); } }
void drawUnitCubes() { foreach (Coord woco in unitCubes) { DebugLinesUtil.DrawUnitCubeAt(woco); } }
void drawColumns() { // foreach(Column colm in columns) for (int i = 0; i < columns.Count; ++i) { Column colm = columns[i]; DebugLinesUtil.DrawDebugColumn(colm); } }
void drawFunnyChunkCoords() { DebugLinesUtil.drawDebugCubesForChunkCoordList(everGotDestroyChunkCos, Color.magenta, new Coord(1, 1, 4)); }
private void drawTrigCoords() { // DebugLinesUtil.DrawDebugCubesForChunksCoords(testTrigCoords); DebugLinesUtil.DrawDebugForChunkCoord(currentTestTrigCoord, new Color(.2f, .7f, .7f, 1f)); }