Computer Science Canada Snowing |
Author: | y1234yy [ Sun Dec 28, 2008 11:21 pm ] |
Post subject: | Snowing |
Hello Is there a way to make a snowing scene in Turing? Thanks |
Author: | syntax_error [ Sun Dec 28, 2008 11:25 pm ] |
Post subject: | RE:Snowing |
Yes. |
Author: | y1234yy [ Sun Dec 28, 2008 11:26 pm ] |
Post subject: | Re: Snowing |
How would you do it? Is there a simple way? |
Author: | syntax_error [ Sun Dec 28, 2008 11:28 pm ] |
Post subject: | RE:Snowing |
Look up the draw function in turing, using either F10 or the Turing Walkthrough; the latter maybe more helpful for you. Simple is up to you on how complex in details you wish to go into. |
Author: | revangrey [ Sun Dec 28, 2008 11:29 pm ] |
Post subject: | Re: Snowing |
simple is a pretty broad term but it doesn't have to be complicated I guess... |
Author: | y1234yy [ Sun Dec 28, 2008 11:33 pm ] |
Post subject: | Re: Snowing |
I know how to draw and I saw someones example on the forum, but is there a way that is basic? Like which basic turing functions would I need? |
Author: | Insectoid [ Mon Dec 29, 2008 5:51 pm ] |
Post subject: | RE:Snowing |
Draw.Star, Draw.Oval, Draw.Box, colorback, View.Set, Draw.Line, Draw.ThickLine, Draw.Fill, Draw.Arc. Those are the basic Turing functions you may need. Decide what you want to draw, then draw it. Want to draw a tree? Use boxes and lines. House? boxes & lines. Snow? draw some lines and Draw.Fill. |
Author: | dc116 [ Thu Jan 01, 2009 10:14 pm ] |
Post subject: | RE:Snowing |
To actually make a snow scene look 3 dimensional and realistic, you would need more than some "simple" code. But the most basic ones would involve loop, Draw.FillOval, cls, delay, etc. |