Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
bamg::P2< R, RR > Class Template Reference

#include <R2.h>

Public Member Functions

 P2 ()
 
 P2 (R a, R b)
 
 P2 (P2 A, P2 B)
 
void Echo () const
 
RR operator, (const P2< R, RR > &cc) const
 
P2< R, RR > operator+ (const P2< R, RR > &cc) const
 
P2< R, RR > operator- (const P2< R, RR > &cc) const
 
P2< R, RR > operator- () const
 
P2< R, RR > operator* (R cc) const
 
P2< R, RR > operator/ (R cc) const
 
P2< R, RR > operator+= (const P2< R, RR > &cc)
 
P2< R, RR > operator/= (const R r)
 
P2< R, RR > operator*= (const R r)
 
P2< R, RR > operator-= (const P2< R, RR > &cc)
 

Data Fields

R x
 
R y
 

Detailed Description

template<class R, class RR>
class bamg::P2< R, RR >

Definition at line 10 of file R2.h.

Constructor & Destructor Documentation

◆ P2() [1/3]

template<class R , class RR >
bamg::P2< R, RR >::P2 ( )
inline

Definition at line 18 of file R2.h.

18 :x(0),y(0) {};

◆ P2() [2/3]

template<class R , class RR >
bamg::P2< R, RR >::P2 ( R  a,
R  b 
)
inline

Definition at line 19 of file R2.h.

19 :x(a),y(b) {}

◆ P2() [3/3]

template<class R , class RR >
bamg::P2< R, RR >::P2 ( P2< R, RR >  A,
P2< R, RR >  B 
)
inline

Definition at line 20 of file R2.h.

20 : x(B.x-A.x),y(B.y-A.y) {}

Member Function Documentation

◆ Echo()

template<class R , class RR >
void bamg::P2< R, RR >::Echo ( void  ) const
inline

Definition at line 21 of file R2.h.

21  {
22  printf("Member of P2:\n");
23  std::cout<<" x: "<<x<<std::endl;
24  std::cout<<" y: "<<y<<std::endl;
25  }

◆ operator,()

template<class R , class RR >
RR bamg::P2< R, RR >::operator, ( const P2< R, RR > &  cc) const
inline

Definition at line 27 of file R2.h.

27 {return (RR) x* (RR) cc.x+(RR) y* (RR) cc.y;} //scalar product

◆ operator+()

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator+ ( const P2< R, RR > &  cc) const
inline

Definition at line 28 of file R2.h.

28 {return P2<R,RR>(x+cc.x,y+cc.y);}

◆ operator-() [1/2]

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator- ( const P2< R, RR > &  cc) const
inline

Definition at line 29 of file R2.h.

29 {return P2<R,RR>(x-cc.x,y-cc.y);}

◆ operator-() [2/2]

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator- ( ) const
inline

Definition at line 30 of file R2.h.

30 {return P2<R,RR>(-x,-y);}

◆ operator*()

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator* ( R  cc) const
inline

Definition at line 31 of file R2.h.

31 {return P2<R,RR>(x*cc,y*cc);}

◆ operator/()

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator/ ( R  cc) const
inline

Definition at line 32 of file R2.h.

32 {return P2<R,RR>(x/cc,y/cc);}

◆ operator+=()

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator+= ( const P2< R, RR > &  cc)
inline

Definition at line 33 of file R2.h.

33 {x += cc.x;y += cc.y;return *this;}

◆ operator/=()

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator/= ( const R  r)
inline

Definition at line 34 of file R2.h.

34 {x /= r;y /= r;return *this;}

◆ operator*=()

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator*= ( const R  r)
inline

Definition at line 35 of file R2.h.

35 {x *= r;y *= r;return *this;}

◆ operator-=()

template<class R , class RR >
P2<R,RR> bamg::P2< R, RR >::operator-= ( const P2< R, RR > &  cc)
inline

Definition at line 36 of file R2.h.

36 {x -= cc.x;y -= cc.y;return *this;}

Field Documentation

◆ x

template<class R , class RR >
R bamg::P2< R, RR >::x

Definition at line 15 of file R2.h.

◆ y

template<class R , class RR >
R bamg::P2< R, RR >::y

Definition at line 15 of file R2.h.


The documentation for this class was generated from the following file:
bamg::P2::x
R x
Definition: R2.h:15
bamg::P2::y
R y
Definition: R2.h:15