OOPS
test::Vector3D Class Reference

#include <Vector3D.h>

Inheritance diagram for test::Vector3D:
Collaboration diagram for test::Vector3D:

Public Member Functions

 Vector3D (const double &x, const double &y, const double &z)
 
 Vector3D (const Vector3D &, const bool copy=true)
 
Vector3Doperator= (const Vector3D &)
 
Vector3Doperator+= (const Vector3D &)
 
Vector3Doperator-= (const Vector3D &)
 
Vector3Doperator*= (const double)
 
Vector3Doperator*= (const Vector3D &)
 
Vector3Doperator/= (const Vector3D &)
 
void axpy (const double, const Vector3D &)
 x -> x + mult * rhs More...
 
double dot_product_with (const Vector3D &) const
 
double x () const
 
double y () const
 
double z () const
 

Private Member Functions

void print (std::ostream &os) const
 

Private Attributes

double x_
 
double y_
 
double z_
 

Detailed Description

Definition at line 15 of file Vector3D.h.

Constructor & Destructor Documentation

◆ Vector3D() [1/2]

test::Vector3D::Vector3D ( const double &  x,
const double &  y,
const double &  z 
)

Definition at line 12 of file Vector3D.cc.

◆ Vector3D() [2/2]

test::Vector3D::Vector3D ( const Vector3D rhs,
const bool  copy = true 
)

Definition at line 18 of file Vector3D.cc.

Member Function Documentation

◆ axpy()

void test::Vector3D::axpy ( const double  mult,
const Vector3D rhs 
)

x -> x + mult * rhs

Definition at line 74 of file Vector3D.cc.

Here is the caller graph for this function:

◆ dot_product_with()

double test::Vector3D::dot_product_with ( const Vector3D rhs) const

Definition at line 81 of file Vector3D.cc.

Here is the caller graph for this function:

◆ operator*=() [1/2]

Vector3D & test::Vector3D::operator*= ( const double  mult)

Definition at line 50 of file Vector3D.cc.

◆ operator*=() [2/2]

Vector3D & test::Vector3D::operator*= ( const Vector3D rhs)

Definition at line 58 of file Vector3D.cc.

◆ operator+=()

Vector3D & test::Vector3D::operator+= ( const Vector3D rhs)

Definition at line 34 of file Vector3D.cc.

◆ operator-=()

Vector3D & test::Vector3D::operator-= ( const Vector3D rhs)

Definition at line 42 of file Vector3D.cc.

◆ operator/=()

Vector3D & test::Vector3D::operator/= ( const Vector3D rhs)

Definition at line 66 of file Vector3D.cc.

◆ operator=()

Vector3D & test::Vector3D::operator= ( const Vector3D rhs)

Definition at line 26 of file Vector3D.cc.

◆ print()

void test::Vector3D::print ( std::ostream &  os) const
private

Definition at line 86 of file Vector3D.cc.

◆ x()

double test::Vector3D::x ( ) const
inline

Definition at line 30 of file Vector3D.h.

Here is the caller graph for this function:

◆ y()

double test::Vector3D::y ( ) const
inline

Definition at line 31 of file Vector3D.h.

Here is the caller graph for this function:

◆ z()

double test::Vector3D::z ( ) const
inline

Definition at line 32 of file Vector3D.h.

Here is the caller graph for this function:

Member Data Documentation

◆ x_

double test::Vector3D::x_
private

Definition at line 37 of file Vector3D.h.

◆ y_

double test::Vector3D::y_
private

Definition at line 38 of file Vector3D.h.

◆ z_

double test::Vector3D::z_
private

Definition at line 39 of file Vector3D.h.


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