From f7bb5c1b8c3d5a6b2ed86d16657eea051a565fe8 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 28 Jul 2021 07:30:13 -0700 Subject: [PATCH] If there is multisampling, don't have an antialias width --- manimlib/scene/three_d_scene.py | 1 + 1 file changed, 1 insertion(+) diff --git a/manimlib/scene/three_d_scene.py b/manimlib/scene/three_d_scene.py index 2d29fff8..728d1d37 100644 --- a/manimlib/scene/three_d_scene.py +++ b/manimlib/scene/three_d_scene.py @@ -5,6 +5,7 @@ class ThreeDScene(Scene): CONFIG = { "camera_config": { "samples": 4, + "anti_alias_width": 0, } }