Control Surface main
MIDI Control Surface library for Arduino
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Related Symbols | List of all members

#include <AH/Math/Vector.hpp>

Detailed Description

Type for 2D vectors of floating point numbers.

Vec2fs can be added, subtracted, multiplied (dot product) and normalized. It also has an implementation of the following operators: "+", "+=", "-", "-=", "*" (vector-vector); "*", "*=", "/", "/=" (vector-scalar); "==", "!=" (equality); "*" (scalar-vector); "<<" (printing).

Definition at line 39 of file Vector.hpp.

+ Collaboration diagram for Vec2f:

Public Member Functions

 Vec2f ()=default
 Create a vector that is initialized to the zero vector (0,0).
 
 Vec2f (float x, float y)
 Create a vector with the given x and y coordinates.
 
Vec2foperator+= (Vec2f rhs)
 Addition.
 
Vec2f operator+ (Vec2f rhs) const
 Addition.
 
Vec2f operator- () const
 Negation.
 
Vec2foperator-= (Vec2f rhs)
 Subtraction.
 
Vec2f operator- (Vec2f rhs) const
 Subtraction.
 
Vec2foperator*= (float rhs)
 Scalar multiplication.
 
Vec2f operator* (float rhs) const
 Scalar multiplication.
 
Vec2foperator/= (float rhs)
 Scalar division.
 
Vec2f operator/ (float rhs) const
 Scalar division.
 
float operator* (Vec2f rhs) const
 Inner product.
 
float normSquared () const
 Norm squared.
 
float norm () const
 Norm.
 
Vec2fnormalize ()
 Normalize this vector.
 
Vec2f normalized () const
 Normalize a copy of this vector (doesn't change the original vector).
 
bool operator== (Vec2f rhs) const
 Equality check.
 
bool operator!= (Vec2f rhs) const
 Inequality check.
 

Public Attributes

float x = 0.0
 The x component of the vector.
 
float y = 0.0
 The y component of the vector.
 

Related Symbols

(Note that these are not member symbols.)

Print & operator<< (Print &os, Vec2f v)
 Printing.
 
Vec2f operator* (float lhs, Vec2f rhs)
 Scalar multiplication.
 
Print & operator<< (Print &os, Vec2f v)
 Printing.
 

Constructor & Destructor Documentation

◆ Vec2f() [1/2]

Vec2f ( )
default

Create a vector that is initialized to the zero vector (0,0).

◆ Vec2f() [2/2]

Vec2f ( float x,
float y )
inline

Create a vector with the given x and y coordinates.

Definition at line 46 of file Vector.hpp.

Member Function Documentation

◆ operator+=()

Vec2f & operator+= ( Vec2f rhs)
inline

Addition.

Definition at line 49 of file Vector.hpp.

◆ operator+()

Vec2f operator+ ( Vec2f rhs) const
inline

Addition.

Definition at line 55 of file Vector.hpp.

◆ operator-() [1/2]

Vec2f operator- ( ) const
inline

Negation.

Definition at line 62 of file Vector.hpp.

◆ operator-=()

Vec2f & operator-= ( Vec2f rhs)
inline

Subtraction.

Definition at line 64 of file Vector.hpp.

◆ operator-() [2/2]

Vec2f operator- ( Vec2f rhs) const
inline

Subtraction.

Definition at line 66 of file Vector.hpp.

◆ operator*=()

Vec2f & operator*= ( float rhs)
inline

Scalar multiplication.

Definition at line 73 of file Vector.hpp.

◆ operator*() [1/2]

Vec2f operator* ( float rhs) const
inline

Scalar multiplication.

Definition at line 79 of file Vector.hpp.

◆ operator/=()

Vec2f & operator/= ( float rhs)
inline

Scalar division.

Definition at line 86 of file Vector.hpp.

◆ operator/()

Vec2f operator/ ( float rhs) const
inline

Scalar division.

Definition at line 92 of file Vector.hpp.

◆ operator*() [2/2]

float operator* ( Vec2f rhs) const
inline

Inner product.

Definition at line 99 of file Vector.hpp.

◆ normSquared()

float normSquared ( ) const
inline

Norm squared.

Definition at line 104 of file Vector.hpp.

◆ norm()

float norm ( ) const
inline

Norm.

Definition at line 106 of file Vector.hpp.

◆ normalize()

Vec2f & normalize ( )
inline

Normalize this vector.

Definition at line 111 of file Vector.hpp.

◆ normalized()

Vec2f normalized ( ) const
inline

Normalize a copy of this vector (doesn't change the original vector).

Definition at line 113 of file Vector.hpp.

◆ operator==()

bool operator== ( Vec2f rhs) const
inline

Equality check.

Definition at line 116 of file Vector.hpp.

◆ operator!=()

bool operator!= ( Vec2f rhs) const
inline

Inequality check.

Definition at line 120 of file Vector.hpp.

Friends And Related Symbol Documentation

◆ operator<<()

Print & operator<< ( Print & os,
Vec2f v )
related

Printing.

Definition at line 30 of file Vector.cpp.

Member Data Documentation

◆ x

float x = 0.0

The x component of the vector.

Definition at line 40 of file Vector.hpp.

◆ y

float y = 0.0

The y component of the vector.

Definition at line 41 of file Vector.hpp.


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