Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Improved my small Gradient Ball drawing SUB
#21
(07-12-2023, 02:36 PM)bplus Wrote:
(07-12-2023, 02:21 PM)Dav Wrote: _HYPOT huh?  Neat.  I shouldn't have stopped reading the keyword of the day thread. Rolleyes 

- Dav

Hi from ZXDunny at another forum that Charlie has inspired, this is a ball shader:
Code: (Select All)

' Ball shader
' by ZXDunny 2023

sw = 800
sh = 480
Screen _NewImage(sw, sh, 32) ' SpecBAS uses this as its default window size

xc = sw / 2
yc = sh / 2
r = 100
amb = 0.0125
k = 3
mxp = (1 - amb) * 255
r2 = r * r

Do
    While _MouseInput: Wend
    lx = xc - _MouseX
    ly = yc - _MouseY
    lz = -75

    Cls
    l = Sqr(lx * lx + ly * ly + lz * lz)
    nlx = lx / l
    nly = ly / l
    nlz = lz / l

    For x = -r To r
        x2 = x * x
        For y = -r To r
            y2 = y * y
            If x2 + y2 <= r2 Then
                v2 = Sqr(r2 - x2 - y2)
                l = Sqr(x2 + y2 + v2 * v2)
                v0 = x / l
                v1 = y / l
                v2 = v2 / l
                d = nlx * v0 + nly * v1 + nlz * v2

                'i = mxp * (iff(d < 0, -d ^ k, 0) + amb)
                If d < 0 Then i = mxp * (-d ^ k) + amp Else i = amp
                PSet (x + xc, y + yc), _RGB32(Int(i), Int(i), Int(i))
            End If
        Next y
    Next x
    _Display
Loop

The mouse is light source, so move it around...

More things to play with!!!

ZXDunny's BAM program (ULTIMATE Gradient Ball):
Reply


Messages In This Thread
RE: Improved my small Gradient Ball drawing SUB - by CharlieJV - 07-12-2023, 09:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  A drawing program Frederick 8 585 02-28-2026, 04:45 PM
Last Post: Frederick
  Drawing 20 planets with graphical commands Delsus 9 574 02-08-2026, 01:41 AM
Last Post: ahenry3068
  BallDraw - simple drawing programing using colored balls Dav 2 404 11-11-2025, 08:57 PM
Last Post: Dav
  The Curve statement, an improved Circle 2112 6 708 11-02-2025, 09:45 PM
Last Post: bplus
  Sound Ball SierraKen 0 460 12-17-2024, 11:34 PM
Last Post: SierraKen

Forum Jump:


Users browsing this thread: 1 Guest(s)