If I understand well this declares and initializes a 1 dimensional array of
type CUSTOMVERTEX (which is a struct) and it contains 3 elements.
What throws me off is the last two commas at the end of each element initializer!
I don't understand the syntax (from the point of view of my limited knowledge, of course!).
Thanx for any help understanding!!
Trailing commas are useful whey you might add new elements to the end: you do not need to manually add commas to previous line. It makes diffs look cleanier and simplifies external code generators.