I was wondering if there is a way to make an array that will have several types of data fields.
So far i have used aMyArray: array of array [0..1] of TPoint;
But now this is not enough for me. I need to add 3 more elements to existing "Point" elements, which makes it an array likeaMyArray: array of (TPoint,TPoint,real,real,real)
Thus, each aMyArray element will have 5 'children', 2 of which are of type TPoint and 3 of them are "real".
Is it possible to implement this?
source
share