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

Method set_offset

LASlib/src/lasreadermerged.cpp:553–567  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

551}
552
553void LASreaderMerged::set_offset(const F64* offset)
554{
555 if (offset)
556 {
557 if (this->offset == 0) this->offset = new F64[3];
558 this->offset[0] = offset[0];
559 this->offset[1] = offset[1];
560 this->offset[2] = offset[2];
561 }
562 else if (this->offset)
563 {
564 delete[] this->offset;
565 this->offset = 0;
566 }
567}
568
569void LASreaderMerged::set_files_are_flightlines(const I32 files_are_flightlines)
570{

Callers 1

openMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected