| 173 | } |
| 174 | |
| 175 | bool InteractiveCanvas::isMouseInView() { |
| 176 | return mouseTracker.mouseInView(); |
| 177 | } |
| 178 | |
| 179 | bool InteractiveCanvas::isMouseDown() { |
| 180 | return mouseTracker.mouseInView() && mouseTracker.mouseDown(); |
nothing calls this directly
no test coverage detected