QPointF to Point2D
Solved
General and Desktop
-
What is Point2D?
-
As @jsulm pointed out there is no
Point2D
type in Qt. I assume that you either want to use QPoint or QVector2D.
QPoint
is the integer precision equivalent toQPointF
. You can useQPointF::toPoint()
to "convert" aQPointF
toQPoint
(you will obviously loose precision).
QVector2D
has constructors that take aQPoint
orQPointF
. -
He's probably talking about this.
Just transfer the coordinates from one object to the other, I know of no explicit conversion functions.