From d6e174dbd6baf13283049ed782732d601e693263 Mon Sep 17 00:00:00 2001 From: Svjatoslav Agejenko Date: Thu, 26 Jun 2025 17:18:28 +0300 Subject: [PATCH] Better code readability. --- 2D GFX/Presentations/AI/AI demo.bas | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/2D GFX/Presentations/AI/AI demo.bas b/2D GFX/Presentations/AI/AI demo.bas index 54c56ae..a8a4f51 100644 --- a/2D GFX/Presentations/AI/AI demo.bas +++ b/2D GFX/Presentations/AI/AI demo.bas @@ -701,7 +701,7 @@ SUB Scene3 LOCATE 1, 1 COLOR 254 SetPalette 0, 0, 0, 254 - PRINT "Tehisintellekt" + PRINT "Test 123456789" SetPalette 63, 0, 0, 253 ' Draw circles around the nonzero pixels of the printed text @@ -732,7 +732,7 @@ SUB Scene3 COLOR 253 SetPalette 0, 0, 0, 253 LOCATE 1 - PRINT " autor: Svjatoslav Agejenko 30.09.2001 " + PRINT " Author: Svjatoslav Agejenko 30.09.2001 " GET (0, 0)-(319, 8), bufferArray(1) LOCATE 1 @@ -760,19 +760,18 @@ SUB Scene4 SetPalette 32, 64, 32, 250 yOffset = 0 - PrintText 30, 70 + yOffset, 1, 250, " Spatial vision" + PrintText 30, 70 + yOffset, 1, 250, "Lorem ipsum dolor sit amet," yOffset = yOffset + 16 - PrintText 30, 70 + yOffset, 1, 250, "Object recognition" + PrintText 30, 70 + yOffset, 1, 250, "consectetur adipiscing elit," yOffset = yOffset + 20 - PrintText 30, 70 + yOffset, 1, 250, "Goal: + interpriteerimine" + PrintText 30, 70 + yOffset, 1, 250, "sed do eiusmod tempor incididunt" yOffset = yOffset + 16 - PrintText 30, 70 + yOffset, 1, 250, " + automaatjuhtimine" + PrintText 30, 70 + yOffset, 1, 250, "ut labore et dolore magna aliqua." WaitForInput END SUB -'------------------------------------------------------------------------------- SUB Scene5 ' ' Again creates a fractal background, draws a box, and explains @@ -786,17 +785,17 @@ SUB Scene5 SetPalette 32, 64, 32, 250 yOffset = -8 - PrintText 30, 70 + yOffset, 1, 250, "Tunnuste ekstraheerimise protsess" + PrintText 30, 70 + yOffset, 1, 250, "Ut enim ad minim veniam," yOffset = yOffset + 20 - PrintText 30, 70 + yOffset, 1, 250, "a) Laplace - Gaussi operaator;" + PrintText 30, 70 + yOffset, 1, 250, "quis nostrud exercitation ullamco" yOffset = yOffset + 12 - PrintText 30, 70 + yOffset, 1, 250, "b) lainekese teisenduse multi-" + PrintText 30, 70 + yOffset, 1, 250, "laboris nisi ut aliquip ex ea" yOffset = yOffset + 12 - PrintText 30, 70 + yOffset, 1, 250, " skaalaline serva avastamine;" + PrintText 30, 70 + yOffset, 1, 250, " commodo consequat. Duis aute" yOffset = yOffset + 12 - PrintText 30, 70 + yOffset, 1, 250, "c) h�perveeru teooria lihtsate" + PrintText 30, 70 + yOffset, 1, 250, " irure dolor in reprehenderit in" yOffset = yOffset + 12 - PrintText 30, 70 + yOffset, 1, 250, " rakkude p�him�tted." + PrintText 30, 70 + yOffset, 1, 250, " voluptate velit esse cillum" WaitForInput END SUB @@ -1175,8 +1174,6 @@ skipDrawing: finalArea: END SUB - -'------------------------------------------------------------------------------- SUB Scene9 ' ' Final scene: fractal background, a rounded box, and a short "Thank you" -- 2.20.1