Skip to content
Snippets Groups Projects
Commit 84b70d26 authored by slevy's avatar slevy
Browse files

Don't need no stinking S_TEX3D special case, it's just part of the general case now.

parent 68c697fe
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ struct AMRbox {
};
enum SurfStyle {
S_SOLID, S_LINE, S_PLANE, S_POINT, S_OFF, S_TEX3D
S_SOLID, S_LINE, S_PLANE, S_POINT, S_HALO, S_OFF
};
enum MeshType {
......@@ -113,6 +113,7 @@ struct mesh {
Point *vnorms; /* vnorms[nvnorms] vertex normals, or NULL */
Point *fnorms; /* fnorms[nfnorms] facet normals, or NULL if absent */
Point *fcolors; /* fcolors[nfaces] RGB colors stored in Point's, or NULL if absent */
float haloth; /* halo threshold */
};
struct ellipsoid {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment