Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PSET "hat" graphic from old ad in BYTE
#22
Hi @dcromley

Here is another mod by b+
Code: (Select All)
_Title "Hat - b+ mod of dcromley's port from atari" '  2022-04-30
' The "hat" - Front-to-back processing
' https://atariage.com/forums/topic/218503-graphics-8-fedora-hat/#comments
' Micro Tech Unlimited ad in Compute Magazine 11/1/81

'Screen 7
'Print _Width, _Height   ' get screen 7 measurements
'End
Const sw = 320, sh = 320 '     rcromley might enjoy a modern look?
Screen _NewImage(sw, sh, 32) ' converting to graphics for millions more color choices
_ScreenMove 500, 250
Color , &HFFBBBB99: Cls
Dim RR(320)
For I = 0 To 320: RR(I) = 193: Next I
XP = 144: XR = 4.71238905: XF = XR / XP
For ZI = 64 To -64 Step -.1
    ZT = ZI * 2.25: ZS = ZT * ZT
    XL = Int(Sqr(20736 - ZS) + 0.5)
    For XI = 0 - XL To XL Step 1.5
        XT = Sqr(XI * XI + ZS) * XF
        YY = (Sin(XT) + Sin(XT * 3) * 0.4) * 56
        X1 = XI + ZI + 160: Y1 = 96 - YY + ZI
        If RR(X1) > Y1 Then
            RR(X1) = Y1
            PSet (X1, Y1 + 80), _RGB32(70 + 2 * x / sw, 45 + 2 * x / sw, 3 * (16 + Y1 / sh)) ' attempt some colorization
        End If
Next XI: Next ZI
Beep: Sleep


[Image: Hat.png]

I messed up color, need to get z involved and bigger multiplier than 1 for fraction of screen x, y is at. I leave that to another needing to kill time ;-))

I had fun with this thanks, thumbs up to you!
  724  855  599  923  575  468  400  206  147  564  878  823  652  556 bxor cross forever
Reply


Messages In This Thread
RE: PSET "hat" graphic from old ad in BYTE - by bplus - 04-30-2022, 05:12 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Springs2 (random graphic art) mstasak 4 527 11-13-2025, 12:44 PM
Last Post: Dav
  A Hat - Archimedes Spiral SierraKen 2 743 06-04-2025, 11:13 PM
Last Post: SierraKen
  Graphic Text, _Printstring & other stuffs TempodiBasic 0 517 06-01-2025, 07:08 AM
Last Post: TempodiBasic
  From ListBox to Graphic: showing a set of points TempodiBasic 4 1,077 05-11-2025, 04:35 PM
Last Post: a740g
  Alien Eyes Using PSET SierraKen 3 808 04-29-2025, 08:03 PM
Last Post: SierraKen

Forum Jump:


Users browsing this thread: 1 Guest(s)