| 1386 | } |
| 1387 | |
| 1388 | void CEditorView::OnRoomFaceMoveVertOnEdge() { |
| 1389 | void MoveVert(room * rp, int facenum, int vertnum, float new_position); |
| 1390 | |
| 1391 | char buf[10] = "0.5"; |
| 1392 | |
| 1393 | if (InputString(buf, sizeof(buf), "New point position", |
| 1394 | "Please enter the new position of the point, from 0.0 to 1.0")) { |
| 1395 | MoveVert(Curroomp, Curface, Curvert, atof(buf)); |
| 1396 | } |
| 1397 | } |
| 1398 | |
| 1399 | void CEditorView::OnRoomFaceSplitFace() { |
| 1400 | void SplitFace(room * rp, int facenum, int v0, int v1); |
nothing calls this directly
no test coverage detected