| 699 | } |
| 700 | |
| 701 | void fileOpenCallback() |
| 702 | { |
| 703 | char filename[1024]; |
| 704 | int len = s_window->fileOpenDialog(filename, 1024); |
| 705 | if (len) |
| 706 | { |
| 707 | //todo(erwincoumans) check if it is actually URDF |
| 708 | //printf("file open:%s\n", filename); |
| 709 | openFileDemo(filename); |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | #define MAX_GRAPH_WINDOWS 5 |
| 714 |
nothing calls this directly
no test coverage detected