示例#1
0
 public function testVectorMultiplyVector()
 {
     $vector = new ezcGraphVector(1, 2);
     $result = $vector->mul(new ezcGraphVector(3, 2));
     $this->assertEquals($result, 7);
 }