DWinding.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. BobToolz plugin for GtkRadiant
  3. Copyright (C) 2001 Gordon Biggans
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  15. */
  16. // DWinding.h: interface for the DWinding class.
  17. //
  18. //////////////////////////////////////////////////////////////////////
  19. #if !defined(AFX_DWINDING_H__35B2C524_F0A7_11D4_ACF7_004095A18133__INCLUDED_)
  20. #define AFX_DWINDING_H__35B2C524_F0A7_11D4_ACF7_004095A18133__INCLUDED_
  21. #if _MSC_VER > 1000
  22. #pragma once
  23. #endif // _MSC_VER > 1000
  24. class DPlane;
  25. class DWinding
  26. {
  27. public:
  28. DWinding();
  29. virtual ~DWinding();
  30. void AllocWinding(int points);
  31. bool ChopWinding(DPlane* chopPlane);
  32. bool ChopWindingInPlace(DPlane* chopPlane, vec_t ON_EPSILON);
  33. void ClipWindingEpsilon(DPlane* chopPlane, vec_t epsilon, DWinding** front, DWinding** back);
  34. void CheckWinding();
  35. void WindingCentre(vec3_t centre);
  36. void WindingBounds(vec3_t mins, vec3_t maxs);
  37. void RemoveColinearPoints();
  38. DWinding* ReverseWinding();
  39. DWinding* CopyWinding();
  40. DPlane* WindingPlane();
  41. int WindingOnPlaneSide(vec3_t normal, vec_t dist);
  42. vec_t WindingArea();
  43. // members
  44. int numpoints;
  45. vec3_t* p;
  46. vec3_t clr;
  47. };
  48. #define MAX_POINTS_ON_WINDING 64
  49. #define ON_EPSILON 0.01
  50. #endif // !defined(AFX_DWINDING_H__35B2C524_F0A7_11D4_ACF7_004095A18133__INCLUDED_)