Raycasting in Python

Revision as of 18:08, 11 June 2024 by Williama (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Hello, and welcome to "Raycasting in Python." On AoPS, you may think of Python as a simple system. For instance, you may be familiar with a program like this:

h = 0
print(h)

or

yousay = input('hi or bye?')
if yousay == 'hi':
   print('hello!')
else:
   print('bye...')

But what if we could make 3D scenes in AoPS Python, without importing any 3D libraries?