8 layout(location= 0) in
vec3 position;
9 out
vec3 vertex_position;
11 uniform mat4 modelMatrix;
12 uniform mat4 vpMatrix;
13 uniform mat4 viewMatrix;
15 uniform mat4 objectMatrix;
19 gl_Position= vpMatrix * objectMatrix * modelMatrix *
vec4(position, 1);
22 vertex_position=
vec3(viewMatrix * objectMatrix * modelMatrix *
vec4(position, 1));
27 #ifdef FRAGMENT_SHADER
29 in
vec3 vertex_position;
31 out
vec4 fragment_color;
42 float cos_theta=
max(0.0, normal.z);
43 color= color * cos_theta;
45 fragment_color=
vec4(color.rgb, 1);
Point max(const Point &a, const Point &b)
renvoie la plus grande composante de chaque point. x, y, z= max(a.x, b.x), max(a.y,...
Vector normalize(const Vector &v)
renvoie un vecteur unitaire / longueur == 1.
Vector cross(const Vector &u, const Vector &v)
renvoie le produit vectoriel de 2 vecteurs.
vecteur generique, utilitaire.
vecteur generique 4d, ou 3d homogene, utilitaire.