コード例 #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(); }