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

  1. #ifndef K3DSDK_TORUS_H
  2. #define K3DSDK_TORUS_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 torus
  29. {
  30.  
  31. /// Gathers the member arrays of a torus 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::doubles_t& MajorRadii,
  39.         const mesh::doubles_t& MinorRadii,
  40.         const mesh::doubles_t& PhiMin,
  41.         const mesh::doubles_t& PhiMax,
  42.         const mesh::doubles_t& SweepAngles,
  43.         const mesh::selection_t& Selections,
  44.         const mesh::attribute_arrays_t& ConstantData,
  45.         const mesh::attribute_arrays_t& UniformData,
  46.         const mesh::attribute_arrays_t& VaryingData);
  47.  
  48.     const mesh::matrices_t& matrices;
  49.     const mesh::materials_t& materials;
  50.     const mesh::doubles_t& major_radii;
  51.     const mesh::doubles_t& minor_radii;
  52.     const mesh::doubles_t& phi_min;
  53.     const mesh::doubles_t& phi_max;
  54.     const mesh::doubles_t& sweep_angles;
  55.     const mesh::selection_t& selections;
  56.     const mesh::attribute_arrays_t& constant_data;
  57.     const mesh::attribute_arrays_t& uniform_data;
  58.     const mesh::attribute_arrays_t& varying_data;
  59. };
  60.  
  61. /// Gathers the member arrays of a torus primitive into a convenient package
  62. class primitive
  63. {
  64. public:
  65.     primitive(
  66.         mesh::matrices_t& Matrices,
  67.         mesh::materials_t& Materials,
  68.         mesh::doubles_t& MajorRadii,
  69.         mesh::doubles_t& MinorRadii,
  70.         mesh::doubles_t& PhiMin,
  71.         mesh::doubles_t& PhiMax,
  72.         mesh::doubles_t& SweepAngles,
  73.         mesh::selection_t& Selections,
  74.         mesh::attribute_arrays_t& ConstantData,
  75.         mesh::attribute_arrays_t& UniformData,
  76.         mesh::attribute_arrays_t& VaryingData);
  77.  
  78.     mesh::matrices_t& matrices;
  79.     mesh::materials_t& materials;
  80.     mesh::doubles_t& major_radii;
  81.     mesh::doubles_t& minor_radii;
  82.     mesh::doubles_t& phi_min;
  83.     mesh::doubles_t& phi_max;
  84.     mesh::doubles_t& sweep_angles;
  85.     mesh::selection_t& selections;
  86.     mesh::attribute_arrays_t& constant_data;
  87.     mesh::attribute_arrays_t& uniform_data;
  88.     mesh::attribute_arrays_t& varying_data;
  89. };
  90.  
  91. /// Creates a new torus mesh primitive, returning references to its member arrays.
  92. /// The caller is responsible for the lifetime of the returned object.
  93. primitive* create(mesh& Mesh);
  94.  
  95. /// Tests the given mesh primitive to see if it is a valid torus primitive, returning references to its member arrays, or NULL.
  96. /// The caller is responsible for the lifetime of the returned object.
  97. const_primitive* validate(const mesh::primitive& GenericPrimitive);
  98. /// Tests the given mesh primitive to see if it is a valid torus primitive, returning references to its member arrays, or NULL.
  99. /// The caller is responsible for the lifetime of the returned object.
  100. primitive* validate(mesh::primitive& GenericPrimitive);
  101.  
  102. } // namespace torus
  103.  
  104. } // namespace k3d
  105.  
  106. #endif // !K3DSDK_TORUS_H
  107.  
  108.