Well, that's better than Vista, by a little...
@bplus
This is a triangle.
That took me 2-minutes to code, and I got it right on the first try. I haven't made geometric shapes in graphics, but I wanted a triangle an that AI crap inspired me!
Pete
@bplus
This is a triangle.
Code: (Select All)
Screen _NewImage(800, 600, 32)
a = 10: c = 20
For i = 0 To 9
Line (a, c)-(a + i * 2, c)
a = a - 1
c = c + 1
Next
That took me 2-minutes to code, and I got it right on the first try. I haven't made geometric shapes in graphics, but I wanted a triangle an that AI crap inspired me!
Pete



![[Image: Screenshot-20260103-221332.png]](https://i.ibb.co/JjWhDNdm/Screenshot-20260103-221332.png)