SimCenterCommon
Common functionality used within different SimCenter projects
QCPVector2D Class Reference

Represents two doubles as a mathematical 2D vector. More...

#include <qcustomplot.h>

Public Member Functions

 QCPVector2D ()
 
 QCPVector2D (double x, double y)
 
 QCPVector2D (const QPoint &point)
 
 QCPVector2D (const QPointF &point)
 
double x () const
 
double y () const
 
double & rx ()
 
double & ry ()
 
void setX (double x)
 
void setY (double y)
 
double length () const
 
double lengthSquared () const
 
QPoint toPoint () const
 
QPointF toPointF () const
 
bool isNull () const
 
void normalize ()
 
QCPVector2D normalized () const
 
QCPVector2D perpendicular () const
 
double dot (const QCPVector2D &vec) const
 
double distanceSquaredToLine (const QCPVector2D &start, const QCPVector2D &end) const
 
double distanceSquaredToLine (const QLineF &line) const
 
double distanceToStraightLine (const QCPVector2D &base, const QCPVector2D &direction) const
 
QCPVector2Doperator*= (double factor)
 
QCPVector2Doperator/= (double divisor)
 
QCPVector2Doperator+= (const QCPVector2D &vector)
 
QCPVector2Doperator-= (const QCPVector2D &vector)
 

Friends

const QCPVector2D operator* (double factor, const QCPVector2D &vec)
 
const QCPVector2D operator* (const QCPVector2D &vec, double factor)
 
const QCPVector2D operator/ (const QCPVector2D &vec, double divisor)
 
const QCPVector2D operator+ (const QCPVector2D &vec1, const QCPVector2D &vec2)
 
const QCPVector2D operator- (const QCPVector2D &vec1, const QCPVector2D &vec2)
 
const QCPVector2D operator- (const QCPVector2D &vec)
 

Related Functions

(Note that these are not member functions.)

QDebug operator<< (QDebug d, const QCPVector2D &vec)
 

Detailed Description

Represents two doubles as a mathematical 2D vector.

This class acts as a replacement for QVector2D with the advantage of double precision instead of single, and some convenience methods tailored for the QCustomPlot library.

Definition at line 379 of file qcustomplot.h.

Constructor & Destructor Documentation

QCPVector2D::QCPVector2D ( )

Creates a QCPVector2D object and initializes the x and y coordinates to 0.

Definition at line 111 of file qcustomplot.cpp.

QCPVector2D::QCPVector2D ( double  x,
double  y 
)

Creates a QCPVector2D object and initializes the x and y coordinates with the specified values.

Definition at line 121 of file qcustomplot.cpp.

QCPVector2D::QCPVector2D ( const QPoint &  point)

Creates a QCPVector2D object and initializes the x and y coordinates respective coordinates of the specified point.

Definition at line 131 of file qcustomplot.cpp.

QCPVector2D::QCPVector2D ( const QPointF &  point)

Creates a QCPVector2D object and initializes the x and y coordinates respective coordinates of the specified point.

Definition at line 141 of file qcustomplot.cpp.

Member Function Documentation

double QCPVector2D::distanceSquaredToLine ( const QCPVector2D start,
const QCPVector2D end 
) const

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Returns the squared shortest distance of this vector (interpreted as a point) to the finite line segment given by start and end.

See also
distanceToStraightLine

Definition at line 178 of file qcustomplot.cpp.

double QCPVector2D::distanceSquaredToLine ( const QLineF &  line) const

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Returns the squared shortest distance of this vector (interpreted as a point) to the finite line segment given by line.

See also
distanceToStraightLine

Definition at line 202 of file qcustomplot.cpp.

double QCPVector2D::distanceToStraightLine ( const QCPVector2D base,
const QCPVector2D direction 
) const

Returns the shortest distance of this vector (interpreted as a point) to the infinite straight line given by a base point and a direction vector.

See also
distanceSquaredToLine

Definition at line 213 of file qcustomplot.cpp.

double QCPVector2D::dot ( const QCPVector2D vec) const
inline

Returns the dot/scalar product of this vector with the specified vector vec.

Definition at line 407 of file qcustomplot.h.

bool QCPVector2D::isNull ( ) const
inline

