libigl v2.5.0
Loading...
Searching...
No Matches
MeshBooleanType.h
Go to the documentation of this file.
1// This file is part of libigl, a simple c++ geometry processing library.
2//
3// Copyright (C) 2015 Alec Jacobson <alecjacobson@gmail.com>
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License
6// v. 2.0. If a copy of the MPL was not distributed with this file, You can
7// obtain one at http://mozilla.org/MPL/2.0/.
8#ifndef IGL_MESH_BOOLEAN_TYPE_H
9#define IGL_MESH_BOOLEAN_TYPE_H
10namespace igl
11{
28};
29
30#endif
Definition AABB.h:17
MeshBooleanType
Boolean operation types.
Definition MeshBooleanType.h:14
@ MESH_BOOLEAN_TYPE_MINUS
A \ B.
Definition MeshBooleanType.h:20
@ MESH_BOOLEAN_TYPE_XOR
A ⊕ B.
Definition MeshBooleanType.h:22
@ MESH_BOOLEAN_TYPE_INTERSECT
A ∩ B.
Definition MeshBooleanType.h:18
@ MESH_BOOLEAN_TYPE_UNION
A ∪ B.
Definition MeshBooleanType.h:16
@ MESH_BOOLEAN_TYPE_RESOLVE
Resolve intersections without removing any non-coplanar faces.
Definition MeshBooleanType.h:24
@ NUM_MESH_BOOLEAN_TYPES
Total number of Boolean options.
Definition MeshBooleanType.h:26