forked from bartvdbraak/blender
e81f2853c8
================================== Merging Carve library integration project into the trunk. This commit switches Boolean modifier to another library which handles mesh boolean operations in much stable and faster way, resolving old well-known limitations of intern boolop library. Carve is integrating as alternative interface for boolop library and which makes it totally transparent for blender sources to switch between old-fashioned boolop and new Carve backends. Detailed changes in this commit: - Integrated needed subset of Carve library sources into extern/ Added script for re-bundling it (currently works only if repo was cloned by git-svn). - Added BOP_CarveInterface for boolop library which can be used by Boolean modifier. - Carve backend is enabled by default, can be disabled by WITH_BF_CARVE SCons option and WITH_CARVE CMake option. - If Boost library is found in build environment it'll be used for unordered collections. If Boost isn't found, it'll fallback to TR1 implementation for GCC compilers. Boost is obligatory if MSVC is used. Tested on Linux 64bit and Windows 7 64bit. NOTE: behavior of flat objects was changed. E.g. Plane-Sphere now gives plane with circle hole, not plane with semisphere. Don't think it's really issue because it's not actually defined behavior in such situations and both of ways might be useful. Since it's only known "regression" think it's OK to deal with it. Details are there http://wiki.blender.org/index.php/User:Nazg-gul/CarveBooleans Special thanks to: - Ken Hughes: author of original carve integration patch. - Campbell Barton: help in project development, review tests. - Tobias Sargeant: author of Carve library, help in resolving some merge stoppers, bug fixing.
150 lines
4.1 KiB
C++
150 lines
4.1 KiB
C++
// 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/geom3d.hpp>
|
|
|
|
#include <carve/vertex_decl.hpp>
|
|
#include <carve/edge_decl.hpp>
|
|
#include <carve/face_decl.hpp>
|
|
|
|
#include <stddef.h>
|
|
|
|
namespace carve {
|
|
namespace poly {
|
|
|
|
|
|
|
|
struct Object {
|
|
};
|
|
|
|
|
|
|
|
template<typename array_t>
|
|
ptrdiff_t ptrToIndex_fast(const array_t &a, const typename array_t::value_type *v) {
|
|
return v - &a[0];
|
|
}
|
|
|
|
template<typename array_t>
|
|
ptrdiff_t ptrToIndex(const array_t &a, const typename array_t::value_type *v) {
|
|
if (v < &a.front() || v > &a.back()) return -1;
|
|
return v - &a[0];
|
|
}
|
|
|
|
|
|
template<unsigned ndim>
|
|
struct Geometry : public Object {
|
|
struct Connectivity {
|
|
} connectivity;
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
struct Geometry<2> : public Object {
|
|
typedef Vertex<2> vertex_t;
|
|
typedef Edge<2> edge_t;
|
|
|
|
struct Connectivity {
|
|
std::vector<std::vector<const edge_t *> > vertex_to_edge;
|
|
} connectivity;
|
|
|
|
std::vector<vertex_t> vertices;
|
|
std::vector<edge_t> edges;
|
|
|
|
ptrdiff_t vertexToIndex_fast(const vertex_t *v) const { return ptrToIndex_fast(vertices, v); }
|
|
ptrdiff_t vertexToIndex(const vertex_t *v) const { return ptrToIndex(vertices, v); }
|
|
|
|
ptrdiff_t edgeToIndex_fast(const edge_t *e) const { return ptrToIndex_fast(edges, e); }
|
|
ptrdiff_t edgeToIndex(const edge_t *e) const { return ptrToIndex(edges, e); }
|
|
|
|
|
|
|
|
// *** connectivity queries
|
|
|
|
template<typename T>
|
|
int vertexToEdges(const vertex_t *v, T result) const;
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
struct Geometry<3> : public Object {
|
|
typedef Vertex<3> vertex_t;
|
|
typedef Edge<3> edge_t;
|
|
typedef Face<3> face_t;
|
|
|
|
struct Connectivity {
|
|
std::vector<std::vector<const edge_t *> > vertex_to_edge;
|
|
std::vector<std::vector<const face_t *> > vertex_to_face;
|
|
std::vector<std::vector<const face_t *> > edge_to_face;
|
|
} connectivity;
|
|
|
|
std::vector<vertex_t> vertices;
|
|
std::vector<edge_t> edges;
|
|
std::vector<face_t> faces;
|
|
|
|
ptrdiff_t vertexToIndex_fast(const vertex_t *v) const { return ptrToIndex_fast(vertices, v); }
|
|
ptrdiff_t vertexToIndex(const vertex_t *v) const { return ptrToIndex(vertices, v); }
|
|
|
|
ptrdiff_t edgeToIndex_fast(const edge_t *e) const { return ptrToIndex_fast(edges, e); }
|
|
ptrdiff_t edgeToIndex(const edge_t *e) const { return ptrToIndex(edges, e); }
|
|
|
|
ptrdiff_t faceToIndex_fast(const face_t *f) const { return ptrToIndex_fast(faces, f); }
|
|
ptrdiff_t faceToIndex(const face_t *f) const { return ptrToIndex(faces, f); }
|
|
|
|
template<typename order_t>
|
|
bool orderVertices(order_t order);
|
|
|
|
bool orderVertices() { return orderVertices(std::less<vertex_t::vector_t>()); }
|
|
|
|
|
|
|
|
// *** connectivity queries
|
|
|
|
const face_t *connectedFace(const face_t *, const edge_t *) const;
|
|
|
|
template<typename T>
|
|
int _faceNeighbourhood(const face_t *f, int depth, T *result) const;
|
|
|
|
template<typename T>
|
|
int faceNeighbourhood(const face_t *f, int depth, T result) const;
|
|
|
|
template<typename T>
|
|
int faceNeighbourhood(const edge_t *e, int m_id, int depth, T result) const;
|
|
|
|
template<typename T>
|
|
int faceNeighbourhood(const vertex_t *v, int m_id, int depth, T result) const;
|
|
|
|
template<typename T>
|
|
int vertexToEdges(const vertex_t *v, T result) const;
|
|
|
|
template<typename T>
|
|
int edgeToFaces(const edge_t *e, T result) const;
|
|
|
|
template<typename T>
|
|
int vertexToFaces(const vertex_t *v, T result) const;
|
|
};
|
|
|
|
|
|
|
|
}
|
|
}
|