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

Method unparse

LASlib/src/lastransform.cpp:11239–11253  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11237}
11238
11239I32 LAStransform::unparse(CHAR* string) const
11240{
11241 U32 i;
11242 I32 n = 0;
11243 if (filter)
11244 {
11245 n += filter->unparse(&string[n]);
11246 n += sprintf(&string[n], "-filtered_transform ");
11247 }
11248 for (i = 0; i < num_operations; i++)
11249 {
11250 n += operations[i]->get_command(&string[n]);
11251 }
11252 return n;
11253}
11254
11255U32 LAStransform::get_decompress_selective() const
11256{

Callers

nothing calls this directly

Calls 1

get_commandMethod · 0.45

Tested by

no test coverage detected