CodingTrain / CodingTrain/Suggestion-Box
[EQC]: Alternatives to draw Circle using Geometric Mean method with P5JS - [GM]
- Lingua principale
- Nessun dato sulla lingua
- Stelle
- 570
- Fork
- 85
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
# @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
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Direzione di ricerca
Non vengono indicati file del repository, test o punti di ingresso; inizia chiarendo se si tratta di un esempio p5.js o di una proposta per la documentazione/un argomento. L'issue non definisce quale sarebbe il risultato completo.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- javascript
- Ambito
- computer-graphics
- Tipo di issue
- Funzionalità
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Stato di attività
- Ferma
- Chiarezza
- Da chiarire
- Idoneità per principianti
- 15/100