mirror of
https://github.com/medialab-prado/poblados-colonizacion-colonias-penitenciarias.git
synced 2024-12-27 04:51:22 +01:00
parcelas error touppercase
This commit is contained in:
parent
7b877ec7af
commit
dc5e6ffebf
1 changed files with 4 additions and 3 deletions
|
@ -32,7 +32,8 @@ function setup() {
|
||||||
|
|
||||||
function draw() {
|
function draw() {
|
||||||
background(200,225,225);
|
background(200,225,225);
|
||||||
translate((width-519)*.5,0);
|
var dx = (width-519)*.5;
|
||||||
|
translate(dx,0);
|
||||||
// capas
|
// capas
|
||||||
for (var n = 0; n < ids.length; n++) {
|
for (var n = 0; n < ids.length; n++) {
|
||||||
if (dimr[n] != -1) image(capas[n],0,0);
|
if (dimr[n] != -1) image(capas[n],0,0);
|
||||||
|
@ -42,7 +43,7 @@ function draw() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parcelas segun PGC
|
// Parcelas segun PGC
|
||||||
var mc = cmap.get(mouseX,mouseY);
|
var mc = cmap.get(mouseX+dx,mouseY);
|
||||||
for (var n = 0; n < colores.length; n++) {
|
for (var n = 0; n < colores.length; n++) {
|
||||||
if (compara(mc,color(colores[n]))) {
|
if (compara(mc,color(colores[n]))) {
|
||||||
tint(255,100);
|
tint(255,100);
|
||||||
|
@ -55,7 +56,7 @@ function draw() {
|
||||||
// nombres
|
// nombres
|
||||||
textSize(14);
|
textSize(14);
|
||||||
for (var n = 0; n < nombres.length; n++) {
|
for (var n = 0; n < nombres.length; n++) {
|
||||||
var nbr = String.prototype.toUpperCase(nombres[n]);
|
//var nbr = String.prototype.toUpperCase(nombres[n]);
|
||||||
if (dimr[n] != -1 || !compara(mc,color(colores[n]))) fill(0);
|
if (dimr[n] != -1 || !compara(mc,color(colores[n]))) fill(0);
|
||||||
else fill(0);
|
else fill(0);
|
||||||
textStyle(BOLD);
|
textStyle(BOLD);
|
||||||
|
|
Loading…
Reference in a new issue