На главную

Назад

Пирамида
Пирамида

;Blitz3D

Graphics 1024,768

Global x0=512
Global y0=384
Global x=0
Global y=0

While Not KeyDown(1)
For n= 1 To 100000
t = Tan(n)
t0 = zero(Tan(n))
t01 = 1/zero(Tan(n))
x = x0+(100*Sin(n/2))+(n/300*Cos(n/3))
y = y0+(100*Cos(n/1))+(n/300*Sin(n/2))
Plot x,y
Next
Wend

Function zero(i)
If i = 0 Then
Return 1
Else
Return i
EndIf
End Function
Hosted by uCoz