Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
QuadDraw revisited - drawing program work in progress
#25
My only criticism of this is that the anti-aliasing button is in fact a blur button. Literally speaking, this is the algorithm for blur, not anti-alias:

p1~& = POINT(x, y)
p2~& = POINT(x + 1, y)
p3~& = POINT(x, y + 1)
p4~& = POINT(x + 1, y + 1)
p5~& = POINT(x - 1, y)
p6~& = POINT(x, y - 1)
p7~& = POINT(x - 1, y - 1)
p8~& = POINT(x - 1, y + 1)
p9~& = POINT(x + 1, y - 1)
r = _RED32(p1~&) + _RED32(p2~&) + _RED32(p3~&) + _RED32(p4~&) + _RED32(p5~&) + _RED32(p6~&) + _RED32(p7~&) + _RED32(p8~&) + _RED32(p9~&)
g = _GREEN32(p1~&) + _GREEN32(p2~&) + _GREEN32(p3~&) + _GREEN32(p4~&) + _GREEN32(p5~&) + _GREEN32(p6~&) + _GREEN32(p7~&) + _GREEN32(p8~&) + _GREEN32(p9~&)
b = _BLUE32(p1~&) + _BLUE32(p2~&) + _BLUE32(p3~&) + _BLUE32(p4~&) + _BLUE32(p5~&) + _BLUE32(p6~&) + _BLUE32(p7~&) + _BLUE32(p8~&) + _BLUE32(p9~&)
PSET (x, y), _RGB(r / 9, g / 9, b / 9)
Reply


Messages In This Thread
RE: QuadDraw revisited - drawing program work in progress - by triggered - 06-04-2022, 02:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  My ascii Map Maker... in progress / lots of work to do. pmackay 5 669 08-24-2025, 08:17 PM
Last Post: Unseen Machine
  Digit II level editor in progress pmackay 0 333 07-19-2025, 04:03 AM
Last Post: pmackay
  Everything Date Library in progress SMcNeill 2 713 05-14-2025, 08:36 PM
Last Post: SMcNeill
  SaveImage Library 3.0 (in progress) SMcNeill 5 1,250 06-22-2024, 03:23 PM
Last Post: bplus
  RotoLine line drawing James D Jarvis 0 517 10-11-2023, 04:24 PM
Last Post: James D Jarvis

Forum Jump:


Users browsing this thread: 1 Guest(s)