From a96a0e7673a1cfb614da9ff3449283dcc934ae69 Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Mon, 4 Dec 2023 18:10:20 +0530 Subject: [PATCH] Update README.rst --- README.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 22114792..a3cdfa5d 100644 --- a/README.rst +++ b/README.rst @@ -57,9 +57,11 @@ Python code for the sketch looks like: def key_pressed(event): background(204) - # p5 supports different backend to render sketches, viz "vispy" for both 2D and 3D sketches and "skia" for 2D sketches + # p5 supports different backends to render sketches, + # "vispy" for both 2D and 3D sketches & "skia" for 2D sketches + # use "skia" for better 2D experience # Default renderer is set to "vispy" - run(renderer="vispy") + run(renderer="vispy") # "skia" is still in beta Documentation -------------