Image Component Library (ICL)
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
icl::utils::Rect32f Class Reference

Floating point precision implementation of the Rect class. More...

#include <Rect32f.h>

Inheritance diagram for icl::utils::Rect32f:
icl::markers::MarkerMetricsICL1::CR

Public Member Functions

 Rect32f ()
 default constructor More...
 
 Rect32f (float x, float y, float width, float height)
 creates a defined Rect32f More...
 
 Rect32f (const Point32f &p, const Size32f &s)
 creates a new Rect32f with specified offset and size More...
 
 Rect32f (const Rect32f &r)
 create a deep copy of a rect More...
 
 Rect32f (const Rect &rect)
 create a floating point rect from given int-valued rect More...
 
bool isNull () const
 checks wether the object instance is null, i.e. all elements are zero More...
 
bool operator== (const Rect32f &s) const
 checks if two rects are equal More...
 
bool operator!= (const Rect32f &s) const
 checks if two rects are not equal More...
 
Rect32f operator * (double d) const
 scales all parameters of the rect by a double value More...
 
Rect32f operator/ (double d) const
 scales all parameters of the rect by a double value More...
 
Rect32foperator+= (const Size32f &s)
 adds a size to the rects size More...
 
Rect32foperator-= (const Size32f &s)
 substracs a size to the rects size More...
 
Rect32foperator+= (const Point32f &p)
 adds a Point to the rects offset More...
 
Rect32foperator-= (const Point32f &p)
 substracts a Point to the rects offset More...
 
Rect32foperator *= (double d)
 scales all rect params inplace More...
 
Rect32foperator/= (double d)
 scales all rect params inplace More...
 
float getDim () const
 returns width*height More...
 
Rect32f operator & (const Rect32f &r) const
 intersection of two Rect32fs More...
 
Rect32foperator&= (const Rect32f &r)
 inplace intersection of two rects More...
 
Rect32f operator| (const Rect32f &r) const
 union of two Rect32fs More...
 
Rect32foperator|= (const Rect32f &r)
 inplace union of two rects More...
 
Rect32f normalized () const
 rects with negative sizes are normalized to Positive sizes More...
 
bool contains (const Rect32f &r) const
 returns if a Rect32f containes another rect More...
 
bool contains (float x, float y) const
 returns if the Rect32f contains a given point More...
 
Rect32fenlarge (float k)
 let the rect grow by k pixles into each direction More...
 
Rect32f enlarged (float k) const
 returns an enlarged instance of this rect More...
 
Point32f ul () const
 returns upper left point of the rect More...
 
Point32f ll () const
 returns lower left point of the rect More...
 
Point32f ur () const
 returns upper right point of the rect More...
 
Point32f lr () const
 returns lower right point of the rect More...
 
float left () const
 returns the left border position More...
 
float right () const
 returns the right border position More...
 
float bottom () const
 returns the position of the bottom border More...
 
float top () const
 returns the position of the upper border More...
 
Size32f getSize () const
 returns the size of the rect More...
 
Point32f center () const
 returns the center point of the rect More...
 
Rect32f transform (double xfac, double yfac) const
 multiplies the rect's x and width by xfac and y and height by yfac More...
 

Public Attributes

float x
 
float y
 !< x pos (upper left) More...
 
float width
 !< y pos (upper left) More...
 
float height
 !< width of the rect More...
 

Static Public Attributes

static const Rect32f null
 !< height of the rect More...
 

Detailed Description

Floating point precision implementation of the Rect class.

Constructor & Destructor Documentation

◆ Rect32f() [1/5]

icl::utils::Rect32f::Rect32f ( )
inline

default constructor

◆ Rect32f() [2/5]

icl::utils::Rect32f::Rect32f ( float  x,
float  y,
float  width,
float  height 
)
inline

creates a defined Rect32f

◆ Rect32f() [3/5]

icl::utils::Rect32f::Rect32f ( const Point32f p,
const Size32f s 
)
inline

creates a new Rect32f with specified offset and size

◆ Rect32f() [4/5]

icl::utils::Rect32f::Rect32f ( const Rect32f r)
inline

create a deep copy of a rect

◆ Rect32f() [5/5]

icl::utils::Rect32f::Rect32f ( const Rect rect)
inline

create a floating point rect from given int-valued rect

Member Function Documentation

◆ bottom()

float icl::utils::Rect32f::bottom ( ) const
inline

returns the position of the bottom border

◆ center()

Point32f icl::utils::Rect32f::center ( ) const
inline

returns the center point of the rect

◆ contains() [1/2]

bool icl::utils::Rect32f::contains ( const Rect32f r) const
inline

