MappingEnergyType.h 787 B

1234567891011121314151617181920212223242526
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2018 Zhongshi Jiang <[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_MAPPINGENERGYTYPE_H
  9. #define IGL_MAPPINGENERGYTYPE_H
  10. namespace igl
  11. {
  12. /// Energy Types used for Parameterization/Mapping.
  13. /// Refer to SLIM [Rabinovich et al. 2017] for more details
  14. // Todo: Integrate with ARAPEnergyType
  15. enum MappingEnergyType
  16. {
  17. ARAP = 0,
  18. LOG_ARAP = 1,
  19. SYMMETRIC_DIRICHLET = 2,
  20. CONFORMAL = 3,
  21. EXP_CONFORMAL = 4,
  22. EXP_SYMMETRIC_DIRICHLET = 5,
  23. NUM_SLIM_ENERGY_TYPES = 6
  24. };
  25. }
  26. #endif