From a2013a4da6b4acf13ce23d70f6d75252b95fc5a4 Mon Sep 17 00:00:00 2001 From: AngelJumbo Date: Thu, 20 Oct 2022 19:48:19 -0500 Subject: [PATCH] Some tweaks --- lavat.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lavat.c b/lavat.c index 2bcfc7f..ca554fe 100644 --- a/lavat.c +++ b/lavat.c @@ -49,7 +49,7 @@ int main(int argc, char *argv[]) { int speed = (((1 / (float)(maxX + maxY)) * 5000000) + 50000) / speedMult; radius = (radius * radius + (float)(maxX * maxY)) / 15000; - int margin = contained ? radius * 6 : 0; + int margin = contained ? radius * 10 : 0; float sumConst = 0.0225; float sumConst2 = sumConst * (1 + (float)(0.25 * rim)); @@ -247,7 +247,10 @@ void print_help() { " -F Allows for a custom set of chars to be used\n" " Only ascii symbols are supported for now, " "wide/unicode chars may appear broken.\n" - " -C Make metaballs bounce right off the edge of the " - "terminal.\n" - " -h Print help.\n"); + " -C Retain the metaballs in the terminal(It may not " + "work well with a lot of balls or with bigger radius than the default " + "values).\n" + " -h Print help.\n" + "(Tip: Zoom out in your terminal before running the program to get a " + "better resolution of the lava).\n"); }