| 1927 | // Add a small but still visible dot to the current wireframe file. |
| 1928 | |
| 1929 | void WireSpot(int x, int y, int z) |
| 1930 | { |
| 1931 | WireLine(x-1, y, z, x+1, y, z); |
| 1932 | WireLine(x, y-1, z, x, y+1, z); |
| 1933 | WireLine(x, y, z-1, x, y, z+1); |
| 1934 | } |
| 1935 | |
| 1936 | |
| 1937 | // Add a circle to the current wireframe file. The circle may be tilted and |
no test coverage detected