MappingEnergyType.h 733 B

1234567891011121314151617181920212223242526
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2018 Zhongshi Jiang <jiangzs@nyu.edu>
  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,
  18. LOG_ARAP,
  19. SYMMETRIC_DIRICHLET,
  20. CONFORMAL,
  21. EXP_CONFORMAL,
  22. EXP_SYMMETRIC_DIRICHLET
  23. };
  24. }
  25. #endif