mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
15 lines
246 B
Text
15 lines
246 B
Text
![]() |
#version 330
|
||
|
|
||
|
uniform float scale;
|
||
|
uniform float aspect_ratio;
|
||
|
uniform float anti_alias_width;
|
||
|
uniform vec3 frame_center;
|
||
|
|
||
|
in vec3 point;
|
||
|
|
||
|
// Analog of import for manim only
|
||
|
#INSERT set_gl_Position.glsl
|
||
|
|
||
|
void main(){
|
||
|
set_gl_Position(point);
|
||
|
}
|