track.h (ocrad-0.24) | : | track.h (ocrad-0.25) | ||
---|---|---|---|---|
/* GNU Ocrad - Optical Character Recognition program | /* GNU Ocrad - Optical Character Recognition program | |||
Copyright (C) 2003-2014 Antonio Diaz Diaz. | Copyright (C) 2003-2015 Antonio Diaz Diaz. | |||
This program is free software: you can redistribute it and/or modify | This program is free software: you can redistribute it and/or modify | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation, either version 2 of the License, or | the Free Software Foundation, either version 2 of the License, or | |||
(at your option) any later version. | (at your option) any later version. | |||
This program is distributed in the hope that it will be useful, | This program is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
skipping to change at line 70 | skipping to change at line 70 | |||
int segments() const { return data.size(); } | int segments() const { return data.size(); } | |||
int height() const { return data.empty() ? 0 : data[0].height(); } | int height() const { return data.empty() ? 0 : data[0].height(); } | |||
int left() const { return data.empty() ? 0 : data[0].left(); } | int left() const { return data.empty() ? 0 : data[0].left(); } | |||
int right() const { return data.empty() ? 0 : data.back().right(); } | int right() const { return data.empty() ? 0 : data.back().right(); } | |||
int bottom( const int col ) const; | int bottom( const int col ) const; | |||
int top( const int col ) const; | int top( const int col ) const; | |||
int vcenter( const int col ) const; | int vcenter( const int col ) const; | |||
bool includes( const Rectangle & r ) const; | // bool includes( const Rectangle & r ) const; | |||
bool includes( const int row, const int col ) const; | // bool includes( const int row, const int col ) const; | |||
}; | }; | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added |