Welcome to mirror list, hosted at ThFree Co, Russian Federation.

csg_detail.hpp « lib « carve « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5947e776b5046eead2e6eabdde16e6df80157ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Begin License:
// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com).
// All rights reserved.
//
// This file is part of the Carve CSG Library (http://carve-csg.com/)
//
// This file may be used under the terms of the GNU General Public
// License version 2.0 as published by the Free Software Foundation
// and appearing in the file LICENSE.GPL2 included in the packaging of
// this file.
//
// This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
// INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE.
// End:


#pragma once

#include <carve/carve.hpp>

#include <carve/polyhedron_base.hpp>

namespace carve {
  namespace csg {
    namespace detail {
      typedef std::map<carve::mesh::MeshSet<3>::vertex_t *,
                       std::set<std::pair<carve::mesh::MeshSet<3>::face_t *, double> > > EdgeIntInfo;

      typedef std::unordered_set<carve::mesh::MeshSet<3>::vertex_t *> VSet;
      typedef std::unordered_set<carve::mesh::MeshSet<3>::face_t *> FSet;

      typedef std::set<carve::mesh::MeshSet<3>::vertex_t *> VSetSmall;
      typedef std::set<csg::V2> V2SetSmall;
      typedef std::set<carve::mesh::MeshSet<3>::face_t *> FSetSmall;

      typedef std::unordered_map<carve::mesh::MeshSet<3>::vertex_t *, VSetSmall> VVSMap;
      typedef std::unordered_map<carve::mesh::MeshSet<3>::edge_t *, EdgeIntInfo> EIntMap;
      typedef std::unordered_map<carve::mesh::MeshSet<3>::face_t *, VSetSmall> FVSMap;

      typedef std::unordered_map<carve::mesh::MeshSet<3>::vertex_t *, FSetSmall> VFSMap;
      typedef std::unordered_map<carve::mesh::MeshSet<3>::face_t *, V2SetSmall> FV2SMap;

      typedef std::unordered_map<
        carve::mesh::MeshSet<3>::edge_t *,
        std::vector<carve::mesh::MeshSet<3>::vertex_t *> > EVVMap;

      typedef std::unordered_map<carve::mesh::MeshSet<3>::vertex_t *,
                                 std::vector<carve::mesh::MeshSet<3>::edge_t *> > VEVecMap;


      class LoopEdges : public std::unordered_map<V2, std::list<FaceLoop *> > {
        typedef std::unordered_map<V2, std::list<FaceLoop *> > super;

      public:
        void addFaceLoop(FaceLoop *fl);
        void sortFaceLoopLists();
        void removeFaceLoop(FaceLoop *fl);
      };

    }
  }
}



static inline std::ostream &operator<<(std::ostream &o, const carve::csg::detail::FSet &s) {
  const char *sep="";
  for (carve::csg::detail::FSet::const_iterator i = s.begin(); i != s.end(); ++i) {
    o << sep << *i; sep=",";
  }
  return o;
}