コード例 #1
0
ファイル: Disc.php プロジェクト: atelierspierrot/maths
 /**
  * Test if a point is on the external circle of the disc
  *
  * @param   \Maths\PointInterface   $a
  * @return  bool
  */
 public function isValidCirclePoint(PointInterface $a)
 {
     return (bool) parent::isValidPoint($a);
 }