- Home
·
- Graphics
·
- This is a programme that I call Satrangi as it throws the seven colours at you.
This is a programme that I call Satrangi as it throws the seven colours at you.
This is a programme that I call "Satrangi" as it throws the seven colours at you.
Rate This is a programme that I call Satrangi as it throws the seven colours at you.
(1(1 Vote))
Dim Cntr As Integer
Function Flower()
For Cntr = 1 To 1000 Step 1
x2 = x1 + Rnd * 10000
y2 = y1 + Rnd * 10000
Line (x1, y1)-(x2, y2)
Next Cntr
For Cntr = 1 To 1000 Step 1
x2 = x1 - Rnd * 10000
y2 = y1 - Rnd * 10000
Line (x1, y1)-(x2, y2)
Next Cntr
For Cntr = 1 To 1000 Step 1
x2 = x1 - Rnd * 10000
y2 = y1 + Rnd * 10000
Line (x1, y1)-(x2, y2)
Next Cntr
For Cntr = 1 To 1000 Step 1
x2 = x1 + Rnd * 10000
y2 = y1 - Rnd * 10000
Line (x1, y1)-(x2, y2)
Next Cntr
ForeColor = RGB(Rnd * 256, Rnd * 256, Rnd * 256)
End Function
Private Sub Timer1_Timer()
: Flower
End Sub
Private Sub Form_Load()
Timer1.Interval = 1
x1 = 6000
y1 = 4000
PSet (x1, y1)
End Sub
This is a programme that I call Satrangi as it throws the seven colours at you. Comments
No comments yet — be the first to post one!
Post a Comment