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

Method LASsummary

LASlib/src/lasutility.cpp:170–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170LASsummary::LASsummary()
171{
172 U32 i;
173 number_of_point_records = 0;
174 for (i = 0; i < 16; i++) number_of_points_by_return[i] = 0;
175 for (i = 0; i < 16; i++) number_of_returns[i] = 0;
176 for (i = 0; i < 32; i++) classification[i] = 0;
177 for (i = 0; i < 256; i++)
178 {
179 extended_classification[i] = 0;
180 flagged_synthetic_classification[i] = 0;
181 flagged_keypoint_classification[i] = 0;
182 flagged_withheld_classification[i] = 0;
183 flagged_extended_overlap_classification[i] = 0;
184 }
185 for (i = 0; i < 3; i++)
186 {
187 xyz_fluff_10[i] = 0;
188 xyz_fluff_100[i] = 0;
189 xyz_fluff_1000[i] = 0;
190 xyz_fluff_10000[i] = 0;
191 }
192 flagged_synthetic = 0;
193 flagged_keypoint = 0;
194 flagged_withheld = 0;
195 flagged_extended_overlap = 0;
196 first = TRUE;
197}
198
199BOOL LASsummary::add(const LASpoint* point)
200{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected