From 099aaaee43f8b44f9f62a9fe42e30cad08e5b5d9 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 7 Aug 2024 14:46:26 -0500 Subject: [PATCH] Increase polyline factor --- manimlib/shaders/quadratic_bezier_stroke/geom.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/shaders/quadratic_bezier_stroke/geom.glsl b/manimlib/shaders/quadratic_bezier_stroke/geom.glsl index 1b6ecdc9..9e9117b6 100644 --- a/manimlib/shaders/quadratic_bezier_stroke/geom.glsl +++ b/manimlib/shaders/quadratic_bezier_stroke/geom.glsl @@ -30,7 +30,7 @@ const int MITER_JOINT = 3; // consider them aligned const float COS_THRESHOLD = 0.999; // Used to determine how many lines to break the curve into -const float POLYLINE_FACTOR = 30; +const float POLYLINE_FACTOR = 100; const int MAX_STEPS = 32; #INSERT emit_gl_Position.glsl