示例#1
0
文件: Rect.cpp 项目: mmanley/Antares
//------------------------------------------------------------------------------
BRect&
BRect::InsetBySelf(float dx, float dy)
{
	InsetBy(dx, dy);
	return *this;
}
示例#2
0
IntRect&
IntRect::InsetBySelf(int32 dx, int32 dy)
{
	InsetBy(dx, dy);
	return *this;
}
示例#3
0
文件: Rect.cpp 项目: mmanley/Antares
//------------------------------------------------------------------------------
BRect&
BRect::InsetBySelf(BPoint point)
{
	InsetBy(point);
	return *this;
}
示例#4
0
IntRect&
IntRect::InsetBySelf(const IntPoint& point)
{
	InsetBy(point);
	return *this;
}