예제 #1
0
파일: Rect.cpp 프로젝트: mmanley/Antares
//------------------------------------------------------------------------------
BRect&
BRect::OffsetBySelf(float dx, float dy)
{
	OffsetBy(dx, dy);
	return *this;
}
예제 #2
0
IntRect&
IntRect::OffsetBySelf(int32 dx, int32 dy)
{
	OffsetBy(dx, dy);
	return *this;
}
예제 #3
0
파일: Rect.cpp 프로젝트: mmanley/Antares
//------------------------------------------------------------------------------
BRect&
BRect::OffsetBySelf(BPoint point)
{
	OffsetBy(point);
	return *this;
}
예제 #4
0
IntRect&
IntRect::OffsetBySelf(const IntPoint& point)
{
	OffsetBy(point);
	return *this;
}