Daniel Kochmanski

Results 126 comments of Daniel Kochmanski

1. right you are, thanks! 2. If we assume, the the mirror must cover the bounding rectangle of the mirrored sheet's region, then ``` (region-equal mirrored-sheet-region (region-intersection mirrored-sheet-region mirror-region)) ```

I have updated the document to account for your remarks.

that was clumsy of me, yes, I mean: ``` (let ((mirror (sheet-direct-mirror msheet)) (region (transform-region (sheet-native-transformation msheet) (sheet-region msheet)))) (region-equal region (region-intersection region (mirror-region mirror)))) ``` regarding the sheet region...

You are indeed mistaken. What you talk about is already possible with lower level abstractions, please try this code for instance: ``` ;;; (ql:quickload '(mcclim lorem-ipsum)) (in-package #:clim-user) (defclass |\"rewrapping-sheet\"|...

I'm adding a bounty to this issue. Acceptance criteria: - when reflowed, output record positions and dimensions are adjusted accordingly - parent and sibling records should be adjusted accordingly (i.e...

https://www.bountysource.com/issues/88947790-reflow-output-records-after-seos-changes-dimensions Accidently I've posted the bounty under my name, but it is from McCLIM funds.

is this really clouseau-centric enhancement?

I wonder if using roswell to run things is a way to go. The quality of roswell is discussable.

This is intentional. Some time ago I've rewritten the input stream abstraction. standard extended input streams are not character streams, because they process also pointer gestures. Previous practice was to...

The easiest way to do that is: ``` (defun read-char-rejecting-pointer-gestures (stream) (loop for gesture = (read-gesture :stream stream) until (characterp gesture) finally (return gesture))) ``` we could easily make it...