home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / include / k3d / k3dsdk / teapot.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-01-24  |  3.0 KB  |  92 lines

  1. #ifndef K3DSDK_TEAPOT_H
  2. #define K3DSDK_TEAPOT_H
  3.  
  4. // K-3D
  5. // Copyright (c) 1995-2008, Timothy M. Shead
  6. //
  7. // Contact: tshead@k-3d.com
  8. //
  9. // This program is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. // General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public
  20. // License along with this program; if not, write to the Free Software
  21. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  
  23. #include "mesh.h"
  24.  
  25. namespace k3d
  26. {
  27.  
  28. namespace teapot
  29. {
  30.  
  31. /// Gathers the member arrays of a teapot primitive into a convenient package
  32. class const_primitive
  33. {
  34. public:
  35.     const_primitive(
  36.         const mesh::matrices_t& Matrices,
  37.         const mesh::materials_t& Materials,
  38.         const mesh::selection_t& Selections,
  39.         const mesh::attribute_arrays_t& ConstantData,
  40.         const mesh::attribute_arrays_t& UniformData);
  41.  
  42.     const mesh::matrices_t& matrices;
  43.     const mesh::materials_t& materials;
  44.     const mesh::selection_t& selections;
  45.     const mesh::attribute_arrays_t& constant_data;
  46.     const mesh::attribute_arrays_t& uniform_data;
  47. };
  48.  
  49. /// Gathers the member arrays of a teapot primitive into a convenient package
  50. class primitive
  51. {
  52. public:
  53.     primitive(
  54.         mesh::matrices_t& Matrices,
  55.         mesh::materials_t& Materials,
  56.         mesh::selection_t& Selections,
  57.         mesh::attribute_arrays_t& ConstantData,
  58.         mesh::attribute_arrays_t& UniformData);
  59.  
  60.     mesh::matrices_t& matrices;
  61.     mesh::materials_t& materials;
  62.     mesh::selection_t& selections;
  63.     mesh::attribute_arrays_t& constant_data;
  64.     mesh::attribute_arrays_t& uniform_data;
  65. };
  66.  
  67. /// Creates a new teapot mesh primitive, returning references to its member arrays.
  68. /// The caller is responsible for the lifetime of the returned object.
  69. primitive* create(mesh& Mesh);
  70.  
  71. /// Tests the given mesh primitive to see if it is a valid teapot primitive, returning references to its member arrays, or NULL.
  72. /// The caller is responsible for the lifetime of the returned object.
  73. const_primitive* validate(const mesh::primitive& GenericPrimitive);
  74. /// Tests the given mesh primitive to see if it is a valid teapot primitive, returning references to its member arrays, or NULL.
  75. /// The caller is responsible for the lifetime of the returned object.
  76. primitive* validate(mesh::primitive& GenericPrimitive);
  77.  
  78. typedef double_t points_array_t[306][3];
  79. typedef uint_t patches_array_t[32][16];
  80.  
  81. /// Returns an array of points which can be used to recreate a Newell Teapot from scratch.
  82. const points_array_t& points();
  83. /// Returns an array of bicubic patch point-indices which can be used to recreate a Newell Teapot from scratch.
  84. const patches_array_t& patches();
  85.  
  86. } // namespace teapot
  87.  
  88. } // namespace k3d
  89.  
  90. #endif // !K3DSDK_TEAPOT_H
  91.  
  92.