My old Turtle Graphics Fractals
#4
Well my mod isn't all trumped up!
Code: (Select All)
_Title "Koch Curve" '  by triggered mod b+ 2022-06-02
Screen _NewImage(700, 700, 12) ' b+ mod tirggered Koch curve
_ScreenMove 300, 20
mx = _Width / 2: my = _Height / 2
Dim a$

a$ = "FRRFRRF"
ss = 600
Circle (mx, my), 1
Circle (mx, my), ss / Sqr(3)
x0 = _Width / 2 + ss / Sqr(3) * Cos(_D2R(210))
y0 = _Height / 2 + ss / Sqr(3) * Sin(_D2R(210))
TurtleGraphics x0, y0, 0, ss, a$
_Delay 1
Dim j
For j = 1 To 4
    'Cls
    ss = ss / 3
    a$ = stReplace$(a$, "F", "FLFRRFLF")
    TurtleGraphics x0, y0, 0, ss, a$
    _Limit 2 ' pause 2 x's per sec
Next j
Sleep

Sub TurtleGraphics (x0 As Double, y0 As Double, a0 As Double, ssize As Double, path As String)
    Dim As Double x, y, angle, stepsize
    Dim w As String
    Dim t As String
    x = x0
    y = y0
    angle = a0
    w = path
    stepsize = ssize

    PReset (x0, y0)

    Do While Len(w)
        t = Left$(w, 1)
        w = Right$(w, Len(w) - 1)
        Select Case t
            Case "F"
                x = x + stepsize * Cos(angle)
                y = y + stepsize * Sin(angle)
            Case "L"
                angle = angle - 60 * _Pi / 180
            Case "R"
                angle = angle + 60 * _Pi / 180
        End Select
        Line -(x, y), 15
    Loop
End Sub

Function stReplace$ (a As String, b As String, c As String)
    Dim i As Integer
    Dim g As String
    Dim r As String
    For i = 1 To Len(a)
        g = Mid$(a, i, 1)
        If g = b Then
            r = r + c
        Else
            r = r + g
        End If
    Next
    stReplace = r
End Function
b = b + ...
Reply


Messages In This Thread
My old Turtle Graphics Fractals - by triggered - 06-02-2022, 03:37 PM
RE: My old Turtle Graphics Fractals - by bplus - 06-02-2022, 05:46 PM
RE: My old Turtle Graphics Fractals - by Pete - 06-02-2022, 06:14 PM
RE: My old Turtle Graphics Fractals - by bplus - 06-02-2022, 06:44 PM
RE: My old Turtle Graphics Fractals - by Pete - 06-02-2022, 06:50 PM
RE: My old Turtle Graphics Fractals - by bplus - 06-03-2022, 03:49 AM
RE: My old Turtle Graphics Fractals - by bplus - 06-03-2022, 03:45 PM
RE: My old Turtle Graphics Fractals - by vince - 06-03-2022, 05:59 PM
RE: My old Turtle Graphics Fractals - by vince - 06-03-2022, 06:31 PM
RE: My old Turtle Graphics Fractals - by bplus - 06-03-2022, 07:07 PM



Users browsing this thread: 3 Guest(s)