LB Booster
« Super Shapes Exploration Kit »

Welcome Guest. Please Login or Register.
Apr 1st, 2018, 03:41am



ATTENTION MEMBERS: Conforums will be closing it doors and discontinuing its service on April 15, 2018.
We apologize Conforums does not have any export functions to migrate data.
Ad-Free has been deactivated. Outstanding Ad-Free credits will be reimbursed to respective payment methods.

Thank you Conforums members.
Speed up Liberty BASIC programs by up to ten times!
Compile Liberty BASIC programs to compact, standalone executables!
Overcome many of Liberty BASIC's bugs and limitations!
LB Booster Resources
LB Booster documentation
LB Booster Home Page
LB Booster technical Wiki
Just BASIC forum
BBC BASIC Home Page
Liberty BASIC forum (the original)

« Previous Topic | Next Topic »
Pages: 1  Notify Send Topic Print
 thread  Author  Topic: Super Shapes Exploration Kit  (Read 366 times)
AndyA
New Member
Image


member is offline

Avatar




PM


Posts: 1
xx Super Shapes Exploration Kit
« Thread started on: Mar 23rd, 2017, 10:53pm »

Hi all

This is my first post on this board. Hope you can find this to be useful.

This is an app that can be used to make buttons, and a whole lot of other things. It doesn't create buttons but the artwork that can be made into a button.

User Image
User Image
User Image
User Image



It can be downloaded here.
https://sabercathost.com/8X91/LB_SuperShapes.7z
User IP Logged

Richard Russell
Administrator
ImageImageImageImageImage


member is offline

Avatar




Homepage PM


Posts: 1348
xx Re: Super Shapes Exploration Kit
« Reply #1 on: Mar 24th, 2017, 07:53am »

on Mar 23rd, 2017, 10:53pm, AndyA wrote:
It can be downloaded here.
https://sabercathost.com/8X91/LB_SuperShapes.7z

Looks impressive, but I don't have a program to unpack 7z files on this (Windows 10) PC - a Store app 'Unpacker' runs but it says the archive has an error. sad

Now Zip files are supported natively in Windows I can't really see the attraction of using an alternative packer, even if it does save a little more space.

Richard.
User IP Logged

joker
Global Moderator
ImageImageImageImageImage


member is offline

Avatar




PM

Gender: Male
Posts: 157
xx Re: Super Shapes Exploration Kit
« Reply #2 on: Mar 24th, 2017, 10:09am »

Welcome to the forum, AndyA!

I just normally don't download files hosted somewhere unknown to me. I'll never see the work you did to create these graphics.

Please, use the much more common ZIP compression.
User IP Logged

Rod
Full Member
ImageImageImage


member is offline

Avatar




PM

Gender: Male
Posts: 110
xx Re: Super Shapes Exploration Kit
« Reply #3 on: Mar 25th, 2017, 11:05am »

This is a link to a normal .zip version of the file.

http://gamebin.webs.com/Liberty/LB%20SuperShapes.zip

Andy is a long time contributor to out BASIC communities.
Not sure why .7zip is so problematic Win10 does not like the format and it means downloading an app, the first I tried didn't work and I don't really want my pc full of apps. .zip is but a right click away, sendto, compressed zip folder. Easy in Win10.
User IP Logged

Richard Russell
Administrator
ImageImageImageImageImage


member is offline

Avatar




Homepage PM


Posts: 1348
xx Re: Super Shapes Exploration Kit
« Reply #4 on: Mar 26th, 2017, 4:25pm »

on Mar 25th, 2017, 11:05am, Rod wrote:
This is a link to a normal .zip version of the file. http://gamebin.webs.com/Liberty/LB%20SuperShapes.zip

Great, thanks.

There seems to be a problem with the program in that there's no trapclose command anywhere! If you click on the Close button it appears to close (in that the window disappears) but in fact it's still running.

For LBB users there's a worthwhile speed-up that can be achieved. Make the following changes to the ssr subroutine:

Change this Code:
        If phi = 0 Then
            #h$ "Set ";nx;" ";ny
        Else
            #h$ "Goto ";nx;" ";ny
        End If 

to this Code:
        If phi = 0 Then
            g$ = g$ + "Set ";nx;" ";ny;";"
        Else
            g$ = g$ + "Goto ";nx;" ";ny;";"
        End If 

and add this between the Next and the End Sub:

Code:
    #h$ g$ 

This builds the plot commands in a temporary string and sends them 'all in one go' which is faster in LBB. The modification doesn't affect compatibility with LB4.

Richard.
User IP Logged

Pages: 1  Notify Send Topic Print
« Previous Topic | Next Topic »

| |

This forum powered for FREE by Conforums ©
Terms of Service | Privacy Policy | Conforums Support | Parental Controls