11-18-2008 04:33 PM
11-18-2008 08:09 PM - edited 11-18-2008 08:12 PM
An intensity chart takes a single 2D array which adds new columns with each write. You seem to only want to add a single point.
In any case, you need to map your xy positions into array indices. See DemoMOD3 for an example.
To read the file, you again need to map the x and y values into array indices and then replace the value at these positions with the z value accordingly.
See DemoMOD2 for a simple example.
If you want to completely fill the 2D array, you could do something like in yet another example (DemoMOD).
Let me know if you have any questions. Good luck! 🙂
11-19-2008 09:57 AM
11-19-2008 10:52 AM
Yes, assuming the x values are equally spaced, simply set the offset and multiplier using property nodes (similar to what I did when reading from the file). If the multiplier is always the same, you could even permanently configure the axis properties.
Same for the y-axis.
11-19-2008 11:03 AM
11-19-2008 01:26 PM