RcContourSet.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
  3. recast4j copyright (c) 2015-2019 Piotr Piastucki piotr@jtilia.org
  4. DotRecast Copyright (c) 2023 Choi Ikpil ikpil@naver.com
  5. This software is provided 'as-is', without any express or implied
  6. warranty. In no event will the authors be held liable for any damages
  7. arising from the use of this software.
  8. Permission is granted to anyone to use this software for any purpose,
  9. including commercial applications, and to alter it and redistribute it
  10. freely, subject to the following restrictions:
  11. 1. The origin of this software must not be misrepresented; you must not
  12. claim that you wrote the original software. If you use this software
  13. in a product, an acknowledgment in the product documentation would be
  14. appreciated but is not required.
  15. 2. Altered source versions must be plainly marked as such, and must not be
  16. misrepresented as being the original software.
  17. 3. This notice may not be removed or altered from any source distribution.
  18. */
  19. using System.Collections.Generic;
  20. using DotRecast.Core;
  21. namespace DotRecast.Recast
  22. {
  23. /** Represents a group of related contours. */
  24. public class RcContourSet
  25. {
  26. /** A list of the contours in the set. */
  27. public List<RcContour> conts = new List<RcContour>();
  28. /** The minimum bounds in world space. [(x, y, z)] */
  29. public RcVec3f bmin = new RcVec3f();
  30. /** The maximum bounds in world space. [(x, y, z)] */
  31. public RcVec3f bmax = new RcVec3f();
  32. /** The size of each cell. (On the xz-plane.) */
  33. public float cs;
  34. /** The height of each cell. (The minimum increment along the y-axis.) */
  35. public float ch;
  36. /** The width of the set. (Along the x-axis in cell units.) */
  37. public int width;
  38. /** The height of the set. (Along the z-axis in cell units.) */
  39. public int height;
  40. /** The AABB border size used to generate the source data from which the contours were derived. */
  41. public int borderSize;
  42. /** The max edge error that this contour set was simplified with. */
  43. public float maxError;
  44. }
  45. }