Skip to content

Commit bf5296c

Browse files
committed
undo spurious change
1 parent 6a9f7dd commit bf5296c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/material_data.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ struct material_data {
123123
user_material_func user_func;
124124
void *user_data;
125125

126+
// used for any variable material (USER, FILE, or GRID):
127+
// indicates whether we should use the fallback subpixel averaging via quadrature
128+
bool do_averaging;
129+
126130
// these fields used only if which_subclass==MATERIAL_FILE
127131
double *epsilon_data;
128132
size_t epsilon_dims[3];
@@ -158,10 +162,6 @@ struct material_data {
158162
*/
159163
enum { U_MIN = 0, U_PROD = 1, U_MEAN = 2, U_DEFAULT = 3 } material_grid_kinds;
160164

161-
// used for any variable material (USER, FILE, or GRID):
162-
// indicates whether we should use the fallback subpixel averaging via quadrature
163-
bool do_averaging;
164-
165165
material_data();
166166

167167
void copy_from(const material_data& from);

0 commit comments

Comments
 (0)