Added docs and project management tool update

This commit is contained in:
n00b
2024-10-06 01:39:47 -04:00
parent 00309fa481
commit 641c5c86ca
1544 changed files with 10572 additions and 2904 deletions

View File

@@ -1,4 +1,18 @@
#title Poly [RCBasic Doc]
#header sub Poly(n, byref x, byref y)
Draws a polygon
#list ul
#li n - Number of points in the polygon
#li x, y - Array where the points are stored
#/list
#code
Dim x[3], y[3]
x[0] = 50 : y[0] = 50
x[1] = 90 : y[1] = 90
x[2] = 10 : y[1] = 90
Poly(3, x, y) 'Draws a triangle
#/code