MCPcopy Create free account
hub / github.com/LAStools/LAStools / LASbin

Method LASbin

LASlib/src/lasutility.cpp:420–436  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

418}
419
420LASbin::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
438LASbin::~LASbin()
439{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected