User Tools

Site Tools


ru:line

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

ru:line [2016/01/01 22:49]
ru:line [2020/02/28 10:46] (current)
Line 1: Line 1:
 +==== Line ====
 +=== Формат: ===
 +**line** x0, y0, x1, y1
 +=== Описание: ===
 +Рисует линию от точки x0,y0 до точки x1, y1.
 +=== Пример: ===
 +
 +<code>
 +color white
 +rect 0,0,300,300
 +color black
 +line 50,50,200,200
 +line 100,200,200,200
 +line 100,200,50,50
 +</code>
 +Будет изображено\\
 +<img src="images\line.png" alt="Line">