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

  1. #ifndef K3DSDK_POINT_GROUP_H
  2. #define K3DSDK_POINT_GROUP_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 point_group
  29. {
  30.  
  31. /// Gathers the member arrays of a point_group primitive into a convenient package
  32. class const_primitive
  33. {
  34. public:
  35.     const_primitive(
  36.         const typed_array<imaterial*>& Material,
  37.         const uint_t_array& Points,
  38.         const attribute_arrays& ConstantData,
  39.         const attribute_arrays& VaryingData
  40.         );
  41.  
  42.     const typed_array<imaterial*>& material;
  43.     const uint_t_array& points;
  44.     const attribute_arrays& constant_data;
  45.     const attribute_arrays& varying_data;
  46. };
  47.  
  48. /// Gathers the member arrays of a point_group primitive into a convenient package
  49. class primitive
  50. {
  51. public:
  52.     primitive(
  53.         typed_array<imaterial*>& Material,
  54.         uint_t_array& Points,
  55.         attribute_arrays& ConstantData,
  56.         attribute_arrays& VaryingData
  57.         );
  58.  
  59.     typed_array<imaterial*>& material;
  60.     uint_t_array& points;
  61.     attribute_arrays& constant_data;
  62.     attribute_arrays& varying_data;
  63. };
  64.  
  65. /// Creates a new point_group mesh primitive, returning references to its member arrays.
  66. /// The caller is responsible for the lifetime of the returned object.
  67. primitive* create(mesh& Mesh);
  68.  
  69. /// Tests the given mesh primitive to see if it is a valid point_group primitive, returning references to its member arrays, or NULL.
  70. /// The caller is responsible for the lifetime of the returned object.
  71. const_primitive* validate(const mesh::primitive& GenericPrimitive);
  72. /// Tests the given mesh primitive to see if it is a valid point_group primitive, returning references to its member arrays, or NULL.
  73. /// The caller is responsible for the lifetime of the returned object.
  74. primitive* validate(mesh::primitive& GenericPrimitive);
  75.  
  76. } // namespace point_group
  77.  
  78. } // namespace k3d
  79.  
  80. #endif // !K3DSDK_POINT_GROUP_H
  81.  
  82.