Sketch ini

This commit is contained in:
Ilusha 2024-03-17 10:04:52 +03:00 committed by IlyaShurupov
parent be0177b1b0
commit b8bab2264f
16 changed files with 2510 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#version 330 core
layout(location = 0) in vec4 point;
out float thickness;
uniform mat4 MVP;
void main() {
thickness = point.w;
// gl_Position = MVP * vec4(point.xyz, 1);
vec4 vec = MVP * vec4(point.xyz, 1);
vec.z *= vec.w;
gl_Position = vec;
}