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

Method get_command

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

Source from the content-addressed store, hash-verified

103public:
104 inline const CHAR* name() const { return "filter_or"; };
105 inline I32 get_command(CHAR* string) const { int n = 0; n += one->get_command(&string[n]); n += two->get_command(&string[n]); n += sprintf(&string[n], "-%s ", name()); return n; };
106 inline U32 get_decompress_selective() const { return (one->get_decompress_selective() | two->get_decompress_selective()); };
107 inline BOOL filter(const LASpoint* point) { return one->filter(point) || two->filter(point); };
108 LAScriterionOr(LAScriterion* one, LAScriterion* two) { this->one = one; this->two = two; };

Callers 2

get_commandMethod · 0.45
unparseMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected