Print basic information about this tab vector.
| 523 | |
| 524 | // Print basic information about this tab vector. |
| 525 | void TabVector::Print(const char* prefix) { |
| 526 | tprintf( |
| 527 | "%s %s (%d,%d)->(%d,%d) w=%d s=%d, sort key=%d, boxes=%d," |
| 528 | " partners=%d\n", |
| 529 | prefix, kAlignmentNames[alignment_], startpt_.x(), startpt_.y(), |
| 530 | endpt_.x(), endpt_.y(), mean_width_, percent_score_, sort_key_, |
| 531 | boxes_.length(), partners_.length()); |
| 532 | } |
| 533 | |
| 534 | // Print basic information about this tab vector and every box in it. |
| 535 | void TabVector::Debug(const char* prefix) { |
no test coverage detected