MeshBooleanType.h 731 B

1234567891011121314151617181920212223242526
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2015 Alec Jacobson <[email protected]>
  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_BOOLEAN_MESH_BOOLEAN_TYPE_H
  9. #define IGL_BOOLEAN_MESH_BOOLEAN_TYPE_H
  10. namespace igl
  11. {
  12. namespace boolean
  13. {
  14. enum MeshBooleanType
  15. {
  16. MESH_BOOLEAN_TYPE_UNION = 0,
  17. MESH_BOOLEAN_TYPE_INTERSECT = 1,
  18. MESH_BOOLEAN_TYPE_MINUS = 2,
  19. MESH_BOOLEAN_TYPE_XOR = 3,
  20. MESH_BOOLEAN_TYPE_RESOLVE = 4,
  21. NUM_MESH_BOOLEAN_TYPES = 5
  22. };
  23. }
  24. };
  25. #endif