Simulated_CRT_Oscilloscope.bas #47
EkBass
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
' =============================================================

' Arneodo Attractor — Simulated CRT Oscilloscope
' QB64 original by K Moerman 2026, ported to BazzBasic
' https://ekbass.github.io/BazzBasic/
'
' The attractor is governed by three coupled ODEs:
' dx/dt = y
' dy/dt = z
' dz/dt = ax - cx^3 - b*y - z
'
' Solved with Euler integration. Each frame, new points are
' pushed into a circular ring buffer. The buffer is then
' rendered oldest-to-newest in eight brightness tiers to
' simulate phosphor persistence without alpha blending.
'
' =============================================================
https://github.com/EkBass/BazzBasic/blob/main/Examples/Simulated_CRT_Oscilloscope.bas
Beta Was this translation helpful? Give feedback.
All reactions