| 110 | /////////////////////////////////////////// |
| 111 | |
| 112 | void demo_lines_update() { |
| 113 | ui_window_begin("Settings", line_window_pose, vec2{ 20 }*cm2m); |
| 114 | if (ui_button("Clear")) { |
| 115 | line_draw.clear(); |
| 116 | line_list.clear(); |
| 117 | } |
| 118 | ui_window_end(); |
| 119 | |
| 120 | demo_lines_palette(); |
| 121 | demo_lines_draw(); |
| 122 | } |
| 123 | |
| 124 | /////////////////////////////////////////// |
| 125 |
nothing calls this directly
no test coverage detected