MCPcopy Create free account
hub / github.com/PDAL/PDAL / WriteData3DData

Method WriteData3DData

plugins/e57/libE57Format/src/E57SimpleWriter.cpp:202–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200 }
201
202 int64_t Writer::WriteData3DData( Data3D &data3DHeader, const Data3DPointsFloat &buffers )
203 {
204 _fillMinMaxData( data3DHeader, buffers );
205
206 const int64_t scanIndex = impl_->NewData3D( data3DHeader );
207
208 e57::CompressedVectorWriter dataWriter =
209 impl_->SetUpData3DPointsData( scanIndex, data3DHeader.pointCount, buffers );
210
211 dataWriter.write( data3DHeader.pointCount );
212 dataWriter.close();
213
214 return scanIndex;
215 }
216
217 int64_t Writer::WriteData3DData( Data3D &data3DHeader, const Data3DPointsDouble &buffers )
218 {

Callers

nothing calls this directly

Calls 5

_fillMinMaxDataFunction · 0.85
NewData3DMethod · 0.45
SetUpData3DPointsDataMethod · 0.45
writeMethod · 0.45
closeMethod · 0.45

Tested by

no test coverage detected