Creative Technologies Lab | dokuWiki

Repository of academic adventures, experimental technology, accidental brilliance, and collaborative nerdery.

User Tools

Site Tools


code:p5js:gestaltrule_06

Im unteren Beispiel wird ein prägnantes Element gezeigt: Ein zufälliger Kreis hebt sich durch Farbe (Rot) und Größe von den anderen ab. Das Ergebniss ist folgender Wahrnehmungseffekt: Das abweichende Element wird sofort wahrgenommen, während die anderen eine gleichförmige Struktur bilden.

function setup() {
  createCanvas(600, 400);
  noLoop();
}

function draw() {
  background(240);
  
  let cols = 10;
  let rows = 6;
  let spacingX = width / (cols + 1);
  let spacingY = height / (rows + 1);
  let specialIndex = int(random(cols * rows)); // Ein zufällig abweichendes Objekt
  
  let count = 0;
  for (let i = 0; i < cols; i++) {
    for (let j = 0; j < rows; j++) {
      let x = (i + 1) * spacingX;
      let y = (j + 1) * spacingY;
      
      if (count === specialIndex) {
        fill(255, 0, 0); // Hebt sich in Farbe ab (prägnantes Element)
        ellipse(x, y, 40);
      } else {
        fill(100);
        ellipse(x, y, 30);
      }
      count++;
    }
  }
}

This website uses cookies. By using our website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website. Privacy Policy
/var/www/vhosts/ct-lab.info/wiki.ct-lab.info/data/pages/code/p5js/gestaltrule_06.txt · Last modified: 2025/03/20 09:19 by Felix Hardmood Beck