Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
voxel_grob.h
Go to the documentation of this file.
1/*
2 * OGF/Graphite: Geometry and Graphics Programming Library + Utilities
3 * Copyright (C) 2000-2009 INRIA - Project ALICE
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * If you modify this software, you should include a notice giving the
20 * name of the person performing the modification, the date of modification,
21 * and the reason for such modification.
22 *
23 * Contact: Bruno Levy - levy@loria.fr
24 *
25 * Project ALICE
26 * LORIA, INRIA Lorraine,
27 * Campus Scientifique, BP 239
28 * 54506 VANDOEUVRE LES NANCY CEDEX
29 * FRANCE
30 *
31 * Note that the GNU General Public License does not permit incorporating
32 * the Software into proprietary programs.
33 *
34 * As an exception to the GPL, Graphite can be linked
35 * with the following (non-GPL) libraries:
36 * Qt, SuperLU, WildMagic and CGAL
37 */
38
39
40#ifndef H_OGF_GRAPHITE_VOXEL_VOXEL_GROB_H
41#define H_OGF_GRAPHITE_VOXEL_VOXEL_GROB_H
42
46
51namespace OGF {
52
56 gom_class VOXEL_API VoxelGrob : public Grob {
57 public:
64
70
75 const vec3& origin() const {
76 return origin_;
77 }
78
83 const vec3& U() const {
84 return U_;
85 }
86
91 const vec3& V() const {
92 return V_;
93 }
94
99 const vec3& W() const {
100 return W_;
101 }
102
107 index_t nu() const {
108 return nu_;
109 }
110
115 index_t nv() const {
116 return nv_;
117 }
118
123 index_t nw() const {
124 return nw_;
125 }
126
133 void resize(index_t nu, index_t nv, index_t nw);
134
143 const vec3& origin, const vec3& U, const vec3& V, const vec3& W
144 );
145
153 geo_debug_assert(u < nu());
154 geo_debug_assert(v < nv());
155 geo_debug_assert(w < nw());
156 return u + nu_ * (v + nv_ * w);
157 }
158
162 void clear() override;
163
167 Grob* duplicate(SceneGraph* sg) override;
168
172 bool is_serializable() const override;
173
177 bool serialize_read(InputGraphiteFile& geofile) override;
178
182 bool serialize_write(OutputGraphiteFile& geofile) override;
183
184
185 gom_properties:
186
191 std::string get_displayable_attributes() const;
192
193
194
195 public:
199 void update() override;
200
201
205 Box3d bbox() const override;
206
216 SceneGraph* sg, const std::string& name
217 );
218
226 static VoxelGrob* find(SceneGraph* sg, const std::string& name);
227
236 return const_cast<AttributesManager&>(attributes_);
237 }
238
239 private:
240 AttributesManager attributes_;
241 index_t nu_;
242 index_t nv_;
243 index_t nw_;
244 vec3 origin_;
245 vec3 U_;
246 vec3 V_;
247 vec3 W_;
248 };
249
258
269}
270#endif
#define geo_debug_assert(x)
Verifies that a condition is met.
Definition assert.h:196
Generic mechanism for attributes.
Managers a set of attributes attached to an object.
Definition attributes.h:832
A 3d axis aligned box.
Definition geometry.h:235
A Composite Graphite Object.
Base class for all 3D Graphite objects.
Definition grob.h:68
An extension of InputGeoFile for storing a complete Graphite scenegraph in a structured binary file.
Definition geofile.h:67
A template class for strings that need to have a specific type in the GOM system.
Definition properties.h:218
An extension of InputGeoFile for storing a complete Graphite scenegraph in a structured binary file.
Definition geofile.h:129
Represents the list of objects loaded in Graphite.
Definition scene_graph.h:62
A Grob class for voxel grids.
Definition voxel_grob.h:56
AttributesManager & attributes() const
Gets the attributes manager.
Definition voxel_grob.h:235
VoxelGrob()
MeshGrob constructor. \detail used in scripts, when there is no existing SceneGraph.
bool is_serializable() const override
Tests whether this Grob can be serialized in GeoFile.
void update() override
index_t nv() const
Gets the size of the second axis.
Definition voxel_grob.h:115
const vec3 & origin() const
Gets the origin.
Definition voxel_grob.h:75
Grob * duplicate(SceneGraph *sg) override
Duplicates this Grob.
static VoxelGrob * find_or_create(SceneGraph *sg, const std::string &name)
Finds or creates a VoxelGrob with the specified name.
static VoxelGrob * find(SceneGraph *sg, const std::string &name)
Finds a VoxelGrob by name.
void clear() override
Clears this Grob.
index_t linear_index(index_t u, index_t v, index_t w) const
Converts (u,v,w) indices into a linear index.
Definition voxel_grob.h:152
const vec3 & U() const
Gets the first axis.
Definition voxel_grob.h:83
const vec3 & W() const
Gets the third axis.
Definition voxel_grob.h:99
VoxelGrob(CompositeGrob *parent)
VoxelGrob constructor.
index_t nw() const
Gets the size of the third axis.
Definition voxel_grob.h:123
const vec3 & V() const
Gets the second axis.
Definition voxel_grob.h:91
Box3d bbox() const override
Gets the bounding box.
void resize(index_t nu, index_t nv, index_t nw)
Defines the sizes in cells of the three axes.
bool serialize_read(InputGraphiteFile &geofile) override
Reads this Grob from a GeoFile.
void set_box(const vec3 &origin, const vec3 &U, const vec3 &V, const vec3 &W)
Sets the geometry of the box.
index_t nu() const
Gets the size of the first axis.
Definition voxel_grob.h:107
bool serialize_write(OutputGraphiteFile &geofile) override
Writes this Grob into a stream.
The base class for all 3D objects in the system.
geo_index_t index_t
The type for storing and manipulating indices.
Definition numeric.h:329
Global Graphite namespace.
Definition common.h:76
Name< VoxelGrob * > VoxelGrobName
The name of an existing VoxelGrob in the SceneGraph.
Definition voxel_grob.h:257
Name< VoxelGrob *, true > NewVoxelGrobName
The name of an (existing or not) VoxelGrob in the SceneGraph.
Definition voxel_grob.h:268
Definitions common to all include files in the voxel library.