Beispiel #1
0
//------------------------------------------------------------------------------
BRect&
BRect::InsetBySelf(float dx, float dy)
{
	InsetBy(dx, dy);
	return *this;
}
Beispiel #2
0
IntRect&
IntRect::InsetBySelf(int32 dx, int32 dy)
{
	InsetBy(dx, dy);
	return *this;
}
Beispiel #3
0
//------------------------------------------------------------------------------
BRect&
BRect::InsetBySelf(BPoint point)
{
	InsetBy(point);
	return *this;
}
Beispiel #4
0
IntRect&
IntRect::InsetBySelf(const IntPoint& point)
{
	InsetBy(point);
	return *this;
}