/** * Return true if this point is zero.x = zero.y = 0 * * @return bool */ public function isZero() { $eval = Math::isZero($this->x) && Math::isZero($this->y); return $eval; }
/** * @covers tarcisio\p2d\Math::isZero */ public function testIsZero() { $this->assertTrue(Math::isZero(0)); $this->assertTrue(Math::isZero(1.0E-8)); $this->assertFalse(Math::isZero(1.0E-7)); }