Computer Science Canada problems about animated graphs |
Author: | zywan91 [ Thu Dec 14, 2006 11:04 pm ] |
Post subject: | problems about animated graphs |
i use code "process" to draw two pieces of animated graphs and use code "fork" to make them work at the same time. i know how to avoid flashing in a single process (use View.Set offscreenonly & View.Update), but it begins flashing when i tried to make them work together. i don't know how to deal with it. Does anybody have any idea? |
Author: | NikG [ Thu Dec 14, 2006 11:44 pm ] |
Post subject: | |
If you read around this site, you will notice something: "DO NOT USE PROCESSES!" Instead, make variable for every object you want to animate and use a single loop statement with some if statements. Then your View.Updates will work perfectly. |