9 #include <unordered_map>
24 const u32 highlightMeshCount,
25 const std::unordered_map<std::string, int>& entityToPolygonLookup,
26 const std::vector<int>& contoursCountPerPolygon,
27 const std::vector<int>& vertexCountPerContour,
28 const std::vector<double>& originRelativeLatLngDegrees
31 const u32& HighlightMeshCount()
const {
return m_highlightMeshCount; }
34 const std::unordered_map<std::string, int>& EntityToPolygonLookup()
const {
return m_entityToPolygonLookup; }
35 const std::vector<int>& ContoursCountPerPolygon()
const {
return m_contoursCountPerPolygon; }
36 const std::vector<int>& VertexCountPerContour()
const {
return m_vertexCountPerContour; }
37 const std::vector<double>& OriginRelativeLatLngDegrees()
const {
return m_originRelativeLatLngDegrees; }
40 const u32 m_highlightMeshCount;
41 const std::unordered_map<std::string, int> m_entityToPolygonLookup;
42 const std::vector<int> m_contoursCountPerPolygon;
43 const std::vector<int> m_vertexCountPerContour;
44 const std::vector<double> m_originRelativeLatLngDegrees;