07-20-2005 04:06 PM
07-20-2005 05:13 PM
07-22-2005 02:18 PM
07-22-2005 02:43 PM - edited 07-22-2005 02:43 PM
@AntLee29 wrote:
We want it to update line-by-line, from either top to bottom or left to right.
You cannot do that with an intensity graph. (You could also try a picture indicator but I doubt it will be faster. WIth a picture indicator you can disable "erase first", thus the new data is added to the existing picture. I have no idea if this would speed it up.)
The update of the intensity graph is not syncronous by default and it will not update faster than reasonable. The redrawing speed will not block the code execution. To further speed up things, you could place your indicator inside a case structure, and update it only every n'th line. You just need to find the right balance.
Message Edited by altenbach on 07-22-2005 01:22 PM
07-22-2005 03:16 PM
Here are a few suggestion, some already mentioned.
You should really use an event structure. (I hate 1000ms loop delays and case structures with only one case containing code.) 😉
What is the resolution of Z? Maybe you can rescale it to integers for efficiency (demo uses I8). To lower the update rate of the indicator, the example updates every 8th line only. Modify as needed. 🙂
07-22-2005 03:41 PM
07-22-2005 04:12 PM
07-22-2005 04:21 PM
07-22-2005 04:51 PM
07-26-2005 02:00 PM