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

Method get_command

LASlib/src/lasfilter.cpp:1113–1113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1111public:
1112 inline const CHAR* name() const { return "drop_scan_angle_below"; };
1113 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %.3f ", name(), below_scan); };
1114 inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_SCAN_ANGLE; };
1115 inline BOOL filter(const LASpoint* point) { return (point->get_scan_angle() < below_scan); };
1116 LAScriterionDropScanAngleBelow(F32 below_scan) { this->below_scan = below_scan; };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected