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

Method dont_ignore_class

LASlib/src/lasignore.cpp:60–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60void LASignore::dont_ignore_class(U8 classification)
61{
62 U32 byte = classification >> 5;
63 U32 rest = classification & 31;
64 ignore_classification_mask[byte] &= ~(1u << rest);
65 if (ignore_classification_mask[byte] == 0)
66 {
67 ignore_mask &= ~(1u << byte);
68 }
69}
70
71BOOL LASignore::parse(int& i, int argc, char *argv[])
72{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected