3b1b-manim/manimlib/shaders/newton_fractal/vert.glsl

14 lines
264 B
Text
Raw Normal View History

2021-10-01 12:34:06 -07:00
#version 330
in vec3 point;
out vec3 xyz_coords;
uniform float scale_factor;
uniform vec3 offset;
#INSERT get_gl_Position.glsl
void main(){
xyz_coords = (point - offset) / scale_factor;
gl_Position = get_gl_Position(position_point_into_frame(point));
}