--- id: "qpointf" title: "QPointF" sidebar_label: "QPointF" --- The QPointF class defines a point in the plane using floating point precision A point is specified by a x coordinate and an y coordinate which can be accessed using the x() and y() functions. The coordinates of the point are specified using floating point numbers for accuracy. The isNull() function returns true if both x and y are set to 0.0. The coordinates can be set (or altered) using the setX() and setY() functions In addition, the QPointF class provides a constructor converting a QPoint object into a QPointF object, and a corresponding toPoint() function which returns a QPoint copy of this point. ## Hierarchy * [Component](component.md) ↳ **QPointF** ## Index ### Constructors * [constructor](qpointf.md#constructor) ### Properties * [native](qpointf.md#native) * [nodeChildren](qpointf.md#nodechildren) * [nodeParent](qpointf.md#optional-nodeparent) ### Methods * [isNull](qpointf.md#isnull) * [manhattanLength](qpointf.md#manhattanlength) * [setNodeParent](qpointf.md#setnodeparent) * [setX](qpointf.md#setx) * [setY](qpointf.md#sety) * [toPoint](qpointf.md#topoint) * [transposed](qpointf.md#transposed) * [x](qpointf.md#x) * [y](qpointf.md#y) * [dotProduct](qpointf.md#static-dotproduct) ## Constructors ### constructor \+ **new QPointF**(): *[QPointF](qpointf.md)* *Overrides [Component](component.md).[constructor](component.md#constructor)* **Returns:** *[QPointF](qpointf.md)* \+ **new QPointF**(`nativeElement`: [NativeElement](../globals.md#nativeelement)): *[QPointF](qpointf.md)* *Overrides [Component](component.md).[constructor](component.md#constructor)* **Parameters:** Name | Type | ------ | ------ | `nativeElement` | [NativeElement](../globals.md#nativeelement) | **Returns:** *[QPointF](qpointf.md)* \+ **new QPointF**(`x?`: undefined | number, `y?`: undefined | number): *[QPointF](qpointf.md)* *Overrides [Component](component.md).[constructor](component.md#constructor)* **Parameters:** Name | Type | ------ | ------ | `x?` | undefined | number | `y?` | undefined | number | **Returns:** *[QPointF](qpointf.md)* \+ **new QPointF**(`point`: [QPoint](qpoint.md)): *[QPointF](qpointf.md)* *Overrides [Component](component.md).[constructor](component.md#constructor)* **Parameters:** Name | Type | ------ | ------ | `point` | [QPoint](qpoint.md) | **Returns:** *[QPointF](qpointf.md)* ## Properties ### native • **native**: *[NativeElement](../globals.md#nativeelement)* *Overrides [Component](component.md).[native](component.md#abstract-native)* ___ ### nodeChildren • **nodeChildren**: *Set‹[Component](component.md)›* *Inherited from [Component](component.md).[nodeChildren](component.md#nodechildren)* ___ ### `Optional` nodeParent • **nodeParent**? : *[Component](component.md)* *Inherited from [Component](component.md).[nodeParent](component.md#optional-nodeparent)* ## Methods ### isNull ▸ **isNull**(): *boolean* Returns true if both the x and y coordinates are set to 0.0 (ignoring the sign); otherwise returns false. **Returns:** *boolean* ___ ### manhattanLength ▸ **manhattanLength**(): *number* Returns the sum of the absolute values of x() and y(), traditionally known as the "Manhattan length" of the vector from the origin to the point. **Returns:** *number* ___ ### setNodeParent ▸ **setNodeParent**(`parent?`: [Component](component.md)): *void* *Inherited from [Component](component.md).[setNodeParent](component.md#setnodeparent)* **Parameters:** Name | Type | ------ | ------ | `parent?` | [Component](component.md) | **Returns:** *void* ___ ### setX ▸ **setX**(`value`: number): *void* Sets the x coordinate of this point to the given x coordinate. **Parameters:** Name | Type | ------ | ------ | `value` | number | **Returns:** *void* ___ ### setY ▸ **setY**(`value`: number): *void* Sets the y coordinate of this point to the given y coordinate. **Parameters:** Name | Type | ------ | ------ | `value` | number | **Returns:** *void* ___ ### toPoint ▸ **toPoint**(): *[QPoint](qpoint.md)* Rounds the coordinates of this point to the nearest integer, and returns a QPoint object with the rounded coordinates. **Returns:** *[QPoint](qpoint.md)* ___ ### transposed ▸ **transposed**(): *[QPointF](qpointf.md)* Returns a point with x and y coordinates exchanged **Returns:** *[QPointF](qpointf.md)* ___ ### x ▸ **x**(): *number* Returns the x coordinate of this point **Returns:** *number* ___ ### y ▸ **y**(): *number* Returns the y coordinate of this point **Returns:** *number* ___ ### `Static` dotProduct ▸ **dotProduct**(`p1`: [QPointF](qpointf.md), `p2`: [QPointF](qpointf.md)): *number* Returns the dot product of p1 and p2 **Parameters:** Name | Type | ------ | ------ | `p1` | [QPointF](qpointf.md) | `p2` | [QPointF](qpointf.md) | **Returns:** *number*