Generative artwork by © CMOORE 2022
Paintings and the new artwork "Brahe, Kepler, Leibniz, Euler, Spinoza"
will be displayed in Madison, Wisconsin this fall,
opening October 4th, 2024 at 100State,
the eclectic coworking space with a capitol view, one block off the square at
17 S. Fairchild St. 7th floor
along with other fine artists at 100state's first Friday event,
happening during the MMOCA 2024 Fall Gallery Walk.
public planets: any[];
public distances: number[];
public mercDists: number[];
public sqrtDists: number[];
public yearDays: number[];
constructor() {
// round log e Distance from Sun * 10; Mercury, Venus...Saturn, Uranus
this.planets = [
{'radius': 1, 'mass': 10}, // sun
{'radius': 41, 'mass': 1},
{'radius': 47, 'mass': 4},
{'radius': 50, 'mass': 4},
{'radius': 54, 'mass': 2},
{'radius': 67, 'mass': 10},
{'radius': 73, 'mass': 8},
{'radius': 80, 'mass': 7},
{'radius': 84, 'mass': 7},
];
// log orbit distances
this.distances = [
0.02,
1.76,
2.03,
2.17,
2.36,
2.89,
3.16,
3.46,
3.65,
];
// mercury orbit unit distances to sun
this.mercDists = [
0.5,
10,
19,
26,
39,
134,
248,
496,
776,
];
// square root of average distance to sun
this.sqrtDists = [
1,
7.61,
10.40,
12.23,
15.10,
27.90,
37.86,
53.60,
67.05,
];
// orbital period, in earth days
this.yearDays = [
1,
88.0,
224.7,
365.24,
687.0,
4331,
10747,
30589,
59800,
];
}