(ValveWriter w)
| 182 | } |
| 183 | |
| 184 | private void writeTail(ValveWriter w) throws IOException { |
| 185 | w.open("cameras") |
| 186 | .put("activecamera", 0) |
| 187 | .open("camera") |
| 188 | .put("position", this.cameraPosition.toBracketString()) |
| 189 | .put("look", this.cameraLook.toBracketString()) |
| 190 | .close() |
| 191 | .close(); // close from header |
| 192 | w.open("cordon") |
| 193 | .put("mins", "(-1024 -1024 -1024)") |
| 194 | .put("maxs", "(1024 1024 1024)") |
| 195 | .put("active", 0) |
| 196 | .close(); |
| 197 | } |
| 198 | |
| 199 | @Override |
| 200 | public void setPointToGrid(Position position) { |
no test coverage detected