コード例 #1
0
ファイル: Point.php プロジェクト: rendix2/QW_MVS
 public final function isInImage(Images $images)
 {
     return $this->getX() < $images->getWidth() && $this->getY() < $images->getHeight();
 }