Small 25 line program - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Programs (https://qb64phoenix.com/forum/forumdisplay.php?fid=7) +---- Thread: Small 25 line program (/showthread.php?tid=1122) |
RE: Small 25 line program - dbox - 11-15-2022 Very cool. Impressive how much is going on in so little code. View in QBJS RE: Small 25 line program - bplus - 11-15-2022 Better with pset than circle radius 1, for sure! RE: Small 25 line program - SMcNeill - 11-15-2022 My little tweak to this routine. I think this gives me the prettiest little snow globe you guys ever did see! Code: (Select All) SCREEN 12 RE: Small 25 line program - CharlieJV - 11-16-2022 (11-15-2022, 11:33 PM)bplus Wrote: Better with pset than circle radius 1, for sure! No kidding. CIRCLE statements in a loop bring BAM to a brutal crawl. That, dbox, is a wickedly cool version that I just had to try; PSET makes a ginormous difference: RE: Small 25 line program - bplus - 11-20-2022 I found another version of this through Johnno at RCBasic which came from Marcus at Naalaa from SpecBas by Paul Dunn, so this gets around! I like coloring and slowed it down with making t much smaller: Code: (Select All) Const xmax = 512, ymax = 512 RE: Small 25 line program - Pete - 11-20-2022 Didn't you used to have an avatar from that planet? Pete RE: Small 25 line program - bplus - 11-20-2022 Yes a space ship: Code: (Select All) Option _Explicit ' b+ changing avatar challenge entry #3 2021-05-26 RE: Small 25 line program - CharlieJV - 11-20-2022 (11-20-2022, 09:49 AM)bplus Wrote: I found another version of this through Johnno at RCBasic which came from Marcus at Naalaa from SpecBas by Paul Dunn, so this gets around! I like coloring and slowed it down with making t much smaller: That is stunningly beautiful. Thanks for sharing! BAM version: RE: Small 25 line program - bplus - 11-20-2022 Thanks Charlie, I wish I came up with this originally. BTW works in QBJS without mod: https://qbjs.org/index.html?code=Q29uc3QgeG1heCA9IDUxMiwgeckMCl9UaXRsZSAiQnViYmxlIFVuaXZlcnNlIC0gRVNDIHRvIGV4aXQiICcgZnJvbSBqb2hubm8gYXQgUkNCYXNpYyBmb3J1bSAyMDIyLTExLTE0ClNjcmVlbiBfTmV3SW1hZ2UoxHnGcywgMzIpCicgLc4BCicgUGF1bCBEdW5uIHBvc3RlZCB0aGlzIGNvZGUgYnV0xGUgU3BlY0JBUyBpbiBhIGZhY2Vib29rIGdyb3VwLgonIEl0IGxvb2tlZCBzbyBjb29sIHRoYXQgSSBoYWTkAMcgcmV3cml0ZSBpdMRDTmFhbGFhIDcuIE1hcmN1cwonCicgYnBsdXMgUUI2NCBNb2Qgb2bkAOYg5AEQaW9uIGJ5IErlAP81NgpUQVUgPSA2LjI4MzE4NTMwNzE3OTU4NgpuID0gMjAwCnIgPSDEJC8gMjM1CuQBbDAKecUGdsUGdMUGaHcgPeYBmC8gMgpoaCA95gGaxA5EbwogICAgQ29sb3IgX1JHQjMyKDAsIMQDKcYabHPFCEZvciBpxE8gVG8gbsUTyBdq0hfEAXUgPSBTaW4oaSArIHYpICvFDXIgKiDEEXjGXsgB5ACvQ29zyizEDdcs5ADndSArIHTNFuoAwihpLCBqLCA5Oc43UFNldCAoaHcgKyB1ICogaHcgKiAwLjQsIGhoxHXEE2jGE8o4TmV4xmbJCeQBUnQgKyAwLjAwMSAnIHNsb3dlZCB3YXnFBGRvd27mAsMuMDI1xTJfRGlzcGxhecYNTGltaXQgMzAKTG9vcCBVbnRpbCBfS2V5RG93bigyNykK RE: Small 25 line program - CharlieJV - 11-20-2022 (11-20-2022, 06:05 PM)bplus Wrote: Thanks Charlie, I wish I came up with this originally. Yeah, I just updated BAM to accept "32" as parameter for _NEWIMAGE. Links in my previous post updated. |