home *** CD-ROM | disk | FTP | other *** search
- #ifndef K3DSDK_TEAPOT_H
- #define K3DSDK_TEAPOT_H
-
- // K-3D
- // Copyright (c) 1995-2008, Timothy M. Shead
- //
- // Contact: tshead@k-3d.com
- //
- // This program is free software; you can redistribute it and/or
- // modify it under the terms of the GNU General Public
- // License as published by the Free Software Foundation; either
- // version 2 of the License, or (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- // General Public License for more details.
- //
- // You should have received a copy of the GNU General Public
- // License along with this program; if not, write to the Free Software
- // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
- #include "mesh.h"
-
- namespace k3d
- {
-
- namespace teapot
- {
-
- /// Gathers the member arrays of a teapot primitive into a convenient package
- class const_primitive
- {
- public:
- const_primitive(
- const mesh::matrices_t& Matrices,
- const mesh::materials_t& Materials,
- const mesh::selection_t& Selections,
- const mesh::attribute_arrays_t& ConstantData,
- const mesh::attribute_arrays_t& UniformData);
-
- const mesh::matrices_t& matrices;
- const mesh::materials_t& materials;
- const mesh::selection_t& selections;
- const mesh::attribute_arrays_t& constant_data;
- const mesh::attribute_arrays_t& uniform_data;
- };
-
- /// Gathers the member arrays of a teapot primitive into a convenient package
- class primitive
- {
- public:
- primitive(
- mesh::matrices_t& Matrices,
- mesh::materials_t& Materials,
- mesh::selection_t& Selections,
- mesh::attribute_arrays_t& ConstantData,
- mesh::attribute_arrays_t& UniformData);
-
- mesh::matrices_t& matrices;
- mesh::materials_t& materials;
- mesh::selection_t& selections;
- mesh::attribute_arrays_t& constant_data;
- mesh::attribute_arrays_t& uniform_data;
- };
-
- /// Creates a new teapot mesh primitive, returning references to its member arrays.
- /// The caller is responsible for the lifetime of the returned object.
- primitive* create(mesh& Mesh);
-
- /// Tests the given mesh primitive to see if it is a valid teapot primitive, returning references to its member arrays, or NULL.
- /// The caller is responsible for the lifetime of the returned object.
- const_primitive* validate(const mesh::primitive& GenericPrimitive);
- /// Tests the given mesh primitive to see if it is a valid teapot primitive, returning references to its member arrays, or NULL.
- /// The caller is responsible for the lifetime of the returned object.
- primitive* validate(mesh::primitive& GenericPrimitive);
-
- typedef double_t points_array_t[306][3];
- typedef uint_t patches_array_t[32][16];
-
- /// Returns an array of points which can be used to recreate a Newell Teapot from scratch.
- const points_array_t& points();
- /// Returns an array of bicubic patch point-indices which can be used to recreate a Newell Teapot from scratch.
- const patches_array_t& patches();
-
- } // namespace teapot
-
- } // namespace k3d
-
- #endif // !K3DSDK_TEAPOT_H
-
-