PDA

View Full Version : Help port C to PPL


BERUNIN
01-24-2010, 03:01 PM
Hello friends! Please help with this code. I know maybe it's just a small thing but I can not find the optimal alternative in ppl .. Thanks in advance

floorVertices[] = {
-3.0f, 0.0f, 3.0f,
3.0f, 0.0f, 3.0f,
-3.0f, 0.0f,-3.0f,
3.0f, 0.0f,-3.0f
};

Nicknack
01-24-2010, 10:55 PM
dim(m$, 12);
Fill(m$,3.0, 0.0, 3.0,3.0, 0.0, 3.0,-3.0,0.0,-3.0,3.0, 0.0,-3.0);
showmessage(m$[0]);
you can also leave the x.0 if you like.

BERUNIN
01-25-2010, 10:14 PM
aaa.. FILL.. :) thank you very much my friend !!