Daniel Kochmanski
Daniel Kochmanski
for the future (you may already know this), when you leave a question on IRC and leave, you may check if there is an answer in our log. I've answered...
Currently we ignore parents. Alternative definitions would work something like this: ```common-lisp (defgeneric sheet-device-region* (sheet) (:method ((sheet mirrored-sheet-mixin)) (sheet-device-region sheet)) (:method ((sheet basic-sheet)) (region-intersection (sheet-device-region sheet) (sheet-device-region* (sheet-parent sheet))))) (defgeneric...
code for coordinates was written by Alexey Dejneka, and was later disabled by Gilbert Baumann. The commit message is: ``` Took the easy route: I switched COORDINATE to being just...
simpler test case for rounded corners. ``` (defun draw-test (stream) (loop for alpha from 0 by (/ pi 2) for beta from (/ pi 2) by (/ pi 2) for...
I've solved the rounded shapes issue locally. one was due to the angle normalization, another one because of a naive handedness fixup in the postscript backend.
the issue with fitting is /probably/ because font metrics are botched and bounding rectangles of text records are miscomputed. both ps and pdf use the same font metric code, so...
@daewok please check the drawing-backends branch whether everything works (it seems to!).
also please use a full words in the commit message, i.e ``` examples: drawing-benchmark: add transformations, grids and colors Remaining description... ```
I think that this is a good idea. re "global/standard" - there is a difference when we have some internal interface and when we have an advertised gesture. I don't...
`:gesture` sounds the most natural and compatible with other parts like `define-presentation-translator`.