/*
Project: "Edel"
Artist / Author: Sean Macken
Category: Creative Work / Art
Mission: An 'aesthetically pleasing' merge of nature and "order".
Integrating natural phenomena such as sky, clouds, water, and earth with "refined nature" & technology,
such as electricity and cinema.
Features: Waterfalls, steps / stairs.
-Water pump - float valve / switch?
-Motor
*/
let edel = "Gentle, sensitive, refined, shy, modest, humble.";
let steps = "Circular / winding";
let layers = {'Quantity':'4', 'Base':'Motor and Motor Housing.','Layer One':'Water pump.', 'Layer Two':'River canyon.', 'Top':'Sky & clouds cinema / film.'};
let elements = ['Sky', 'Clouds', 'Earth', 'Water'];
let waterFlow = 'The water flow is pumped upwards to the river valley.';
let steps = "Staircase.";
let echo = (a) => {console.log(a);}
let wLocation = ['Layer One','Layer Two','Layer Three','Layer Four'];
let a = wLocation.length;
let spontaneousL = Math.floor(Math.random() * a);
if (spontaneousL == 0){
echo('Water Station: Basin.');
} else if (spontaneousL == 1){
echo('Water pump.');
} else (spontaneousL == 2){
echo('River Canyon.');
}
let a = 0;
while (a < 101){
elements.forEach(echo);
a++;
}
Leave a Reply