corrección función retícula

This commit is contained in:
sejo 2021-05-28 14:14:21 -05:00
parent ef2c91427a
commit 3a3a193544
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ void reticula(int n, int m, float d) {
// m: número de columnas
// d: longitud del lado de la celda
float x,y1,y2,z1,z2;
for (int f=0; f<n; f++) {
for (int f=0; f<m; f++) {
// dibuja una fila
beginShape(QUAD_STRIP);
for(int c=0; c<n; c++){