bug on a bezier draw attempt - Printable Version +- Forum (https://www.boriel.com/forum) +-- Forum: Compilers and Computer Languages (https://www.boriel.com/forum/forumdisplay.php?fid=12) +--- Forum: ZX Basic Compiler (https://www.boriel.com/forum/forumdisplay.php?fid=11) +---- Forum: Help & Support (https://www.boriel.com/forum/forumdisplay.php?fid=16) +---- Thread: bug on a bezier draw attempt (/showthread.php?tid=378) |
bug on a bezier draw attempt - nitrofurano - 09-29-2011 i'm trying to draw a kind of custom simplified vectorial file, converted from postscript or svg, with a code like this: Code: 1000 CA=49152:LET XT=0: LET YT=0:LET CT=0 but when i try to compile it: Code: guest@macbook_mint1 /mnt/sda4/emulation/zxspectrum/basic/BorielZxBasicCompiler $ zxb.py /mnt/sda4/emulation/zxspectrum/basic/bin2tap_py/zvfreader_ very weird... what could cause this? Re: bug on a bezier draw attempt - boriel - 09-30-2011 ZX Basic compiler allows multiline IFs. So every IF must be closed with END IF. See help: <!-- m --><a class="postlink" href="http://www.boriel.com/wiki/en/index.php/ZX_BASIC:IF">http://www.boriel.com/wiki/en/index.php/ZX_BASIC:IF</a><!-- m --> Re: bug on a bezier draw attempt - nitrofurano - 09-30-2011 thanks! |