CodingTrain / CodingTrain/Suggestion-Box
[EQC]: Alternatives to draw Circle using Geometric Mean method with P5JS - [GM]
- Dominant language
- No language data
- Stars
- 570
- Forks
- 85
- PR merge metrics
- No merged PRs in 30d
Description
# @shiffman
## Dear God :santa: and Dear Goddess :mrs_claus:
## Merry Christmas and Happy New 2019 Year to You!
### Good morning, Dear Magnum Magnus Magnificus Friend, Daniel.

Let me please share with You the presentation I did with some experiments
regarding drawing a circle with Geometric Mean method using P5JS.
__Note: Clicking on image below will open a video on YouToBee.__
[](https://www.youtube.com/watch?v=q6uvFf6RTp0)
> P5JS draw Circle with Balerina Kira Lebedeva - https://photos.app.goo.gl/7sdtpCgwC2YPaoNx8
> ### Make Yourself comfortable (I listen Daniel on classical music background):
> - Mozart Classical Music for Studying, Concentration, Relaxation | Study Music | Piano Instrumental - YouTube http://youtu.be/VB6SIKl8Md0
> - Processing Foundation Holiday Telethon - YouTube https://youtu.be/WACLmPBxMaw?t=6987
:santa: :mrs_claus: - https://ggbm.at/rwteve3v






```js
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(75);
var R = height/3;
var p = 7;
var n = Math.pow(10, p);
var sumH = 0;
for(var i=1; i<=n; i=i+1){
H = sqrt(i*(n-i));
sumH = sumH + H;
}
var good = 'yellow';
stroke(good);
fill(good);
textSize(24);
text('0 : ' + PI, width/2, height/2 - textSize());
text('1 : ' + 8*sumH/Math.pow(n, 2), width/2, height/2);
noLoop();
}
```
### Below is the formula of the idea


- Circle Area with compensate rectangles http://tinyurl.com/yav8epzn
- Circle with Dots (from vertex) http://tinyurl.com/y9h44vyv
- Circle with Vertex http://tinyurl.com/y8z4xhb7
- Circle Disk with Vertex http://tinyurl.com/y9py7nck
- Circle with Dots http://tinyurl.com/y7c5ntsp
- Circle with Lines http://tinyurl.com/y962p9th






# Notes:
EQC - stand for EnQuantum Continuum
GM - stand for Graphical Method
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.