# of segmentation points. One less than the count of segments
| 112 | |
| 113 | // # of segmentation points. One less than the count of segments |
| 114 | int CubeSearchObject::SegPtCnt() { |
| 115 | if (!init_ && !Init()) |
| 116 | return -1; |
| 117 | return segment_cnt_ - 1; |
| 118 | } |
| 119 | |
| 120 | // init and allocate variables, perform segmentation |
| 121 | bool CubeSearchObject::Init() { |
no test coverage detected