DEV Community

Adem Deliaslan
Adem Deliaslan

Posted on

2

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ı.

Image of Bright Data

Cut Costs, Save Time – Get your datasets ready for action faster than ever.

Save on resources with our ready-to-use datasets designed for quick integration and application.

Reduce Costs

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Explore a sea of insights with this enlightening post, highly esteemed within the nurturing DEV Community. Coders of all stripes are invited to participate and contribute to our shared knowledge.

Expressing gratitude with a simple "thank you" can make a big impact. Leave your thanks in the comments!

On DEV, exchanging ideas smooths our way and strengthens our community bonds. Found this useful? A quick note of thanks to the author can mean a lot.

Okay