Qbasicnews.com

Full Version: Textures
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Howd you guys make the texture which pops up frequently in graphical demos? I take it that it is a very simple algorithm drawn texture? could you tell me how it is done?
1. change the palette to greyscale. it looks better.

2.


for y = 0 to 199
for x = 0 to 319

pset (x, y), x xor y

next
next

you can replace xor with any boolean operator you want. try it. it looks nice. play around with math. it can do some wonderful things for you.
ooo perfect. Thanks