> int* Indices = new int[6]; > // First triangle > Indices[0] = 0; > Indices[1] = 1; > Indices[2] = 3; > // Second triangle > Indices[0] = 0; > Indices[1] = 2; > Indices[2] = 3; The second triangle indices should go into [3],[4] and [5]. Aras Pranckevicius aka NeARAZ http://www.gim.ktu.lt/nesnausk/nearaz/