MCPcopy Create free account
hub / github.com/comaps/comaps / LoadOuterTriangles

Function LoadOuterTriangles

libs/coding/geometry_coding.hpp:308–314  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

306
307template <class TSource>
308void LoadOuterTriangles(TSource & src, GeometryCodingParams const & params, OutPointsT & triangles)
309{
310 uint32_t const count = ReadVarUint<uint32_t>(src);
311
312 for (uint32_t i = 0; i < count; ++i)
313 LoadOuter(&DecodeTriangles, src, params, triangles, 3);
314}
315
316class TrianglesChainSaver
317{

Callers 3

TestTrianglesCodingFunction · 0.85
ParseTrianglesMethod · 0.85

Calls 1

LoadOuterFunction · 0.85

Tested by 1

TestTrianglesCodingFunction · 0.68