Export Code
index.html
<!DOCTYPE html>
<html>
<head>
<title>Sol LeWitt Exercise 9 x 4</title>
</head>
<style>
body {
margin: 0;
overflow: hidden;
}
</style>
<body>
<script>
// Open Chrome developer tools to see this.
const svg = document.createElementNS(
'http://www.w3.org/2000/svg',
'svg'
);

const height = 960;
const width = 960;

svg.setAttribute('height', height);
svg.setAttribute('width', width);
document.body.appendChild(svg);

function getRandomInt(max) {
return Math.floor(Math.random() * Math.floor(max));
}

function makeVariedVerticalLines(
meanWidthBlack,
meanWidthWhite,
variance,
maskName

Sol LeWitt Exercise 9 x 4

wgloss

Last edited Mar 25, 2021
Created on Mar 24, 2021

Sol LeWitt Attemp with random Values

MIT Licensed