| 418 | } |
| 419 | |
| 420 | LASbin::LASbin(F64 step, F64 clamp_min, F64 clamp_max) |
| 421 | { |
| 422 | total = 0; |
| 423 | count = 0; |
| 424 | this->step = step; |
| 425 | this->one_over_step = 1.0/step; |
| 426 | this->clamp_min = clamp_min; |
| 427 | this->clamp_max = clamp_max; |
| 428 | first = TRUE; |
| 429 | size_pos = 0; |
| 430 | size_neg = 0; |
| 431 | bins_pos = 0; |
| 432 | bins_neg = 0; |
| 433 | values_pos = 0; |
| 434 | values_neg = 0; |
| 435 | anker = 0; |
| 436 | } |
| 437 | |
| 438 | LASbin::~LASbin() |
| 439 | { |
nothing calls this directly
no outgoing calls
no test coverage detected