epaississement.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*************************************/
  2. /* Auteur : Rémi Synave */
  3. /* Date de création : 24/02/09 */
  4. /* Date de modification : 08/01/10 */
  5. /* Version : 0.4 */
  6. /*************************************/
  7. /***************************************************************************/
  8. /* This file is part of a2ri. */
  9. /* */
  10. /* a2ri is free software: you can redistribute it and/or modify it */
  11. /* under the terms of the GNU Lesser General Public License as published */
  12. /* by the Free Software Foundation, either version 3 of the License, or */
  13. /* (at your option) any later version. */
  14. /* */
  15. /* a2ri is distributed in the hope that it will be useful, */
  16. /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  17. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  18. /* GNU Lesser General Public License for more details. */
  19. /* */
  20. /* You should have received a copy of the GNU Lesser General Public */
  21. /* License along with a2ri. */
  22. /* If not, see <http://www.gnu.org/licenses/>. */
  23. /***************************************************************************/
  24. #ifndef EPAISSISSEMENT__H
  25. #define EPAISSISSEMENT__H
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include "util.h"
  29. #include "vertex.h"
  30. #include "edge.h"
  31. #include "face.h"
  32. #include "point.h"
  33. #include "model.h"
  34. #include "geometry.h"
  35. #include "hashtable.h"
  36. #include "subdivision.h"
  37. /**
  38. Epaississement de la surface d'un maillage triangulaire
  39. @param m le modèle à épaissir
  40. @param epaisseur épaisseur de la surface souhaitée
  41. @return aucun
  42. **/
  43. void a2ri_vf_epaissi_surface (
  44. vf_model * m,
  45. double epaisseur);
  46. #endif