fixup to minimize improve

This commit is contained in:
Zeno Rogue 2023-04-15 01:15:35 +02:00
parent 1271c9162a
commit 70842eb6e9
1 changed files with 5 additions and 2 deletions

View File

@ -124,11 +124,14 @@ struct glmatrix {
color[2] = b;
color[3] = 1;
}
colored_vertex(hyperpoint h, color_t col) {
coords = pointtogl(h);
void set_color(color_t col) {
for(int i=0; i<4; i++)
color[i] = part(col, 3-i) / 255.0;
}
colored_vertex(hyperpoint h, color_t col) {
coords = pointtogl(h);
set_color(col);
}
};
struct textured_vertex {