send some text to be displayed
| 423 | |
| 424 | // send some text to be displayed |
| 425 | void ScanThread::DisplayText(wxString text) |
| 426 | { |
| 427 | wxCommandEvent event2(DISPLAY_TEXT_EVENT, GetId()); |
| 428 | event2.SetString(text); |
| 429 | window->GetEventHandler()->AddPendingEvent(event2); |
| 430 | } |
| 431 | |
| 432 | // compute distance to a point given the x pixel location and the width reference x pixel location |
| 433 | double ScanThread::PixelToDistance2(float laserCenter, float widthReference) |
nothing calls this directly
no outgoing calls
no test coverage detected