Richard Eakin

Results 79 comments of Richard Eakin

Thanks Jaime, it's totally understandable about the time and I'm only pleased that you've continued to find time for this project after your dissertation was complete. I am working with...

Understanding the use case here, I'm proposing we add a new `Layout` subclass, called `BoxLayout`, that can handle fill and justification of each of its subviews (taking the css box...

After thinking about this for a while, it is likely to be handy in some cases, even with a `BoxLayout` for other uses. I do however think we could use...

I think both gesture tracking and a view transform are features yet to be implemented, and probably won't be for v1.0, but they are in the plans. For swipe I...

Just an update that the `SwipeTracker` was moved [here](https://github.com/richardeakin/Cinder-View/blob/master/src/ui/GestureTracker.h#L43) a while back, along with a `TapTracker`. Still no `PinchTracker` but I imagine one could be made in similar fashion. Haven't...

Finished most of the work for this in https://github.com/richardeakin/Cinder-View/commit/437715744bc89c022a467002d3cf3aa38c7c16ea (currently in dev branch), only tested with MSW window DPI scaling so far as that's where I needed it.

Separating UV-mapping from `geom::Source`s? One of their main utilities is providing texcoords, so I don't see why we'd ever want to remove that functionality. We could possibly think of a...

The implementations look good to me, although I'm seeing many white space irregularities. Please use spaces within brackets (like [here](https://github.com/cinder/Cinder/pull/1192/files#diff-de816c4ab58b2e2285213136e2967fbdR1498)) and around math operations (like [here](https://github.com/cinder/Cinder/pull/1192/files#diff-de816c4ab58b2e2285213136e2967fbdR1401) and most calls within...

I agree that any new primitives should support at least some sort of uv mapping, or else when you try to apply a texture to them (or just expect texcoords...

To avoid having to call `reinstate()`, could we set `mCancelled = false` from within `pushFront()`? Right after the lock is taken.