Returns whether this vector is null. A vector is null if qIsNull returns true for both x and y coordinates, i.e. if both are binary equal to 0.

Definition at line 403 of file qcustomplot.h.

double QCPVector2D::length ( ) const
inline

Returns the length of this vector.

See also
lengthSquared

Definition at line 398 of file qcustomplot.h.

double QCPVector2D::lengthSquared ( ) const
inline

Returns the squared length of this vector. In some situations, e.g. when just trying to find the shortest vector of a group, this is faster than calculating length, because it avoids calculation of a square root.

See also
length

Definition at line 399 of file qcustomplot.h.

void QCPVector2D::normalize ( )

Normalizes this vector. After this operation, the length of the vector is equal to 1.

See also
normalized, length, lengthSquared

Definition at line 152 of file qcustomplot.cpp.

QCPVector2D QCPVector2D::normalized ( ) const

Returns a normalized version of this vector. The length of the returned vector is equal to 1.

See also
normalize, length, lengthSquared

Definition at line 164 of file qcustomplot.cpp.

QCPVector2D & QCPVector2D::operator*= ( double  factor)

Scales this vector by the given factor, i.e. the x and y components are multiplied by factor.

Definition at line 222 of file qcustomplot.cpp.

QCPVector2D & QCPVector2D::operator+= ( const QCPVector2D vector)

Adds the given vector to this vector component-wise.

Definition at line 243 of file qcustomplot.cpp.

QCPVector2D & QCPVector2D::operator-= ( const QCPVector2D vector)

subtracts the given vector from this vector component-wise.

Definition at line 253 of file qcustomplot.cpp.

QCPVector2D & QCPVector2D::operator/= ( double  divisor)

Scales this vector by the given divisor, i.e. the x and y components are divided by divisor.

Definition at line 233 of file qcustomplot.cpp.

QCPVector2D QCPVector2D::perpendicular ( ) const
inline

Returns a vector perpendicular to this vector, with the same length.

Definition at line 406 of file qcustomplot.h.

double& QCPVector2D::rx ( )
inline

Definition at line 390 of file qcustomplot.h.

double& QCPVector2D::ry ( )
inline

Definition at line 391 of file qcustomplot.h.

void QCPVector2D::setX ( double  x)
inline

Sets the x coordinate of this vector to x.

See also
setY

Definition at line 394 of file qcustomplot.h.

void QCPVector2D::setY ( double  y)
inline

Sets the y coordinate of this vector to y.

See also
setX

Definition at line 395 of file qcustomplot.h.

QPoint QCPVector2D::toPoint ( ) const
inline

Returns a QPoint which has the x and y coordinates of this vector, truncating any floating point information.

See also
toPointF

Definition at line 400 of file qcustomplot.h.

QPointF QCPVector2D::toPointF ( ) const
inline

Returns a QPointF which has the x and y coordinates of this vector.

See also
toPoint

Definition at line 401 of file qcustomplot.h.

double QCPVector2D::x ( ) const
inline

Definition at line 388 of file qcustomplot.h.

double QCPVector2D::y ( ) const
inline

Definition at line 389 of file qcustomplot.h.

Friends And Related Function Documentation

const QCPVector2D operator* ( double  factor,
const QCPVector2D vec 
)
friend

Definition at line 430 of file qcustomplot.h.

const QCPVector2D operator* ( const QCPVector2D vec,
double  factor 
)
friend

Definition at line 431 of file qcustomplot.h.

const QCPVector2D operator+ ( const QCPVector2D vec1,
const QCPVector2D vec2 
)
friend

Definition at line 433 of file qcustomplot.h.

const QCPVector2D operator- ( const QCPVector2D vec1,
const QCPVector2D vec2 
)
friend

Definition at line 434 of file qcustomplot.h.

const QCPVector2D operator- ( const QCPVector2D vec)
friend

Definition at line 435 of file qcustomplot.h.

const QCPVector2D operator/ ( const QCPVector2D vec,
double  divisor 
)
friend

Definition at line 432 of file qcustomplot.h.

QDebug operator<< ( QDebug  d,
const QCPVector2D vec 
)
related

Prints vec in a human readable format to the qDebug output.

Definition at line 441 of file qcustomplot.h.


The documentation for this class was generated from the following files: