OpenStructure
Loading...
Searching...
No Matches
octree_isocont.hh
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// This file is part of the OpenStructure project <www.openstructure.org>
3//
4// Copyright (C) 2008-2020 by the OpenStructure authors
5//
6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License as published by the Free
8// Software Foundation; either version 3.0 of the License, or (at your option)
9// any later version.
10// This library is distributed in the hope that it will be useful, but WITHOUT
11// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13// details.
14//
15// You should have received a copy of the GNU Lesser General Public License
16// along with this library; if not, write to the Free Software Foundation, Inc.,
17// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18//------------------------------------------------------------------------------
19#ifndef OST_GFX_IMPL_OCTREE_ISOCONT_HH
20#define OST_GFX_IMPL_OCTREE_ISOCONT_HH
21
22/*
23 Author: Marco Biasini
24 */
25#include <boost/unordered_map.hpp>
26
32
33namespace ost { namespace gfx { namespace impl {
34
35struct EdgeDesc {
37 uint8_t ac1, uint8_t ac2, bool l):
38 dir(d), off(o), c1(ac1), c2(ac2), lv(l)
39 { }
41 {
42 img::Point k=p+off;
43 return 4*ext.Point2Offset(k)+dir;
44 }
49 bool lv;
50};
55private:
56 static uint16_t EDGE_FLAGS[];
57 static img::Point POINT_OFFSETS[];
58 static int8_t TRIANGLES[256][16];
59 static EdgeDesc EDGE_DESC[12];
60public:
61 typedef boost::unordered_map<uint32_t, VertexID> EdgeMap;
62 OctreeIsocont(IndexedVertexArray& va, float level, bool triangles,
63 const Color& color):
64 va_(va), level_(level), triangles_(triangles), color_(color)
65 { }
66 bool VisitNode(const impl::OctreeNode& node, uint8_t level,
67 const img::Extent& ext)
68 {
69 return (node.GetMin()<level_ && level_<=node.GetMax());
70 }
71 void VisitLeaf(img::RealSpatialImageState* map,
72 const img::Point& point);
73
74 VertexID GetOrGenVert(img::RealSpatialImageState* map, const img::Point& p,
75 EdgeDesc* desc);
76private:
78 float level_;
79 EdgeMap edge_map_;
80 bool triangles_;
81 Color color_;
82};
83
84
85}}}
86
87#endif
88
Defines lower and upper valid indices.
Definition extent.hh:60
unsigned int Point2Offset(const Point &p)
Generates a continues, uniqe index per point contained within extent.
class encapsulating 1D to 3D point
Definition point.hh:47
#define DLLEXPORT_OST_GFX
unsigned int VertexID
Definition base.dox:1
unsigned short uint16_t
Definition stdint_msc.hh:79
unsigned int uint32_t
Definition stdint_msc.hh:80
unsigned char uint8_t
Definition stdint_msc.hh:78
signed char int8_t
Definition stdint_msc.hh:75
EdgeDesc(uint8_t d, const img::Point &o, uint8_t ac1, uint8_t ac2, bool l)
uint32_t GetKey(const img::Point &p, img::Extent &ext)
isocontouring of maps using an octree-optimization
boost::unordered_map< uint32_t, VertexID > EdgeMap
bool VisitNode(const impl::OctreeNode &node, uint8_t level, const img::Extent &ext)
void VisitLeaf(img::RealSpatialImageState *map, const img::Point &point)
OctreeIsocont(IndexedVertexArray &va, float level, bool triangles, const Color &color)
VertexID GetOrGenVert(img::RealSpatialImageState *map, const img::Point &p, EdgeDesc *desc)