Komut
line()
Açıklama
Çizgi konturu, kontur () içinde ayarlanan kontur rengini kullanır.
Sözdizimi
Ekranınız .line (x1, y1, x2, y2)
Parametreler
- x1: x çizginin başlangıç noktasının konumu
- y1: çizginin başlangıç noktasının y konumu
- x2: x çizginin bitiş noktasının konumu
- y2: satırın bitiş noktasının y konumu
İadeler
Hiçbir şey değil
Misal
…
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.stroke(0, 0, 255);
YourScreen.line(0, 0, YourScreen.width() - 1, YourScreen.height() - 1);
YourScreen.endDraw();
…
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.stroke(0, 0, 255);
YourScreen.line(0, 0, YourScreen.width() - 1, YourScreen.height() - 1);
YourScreen.endDraw();
…
See Also
- begin()
- end()
- width()
- height()
- beginDraw()
- endDraw()
- background()
- clear()
- fill()
- noFill()
- stroke()
- noStroke()
- point()
- rect()
- text()
- textFont()
- textFontWidth()
- textFontHeight()
- set()
- beginText()
- endText()
- textScrollSpeed()