mirror of
https://github.com/3b1b/manim.git
synced 2025-07-29 13:03:31 +08:00
13 lines
259 B
GLSL
13 lines
259 B
GLSL
#version 330
|
|
|
|
#INSERT camera_uniform_declarations.glsl
|
|
|
|
in vec3 point;
|
|
|
|
// Analog of import for manim only
|
|
#INSERT get_gl_Position.glsl
|
|
#INSERT position_point_into_frame.glsl
|
|
|
|
void main(){
|
|
gl_Position = get_gl_Position(position_point_into_frame(point));
|
|
} |