returns if a Rect32f containes another rect

◆ contains() [2/2]

bool icl::utils::Rect32f::contains ( float  x,
float  y 
) const
inline

returns if the Rect32f contains a given point

◆ enlarge()

Rect32f& icl::utils::Rect32f::enlarge ( float  k)
inline

let the rect grow by k pixles into each direction

if k<0 the rect becomes smaller E.g. Rect32f(10,10,90,90).enlarge(10) creates a Rect32f (0,0,100,100)

Parameters
kamount of pixel the rectangle is enlarged by
Returns
*this

◆ enlarged()

Rect32f icl::utils::Rect32f::enlarged ( float  k) const
inline

returns an enlarged instance of this rect

See also
enlarge(float)

◆ getDim()

float icl::utils::Rect32f::getDim ( ) const
inline

returns width*height

◆ getSize()

Size32f icl::utils::Rect32f::getSize ( ) const
inline

returns the size of the rect

◆ isNull()

bool icl::utils::Rect32f::isNull ( ) const
inline

checks wether the object instance is null, i.e. all elements are zero

◆ left()

float icl::utils::Rect32f::left ( ) const
inline

returns the left border position

◆ ll()

Point32f icl::utils::Rect32f::ll ( ) const
inline

returns lower left point of the rect

◆ lr()

Point32f icl::utils::Rect32f::lr ( ) const
inline

returns lower right point of the rect

◆ normalized()

Rect32f icl::utils::Rect32f::normalized ( ) const
inline

rects with negative sizes are normalized to Positive sizes

e.g. the rect (5,5,-5,-5) is normalized to (0,0,5,5)

◆ operator &()

Rect32f icl::utils::Rect32f::operator & ( const Rect32f r) const
inline

intersection of two Rect32fs

◆ operator *()

Rect32f icl::utils::Rect32f::operator * ( double  d) const
inline

scales all parameters of the rect by a double value

◆ operator *=()

Rect32f& icl::utils::Rect32f::operator *= ( double  d)
inline

scales all rect params inplace

◆ operator!=()

bool icl::utils::Rect32f::operator!= ( const Rect32f s) const
inline

checks if two rects are not equal

◆ operator&=()

Rect32f& icl::utils::Rect32f::operator&= ( const Rect32f r)
inline

inplace intersection of two rects

◆ operator+=() [1/2]

Rect32f& icl::utils::Rect32f::operator+= ( const Size32f s)
inline

adds a size to the rects size

◆ operator+=() [2/2]

Rect32f& icl::utils::Rect32f::operator+= ( const Point32f p)
inline

adds a Point to the rects offset

◆ operator-=() [1/2]

Rect32f& icl::utils::Rect32f::operator-= ( const Size32f s)
inline

substracs a size to the rects size

◆ operator-=() [2/2]

Rect32f& icl::utils::Rect32f::operator-= ( const Point32f p)
inline

substracts a Point to the rects offset

◆ operator/()

Rect32f icl::utils::Rect32f::operator/ ( double  d) const
inline

scales all parameters of the rect by a double value

◆ operator/=()

Rect32f& icl::utils::Rect32f::operator/= ( double  d)
inline

scales all rect params inplace

◆ operator==()

bool icl::utils::Rect32f::operator== ( const Rect32f s) const
inline

checks if two rects are equal

◆ operator|()

Rect32f icl::utils::Rect32f::operator| ( const Rect32f r) const
inline

union of two Rect32fs

◆ operator|=()

Rect32f& icl::utils::Rect32f::operator|= ( const Rect32f r)
inline

inplace union of two rects

◆ right()

float icl::utils::Rect32f::right ( ) const
inline

returns the right border position

◆ top()

float icl::utils::Rect32f::top ( ) const
inline

returns the position of the upper border

◆ transform()

Rect32f icl::utils::Rect32f::transform ( double  xfac,
double  yfac 
) const
inline

multiplies the rect's x and width by xfac and y and height by yfac

◆ ul()

Point32f icl::utils::Rect32f::ul ( ) const
inline

returns upper left point of the rect

◆ ur()

Point32f icl::utils::Rect32f::ur ( ) const
inline

returns upper right point of the rect

Member Data Documentation

◆ height

float icl::utils::Rect32f::height

!< width of the rect

◆ null

const Rect32f icl::utils::Rect32f::null
static

!< height of the rect

static null instance (0,0,0,0)

◆ width

float icl::utils::Rect32f::width

!< y pos (upper left)

◆ x

float icl::utils::Rect32f::x

◆ y

float icl::utils::Rect32f::y

!< x pos (upper left)


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