i have another question. I have a componenet/model called myComponent with more than 2 Parameters (u,v...) and i want to set up an Array of n of these components. The normal way to set this up would be:
QUELLTEXT
myComponent[n] componentArray;
or if you want to assign the same parameters to all elements:
QUELLTEXT
myComponent[n] componentArray(each u=1,v=2,....);
but how do i set it up if want all elements to look the same besides lets say the first and the last to get something like:
QUELLTEXT
componentArray[1] with u=2,v=7...
componentArray[2] with u=1,v=2...
..
..
componentArray[n-1] with u=1,v=2...
componentArray[n] with u=7,v=8...
componentArray[2] with u=1,v=2...
..
..
componentArray[n-1] with u=1,v=2...
componentArray[n] with u=7,v=8...
kind regards
Hannes Wagner

