xxxxxxxxxx
77
// One of his famous sets of instructions was for "Wall Drawing #118":
//"Lines not short, not straight, crossing and touching, drawn at random, using four colors, uniformly dispersed with maximum density, covering the entire surface of the wall."
function setup() {
createCanvas(3000, 3000);
noLoop(); // Draw once and stop
}
function draw() {
background(20);
noFill();
// Instructions for Wall Drawing #118
let colors = ['#FF0000', '#FFC107', '#8BC34A', '#2196F3'];
let density = random(30,90);
for (let x = 0; x < width; x += density) {
for (let y = 0; y < height; y += density) {
strokeWeight(random(1, 3));
stroke(random(colors));
// Make lines truly random
let choice = floor(random(2));
if (choice === 0) {
line(x, y, x + density, y + density);
} else {
line(x, y + density, x + density, y);
}
}
}
}
//Certainly! Here's a consolidated list of Sol LeWitt's instructions for various wall drawings:
// 1. **Wall Drawing #289:**
// - On a wall surface, any continuous stretch of wall, using a hard pencil, place fifty points at random but uniformly distributed.
// - Repeat this process, gradually covering the entire surface with points.
// 2. **Wall Drawing #614:**
// - Isometric figure with color ink washes superimposed. Each figure superimposes the previous one at 90 degrees.
// 3. **Wall Drawing #797:**
// - The first drafter has a black marker and makes an irregular horizontal form near the top of the wall. Then the second drafter tries to copy it (without touching it) using a red marker.
// 4. **Wall Drawing #681:**
// - A 6-inch (15 cm) grid covering the wall. Within each square, not straight lines from side to side, using red, yellow, and blue pencils.
// 5. **Wall Drawing #1136:**
// - Two-part drawing. On four walls, each part consisting of one of the following: vertical lines, horizontal lines, diagonal lines from left to right, diagonal lines from right to left. These lines are randomly placed and equally distributed.
// 6. **Wall Drawing #792:**
// - Within a square, draw 10,000 random small lines. The lines start and end on the square's edges.
// 7. **Wall Drawing #951:**
// - Drawing lines not short, not straight, not touching, drawn at random, using four colors.
// 8. **Wall Drawing #260:**
// - All combinations of two lines (not straight) drawn from corner to corner intersecting.
// 9. **Wall Drawing #519:**
// - 12 lines from the center, extending to the ends of the walls, each intersected by arcs from four directions.
// 10. **Wall Drawing #1103:**
// - Each drafter draws one of the 12 horizontal lines of the 12-pointed star. Each line may be a straight line or a quarter of a circle.
// 11. **Wall Drawing #1163:**
// - Vertical lines, not straight, not touching, uniformly dispersed with maximum density, covering the entire surface of the wall.
// 12. **Wall Drawing #1247:**
// - On four walls, each with lines in two directions (vertical and horizontal) and color ink washes superimposed.
// Feel free to explore these instructions and adapt them to create your own unique interpretations in p5.js!