Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
marching_cells.h
1//import <GLUP/current_profile/marching_cells.h>
2
3int compute_config() {
4 int result = 0;
5 for(int v=0; v<cell_nb_vertices; ++v) {
6 if(dot(vertex_clip_space_in(v),GLUP.clip_clip_plane) > 0.0) {
7 result = result | (1 << v);
8 }
9 }
10 return result;
11}
12
13void emit_isect_vertex(in int i, in vec4 mesh_tex_coord) {
14#ifndef GLUP_NO_GL_CLIPPING
15 gl_ClipDistance[0] = 1.0;
16#endif
17 gl_Position = isect_point_clip_space[i];
18 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
19 VertexOut.color = isect_color[i];
20 }
21 if(glupIsEnabled(GLUP_TEXTURING)) {
22 VertexOut.tex_coord = isect_tex_coord[i];
23 }
24 if(glupIsEnabled(GLUP_DRAW_MESH)) {
25 VertexOut.mesh_tex_coord = mesh_tex_coord;
26 }
27 if(glupIsEnabled(GLUP_LIGHTING)) {
28 VertexOut.vertex_clip_space = gl_Position;
29 }
30 EmitVertex();
31}
32
33void isect_triangle(
34 in int i, in vec4 mtexi,
35 in int j, in vec4 mtexj,
36 in int k, in vec4 mtexk
37) {
38 emit_isect_vertex(i,mtexi);
39 emit_isect_vertex(j,mtexj);
40 emit_isect_vertex(k,mtexk);
41}
42
43void draw_marching_cell() {
44 int config = compute_config();
45
46
47 if(config_size(config) == 0) {
48 return;
49 }
50
51 compute_intersections();
52 int size = config_size(config);
53
54 // Using instead if(glupIsEnabled(GLUP_DRAW_MESH)) crashes on NVidia driver
55 // so I directly test the state variable (a little bit less efficient, but
56 // does not crash) -> probably an NVidia GLSL compiler bug (crashes in
57 // memcpy when calling glLinkProgram()).
58 if(GLUP.draw_mesh_enabled) {
59 // Single triangle: mesh tex coords are standard tri mesh tex coord.
60 if(size == 3) {
61 isect_triangle(
62 config_edge(config,0), vec4(1.0, 0.0, 0.0, 0.0),
63 config_edge(config,1), vec4(0.0, 1.0, 0.0, 0.0),
64 config_edge(config,2), vec4(0.0, 0.0, 1.0, 0.0)
65 );
66 } else {
67 // First triangle: draw mesh only on first wedge
68 // (let's pretend it is a wedge of a quad)
69 isect_triangle(
70 config_edge(config,0), vec4(0.0, 1.0, 0.0, 1.0),
71 config_edge(config,1), vec4(1.0, 0.0, 0.0, 1.0),
72 config_edge(config,2), vec4(1.0, 0.0, 1.0, 0.0)
73 );
74 // Middle triangles: draw mesh only on [i,i+1]
75 // (let's pretend that vertex i is the quad center)
76 for(int i=2; i+2<size; ++i) {
77 isect_triangle(
78 config_edge(config,0), vec4(0.5, 0.5, 0.5, 0.5),
79 config_edge(config,i), vec4(0.0, 1.0, 0.0, 1.0),
80 config_edge(config,i+1), vec4(1.0, 0.0, 0.0, 1.0)
81 );
82 }
83 // Last triangle: draw mesh only on last wedge
84 // (let's pretend it is a wedge of a quad)
85 isect_triangle(
86 config_edge(config,0), vec4(0.0, 1.0, 0.0, 1.0),
87 config_edge(config,size-2), vec4(1.0, 0.0, 1.0, 0.0),
88 config_edge(config,size-1), vec4(1.0, 0.0, 0.0, 1.0)
89 );
90 }
91 } else {
92 for(int i=1; i+1<size; ++i) {
93 isect_triangle(
94 config_edge(config,0), vec4(0.0, 0.0, 0.0, 0.0),
95 config_edge(config,i), vec4(0.0, 0.0, 0.0, 0.0),
96 config_edge(config,i+1), vec4(0.0, 0.0, 0.0, 0.0)
97 );
98 }
99 }
100}
101
102bool compute_clip_coords() {
103 return (
104 glupIsEnabled(GLUP_CLIPPING) &&
105 GLUP.clipping_mode==GLUP_CLIP_STANDARD
106 );
107}
108
109bool draw_clipped_cell() {
110 if(cell_is_clipped()) {
111 return true;
112 }
113 gl_PrimitiveID = gl_PrimitiveIDIn;
114 get_vertices();
115 if(
116 glupIsEnabled(GLUP_CLIPPING) &&
117 GLUP.clipping_mode == GLUP_CLIP_SLICE_CELLS
118 ) {
119 draw_marching_cell();
120 return true;
121 }
122 return false;
123}
T dot(const vecng< 3, T > &v1, const vecng< 3, T > &v2)
Computes the dot product of 2 vectors. vecng
Definition vecg.h:916
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71