mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
16 lines
226 B
Text
16 lines
226 B
Text
![]() |
#version 330
|
||
|
|
||
|
in vec2 point;
|
||
|
in vec4 color;
|
||
|
in float fill_type;
|
||
|
|
||
|
out vec2 bp; // Bezier control point
|
||
|
out vec4 v_color;
|
||
|
out float v_fill_type;
|
||
|
|
||
|
|
||
|
void main(){
|
||
|
bp = point;
|
||
|
v_color = color;
|
||
|
v_fill_type = fill_type;
|
||
|
}
|