Javascript Learning From Scratch -00001

deliaslan

Adem Deliaslan

Posted on September 24, 2019

Javascript Learning From Scratch -00001

background(255,200,60)

255->Red
200->Green
60->Blue

RGB color mode

arkaplan rengini değiştirir.

||||||||||||||||||||||||||||||||||||||||||

ellipse(186, 193, 245, 287);

186-> x position
193-> y position
245-> width
287-> height

çizilen elipsin boyutu ve konumunu belirleme

||||||||||||||||||||||||||||||||||||||||||

fill(22, 33, 44);

22->Red
33->Green
44->Blue

RGB color mode

çizilen nesnenin iç yüzeyini boyamak içindir.

||||||||||||||||||||||||||||||||||||||||||

line(83, 116, 271, 74);

84-> x1 point position
116-> y1 point position
271->x2 point position
74-> y2 point position

line çizginin oluşturulmasını sağlar.

||||||||||||||||||||||||||||||||||||||||||

stroke(250, 0, 242);

250->Red
0->Green
242->Blue

RGB color mode

stroke çizginin rengini belirler. yani dış sınırını.

||||||||||||||||||||||||||||||||||||||||||

strokeWeight(33);

33-> line weight

çizginin kalınlığını oluşturur.

||||||||||||||||||||||||||||||||||||||||||

rect(200,100,44,55);

200-> x position
100-> y position
44-> width
55-> height

çizilen dikdörtgenin boyutu ve konumunu belirleme

||||||||||||||||||||||||||||||||||||||||||

arc(241,237,111,122,0,180);

241-> x position
237-> y position
111-> width
122-> height
0-> start of arc
180-> end of arc

Bayağı parametre alıyor yay çizimi ilk dördü hepsindeki gibi aslında, yalnız son 2 parametre açının başlangıç değeri ve bitiş değerini vermektedir. Yani 0 ile 180 arasını açısal değer olarak kabul edeceğiz. 30, 140 olsaydı bu değerler sırasıyla -> açısal değer 110 derece olacaktı.

💖 💪 🙅 🚩
deliaslan
Adem Deliaslan

Posted on September 24, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Javascript Learning From Scratch -00001
javascript Javascript Learning From Scratch -00001

September 24, 2019