Capi tranforms
Hi,
--
Fabrice
I tried this with LWW 6.1:
(defun test ()
(let ((pane (capi:contain (make-instance 'capi:output-pane))))
(gp:set-graphics-state pane :transform '(10 0 0 10 0 0) :scale-thickness nil :thickness 0.1)
(loop for i from 1 to 20 do
(gp:draw-point pane i i :thickness 0.1))
))
and I can't seem to set the transform so that it doesn't affect the size of pixels.
How can I zoom say 10x the graphics area, but still draw 'true' pixels (non-scaled) ?
I surely miss something obvious.
Fabrice