예제 #1
0
파일: rect.hpp 프로젝트: aonorin/nytl
	VecType2 bottomRight() const { return position.xy() + size.xy(); }
예제 #2
0
파일: rect.hpp 프로젝트: aonorin/nytl
	VecType2 topRight() const { return position.xy() + VecType2(size.x, 0); }
예제 #3
0
파일: rect.hpp 프로젝트: aonorin/nytl
	VecType2 bottomLeft() const { return position.xy() + VecType2(0, size.y);}
예제 #4
0
파일: rect.hpp 프로젝트: aonorin/nytl
 VecType2 topLeft() const { return position.xy(); }