WPSBox2< T > Class Template Reference

small class which defines a 2D WPSBox More...

#include <libwps_internal.h>

Classes

struct  PosSizeLt
 internal struct used to create sorted map, sorted first min then max More...
 

Public Types

typedef std::map< WPSBox2< T >, T, struct PosSizeLtMap
 map of WPSBox2 More...
 

Public Member Functions

 WPSBox2 (Vec2< T > minPt=Vec2< T >(), Vec2< T > maxPt=Vec2< T >())
 constructor More...
 
template<class U >
 WPSBox2 (WPSBox2< U > const &p)
 generic constructor More...
 
Vec2< T > const & min () const
 the minimum 2D point (in x and in y) More...
 
Vec2< T > const & max () const
 the maximum 2D point (in x and in y) More...
 
Vec2< T > & min ()
 the minimum 2D point (in x and in y) More...
 
Vec2< T > & max ()
 the maximum 2D point (in x and in y) More...
 
Vec2< T > const & operator[] (int c) const
 the two extremum points which defined the box More...
 
Vec2< T > size () const
 the box size More...
 
Vec2< T > center () const
 the box center More...
 
void set (Vec2< T > const &x, Vec2< T > const &y)
 resets the data to minimum x and maximum y More...
 
void setMin (Vec2< T > const &x)
 resets the minimum point More...
 
void setMax (Vec2< T > const &y)
 resets the maximum point More...
 
void resizeFromMin (Vec2< T > const &sz)
 resize the box keeping the minimum More...
 
void resizeFromMax (Vec2< T > const &sz)
 resize the box keeping the maximum More...
 
void resizeFromCenter (Vec2< T > const &sz)
 resize the box keeping the center More...
 
template<class U >
void scale (U factor)
 scales all points of the box by factor More...
 
void extend (T val)
 extends the bdbox by (val, val) keeping the center More...
 
WPSBox2< T > getUnion (WPSBox2< T > const &box) const
 returns the union between this and box More...
 
WPSBox2< T > getIntersection (WPSBox2< T > const &box) const
 returns the intersection between this and box More...
 
bool operator== (WPSBox2< T > const &p) const
 comparison operator== More...
 
bool operator!= (WPSBox2< T > const &p) const
 comparison operator!= More...
 
bool operator< (WPSBox2< T > const &p) const
 comparison operator< : fist sorts min by Y,X values then max extremity More...
 
int cmp (WPSBox2< T > const &p) const
 comparison function : fist sorts min by Y,X values then max extremity More...
 

Protected Attributes

Vec2< T > m_pt [2]
 the two extremities More...
 

Friends

std::ostream & operator<< (std::ostream &o, WPSBox2< T > const &f)
 print data in form X0xY0<->X1xY1 More...
 

Detailed Description

template<class T>
class WPSBox2< T >

small class which defines a 2D WPSBox

Member Typedef Documentation

§ Map

template<class T>
WPSBox2< T >::Map

map of WPSBox2

Constructor & Destructor Documentation

§ WPSBox2() [1/2]

template<class T>
WPSBox2< T >::WPSBox2 ( Vec2< T >  minPt = Vec2<T>(),
Vec2< T >  maxPt = Vec2<T>() 
)
inline

constructor

§ WPSBox2() [2/2]

template<class T>
template<class U >
WPSBox2< T >::WPSBox2 ( WPSBox2< U > const &  p)
inline

generic constructor

Member Function Documentation

§ center()

template<class T>
Vec2<T> WPSBox2< T >::center ( ) const
inline

the box center

Referenced by WPSGraphicShape::getPath(), and WPSGraphicShape::transform().

§ cmp()

template<class T>
int WPSBox2< T >::cmp ( WPSBox2< T > const &  p) const
inline

comparison function : fist sorts min by Y,X values then max extremity

Referenced by WPSGraphicShape::cmp(), and WPSBox2< T >::PosSizeLt::operator()().

§ extend()

template<class T>
void WPSBox2< T >::extend ( val)
inline

extends the bdbox by (val, val) keeping the center

§ getIntersection()

template<class T>
WPSBox2<T> WPSBox2< T >::getIntersection ( WPSBox2< T > const &  box) const
inline

returns the intersection between this and box

§ getUnion()

template<class T>
WPSBox2<T> WPSBox2< T >::getUnion ( WPSBox2< T > const &  box) const
inline

returns the union between this and box

Referenced by LotusGraph::readGraphic(), WPSGraphicShape::rotate(), and WPSGraphicShape::transform().

§ max() [1/2]

template<class T>
Vec2<T> const& WPSBox2< T >::max ( ) const
inline

the maximum 2D point (in x and in y)

Referenced by WPSTransformation::operator*(), WPSGraphicShape::scale(), and WPSGraphicShape::translate().

§ max() [2/2]

template<class T>
Vec2<T>& WPSBox2< T >::max ( )
inline

the maximum 2D point (in x and in y)

§ min() [1/2]

template<class T>
Vec2<T> const& WPSBox2< T >::min ( ) const
inline

the minimum 2D point (in x and in y)

Referenced by WPSTransformation::operator*(), WPSGraphicShape::scale(), and WPSGraphicShape::translate().

§ min() [2/2]

template<class T>
Vec2<T>& WPSBox2< T >::min ( )
inline

the minimum 2D point (in x and in y)

§ operator!=()

template<class T>
bool WPSBox2< T >::operator!= ( WPSBox2< T > const &  p) const
inline

comparison operator!=

§ operator<()

template<class T>
bool WPSBox2< T >::operator< ( WPSBox2< T > const &  p) const
inline

comparison operator< : fist sorts min by Y,X values then max extremity

§ operator==()

template<class T>
bool WPSBox2< T >::operator== ( WPSBox2< T > const &  p) const
inline

comparison operator==

§ operator[]()

template<class T>
Vec2<T> const& WPSBox2< T >::operator[] ( int  c) const
inline

the two extremum points which defined the box

Parameters
cvalue 0 means the minimum, value 1 means the maximum

§ resizeFromCenter()

template<class T>
void WPSBox2< T >::resizeFromCenter ( Vec2< T > const &  sz)
inline

resize the box keeping the center

§ resizeFromMax()

template<class T>
void WPSBox2< T >::resizeFromMax ( Vec2< T > const &  sz)
inline

resize the box keeping the maximum

§ resizeFromMin()

template<class T>
void WPSBox2< T >::resizeFromMin ( Vec2< T > const &  sz)
inline

resize the box keeping the minimum

§ scale()

template<class T>
template<class U >
void WPSBox2< T >::scale ( factor)
inline

scales all points of the box by factor

§ set()

template<class T>
void WPSBox2< T >::set ( Vec2< T > const &  x,
Vec2< T > const &  y 
)
inline

resets the data to minimum x and maximum y

§ setMax()

template<class T>
void WPSBox2< T >::setMax ( Vec2< T > const &  y)
inline

resets the maximum point

Referenced by LotusSpreadsheet::readCellName().

§ setMin()

template<class T>
void WPSBox2< T >::setMin ( Vec2< T > const &  x)
inline

resets the minimum point

Referenced by LotusSpreadsheet::readCellName().

§ size()

Friends And Related Function Documentation

§ operator<<

template<class T>
std::ostream& operator<< ( std::ostream &  o,
WPSBox2< T > const &  f 
)
friend

print data in form X0xY0<->X1xY1

Member Data Documentation

§ m_pt

template<class T>
Vec2<T> WPSBox2< T >::m_pt[2]
protected

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

Generated on Wed Oct 26 2016 16:54:38 for libwps by doxygen 1.8.12