NvRemoveTjunctions.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #ifndef REMOVE_TJUNCTIONS_H
  2. #define REMOVE_TJUNCTIONS_H
  3. /*
  4. NvRemoveTjunctions.h : A code snippet to remove tjunctions from a triangle mesh. This version is currently disabled as it appears to have a bug.
  5. */
  6. #include "NvUserMemAlloc.h"
  7. /*!
  8. **
  9. ** Copyright (c) 2009 by John W. Ratcliff mailto:[email protected]
  10. **
  11. ** Portions of this source has been released with the PhysXViewer application, as well as
  12. ** Rocket, CreateDynamics, ODF, and as a number of sample code snippets.
  13. **
  14. ** If you find this code useful or you are feeling particularily generous I would
  15. ** ask that you please go to http://www.amillionpixels.us and make a donation
  16. ** to Troy DeMolay.
  17. **
  18. ** DeMolay is a youth group for young men between the ages of 12 and 21.
  19. ** It teaches strong moral principles, as well as leadership skills and
  20. ** public speaking. The donations page uses the 'pay for pixels' paradigm
  21. ** where, in this case, a pixel is only a single penny. Donations can be
  22. ** made for as small as $4 or as high as a $100 block. Each person who donates
  23. ** will get a link to their own site as well as acknowledgement on the
  24. ** donations blog located here http://www.amillionpixels.blogspot.com/
  25. **
  26. ** If you wish to contact me you can use the following methods:
  27. **
  28. ** Skype ID: jratcliff63367
  29. ** Yahoo: jratcliff63367
  30. ** AOL: jratcliff1961
  31. ** email: [email protected]
  32. **
  33. **
  34. ** The MIT license:
  35. **
  36. ** Permission is hereby granted, free of charge, to any person obtaining a copy
  37. ** of this software and associated documentation files (the "Software"), to deal
  38. ** in the Software without restriction, including without limitation the rights
  39. ** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  40. ** copies of the Software, and to permit persons to whom the Software is furnished
  41. ** to do so, subject to the following conditions:
  42. **
  43. ** The above copyright notice and this permission notice shall be included in all
  44. ** copies or substantial portions of the Software.
  45. ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  46. ** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  47. ** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  48. ** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  49. ** WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  50. ** CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  51. */
  52. namespace CONVEX_DECOMPOSITION
  53. {
  54. class RemoveTjunctionsDesc
  55. {
  56. public:
  57. RemoveTjunctionsDesc(void)
  58. {
  59. mVcount = 0;
  60. mVertices = 0;
  61. mTcount = 0;
  62. mIndices = 0;
  63. mIds = 0;
  64. mTcountOut = 0;
  65. mIndicesOut = 0;
  66. mIdsOut = 0;
  67. mEpsilon = 0.00000001f;
  68. }
  69. // input
  70. NxF32 mEpsilon;
  71. NxF32 mDistanceEpsilon;
  72. NxU32 mVcount; // input vertice count.
  73. const NxF32 *mVertices; // input vertices as NxF32s or...
  74. NxU32 mTcount; // number of input triangles.
  75. const NxU32 *mIndices; // triangle indices.
  76. const NxU32 *mIds; // optional triangle Id numbers.
  77. // output..
  78. NxU32 mTcountOut; // number of output triangles.
  79. const NxU32 *mIndicesOut; // output triangle indices
  80. const NxU32 *mIdsOut; // output retained id numbers.
  81. };
  82. // Removes t-junctions from an input mesh. Does not generate any new data points, but may possible produce additional triangles and new indices.
  83. class RemoveTjunctions
  84. {
  85. public:
  86. virtual NxU32 removeTjunctions(RemoveTjunctionsDesc &desc) =0; // returns number of triangles output and the descriptor is filled with the appropriate results.
  87. };
  88. RemoveTjunctions * createRemoveTjunctions(void);
  89. void releaseRemoveTjunctions(RemoveTjunctions *tj);
  90. }; // end of namespace
  91. #endif