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

Method get_command

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

Source from the content-addressed store, hash-verified

1463public:
1464 inline const CHAR* name() const { return "drop_user_data_between"; };
1465 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_user_data, above_user_data); };
1466 inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_USER_DATA; };
1467 inline BOOL filter(const LASpoint* point) { return (below_user_data <= point->user_data) && (point->user_data <= above_user_data); };
1468 LAScriterionDropUserDataBetween(U8 below_user_data, U8 above_user_data) { this->below_user_data = below_user_data; this->above_user_data = above_user_data; };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected