From 1cba259d431ddeaf4588b0898e36b9379ba8f8e3 Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Wed, 18 May 2022 19:58:38 +0530 Subject: [PATCH] Update torus.c --- torus.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/torus.c b/torus.c index a635112..4937aae 100644 --- a/torus.c +++ b/torus.c @@ -199,7 +199,9 @@ Copyright (c) 2021 Arkaprabha Chakraborty\n"); screen_dist = term_size * 5 * 3 / (8 * (1 + 2)); } - // Building, dumping and clearing the frame into the terminal + // Building the frame + // Dumping the frame into the terminal + // Clearing the frame from the terminal buffer = build_frame(buffer, term_size, i, screen_dist); dump_frame(buffer, term_size); clear_terminal(); @@ -213,7 +215,9 @@ Copyright (c) 2021 Arkaprabha Chakraborty\n"); screen_dist = term_size * 5 * 3 / (8 * (1 + 2)); for (int i = 0; !limit || i < frames; ++i) { - // Building, dumping and clearing the frame into the terminal + // Building the frame + // Dumping the frame into the terminal + // Clearing the frame from the terminal buffer = build_frame(buffer, term_size, i, screen_dist); dump_frame(buffer, term_size); clear_terminal();