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

Method delete_operation

LASlib/src/lastransform.cpp:11460–11479  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11458}
11459
11460void LAStransform::delete_operation(const CHAR* name)
11461{
11462 if (operations)
11463 {
11464 U32 i;
11465 for (i = 0; i < num_operations; i++)
11466 {
11467 if (strcmp(operations[i]->name(), name) == 0)
11468 {
11469 delete operations[i];
11470 for (i = i + 1; i < num_operations; i++)
11471 {
11472 operations[i - 1] = operations[i];
11473 }
11474 num_operations--;
11475 return;
11476 }
11477 }
11478 }
11479}
11480
11481void LAStransform::setFilter(LASfilter* filter)
11482{

Callers

nothing calls this directly

Calls 1

nameMethod · 0.45

Tested by

no test coverage detected