On 19 March 2017 at 15:59, Patrick Stinson <patrickk...@gmail.com> wrote:
> UITouch coordinates are floating point on iOS, for example for the Apple 
> Pencil. Is there a way to map this? Seems like this would be easy to 
> implement based on the QPoint version…
>

In which coordinate system are the UITouch points expressed in? Seems
odd to use floating point for a pixel based CS, unless half pixels
exist (high res display?)

Chris

> // pks: apple pencil
> QPointF QGraphicsView::mapToScene(const QPointF &point) const
> {
>     Q_D(const QGraphicsView);
>     QPointF p = point;
>     p.rx() += d->horizontalScroll();
>     p.ry() += d->verticalScroll();
>     return d->identityMatrix ? p : d->matrix.inverted().map(p);
> }
> _______________________________________________
> Interest mailing list
> Interest@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/interest
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to