示例#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(); }