[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Simple novice questions



I am embarassed to admit it, but I haven't cranked up MCL in so long
that I've forgotten some simple basic stuff.

Is there an FAQ of some really simple code examples?

Barring that, what is the "best" way to plot a pixel in a window?
I've got one that says
(defun dot (window color point)
  (pen-hide window)
  (move-to window point)
  (set-fore-color window color)
  (pen-show window)
  (line-to window point))

Is there a simpler/faster/better way?

Thanks! I'll contribute the resulting programs back to the net and or archive
when I get anything reasonable.

bill coderre