#include "qvector4d.h"
#include "qvector3d.h"
#include "qvector2d.h"
#include <QtCore/qdebug.h>
#include <QtCore/qvariant.h>
#include <QtCore/qmath.h>
Go to the source code of this file.
◆ operator<<() [1/2]
Definition at line 602 of file qvector4d.cpp.
605 << vector.
x() <<
", " << vector.
y() <<
", " 606 << vector.
z() <<
", " << vector.
w() <<
')';
QDebug & nospace()
Clears the stream's internal flag that records whether the last character was a space and returns a r...
qreal w() const
Returns the w coordinate of this point.
qreal x() const
Returns the x coordinate of this point.
qreal z() const
Returns the z coordinate of this point.
QDebug & space()
Writes a space character to the debug stream and returns a reference to the stream.
qreal y() const
Returns the y coordinate of this point.
◆ operator<<() [2/2]
Definition at line 627 of file qvector4d.cpp.
629 stream << double(vector.
x()) <<
double(vector.
y())
630 <<
double(vector.
z()) <<
double(vector.
w());
qreal w() const
Returns the w coordinate of this point.
qreal x() const
Returns the x coordinate of this point.
qreal z() const
Returns the z coordinate of this point.
qreal y() const
Returns the y coordinate of this point.
◆ operator>>()
Definition at line 647 of file qvector4d.cpp.
void setZ(qreal z)
Sets the z coordinate of this point to the given z coordinate.
void setW(qreal w)
Sets the w coordinate of this point to the given w coordinate.
void setX(qreal x)
Sets the x coordinate of this point to the given x coordinate.
void setY(qreal y)
Sets the y coordinate of this point to the given y coordinate.