mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
14 lines
No EOL
208 B
GLSL
14 lines
No EOL
208 B
GLSL
#version 330
|
|
|
|
in vec3 point;
|
|
in vec3 base_point;
|
|
|
|
out vec3 verts;
|
|
out vec3 v_base_point;
|
|
out int v_vert_index;
|
|
|
|
void main(){
|
|
verts = point;
|
|
v_base_point = base_point;
|
|
v_vert_index = gl_VertexID;
|
|
} |