getReverse() 공개 메소드

Create a new polyline with reversed order of points, i. e. reversed polyline direction.
public getReverse ( ) : Polyline
리턴 Polyline
예제 #1
0
 public function testReverseTwiceWorksAsExpected()
 {
     $doubleReversed = $this->polyline->getReverse()->getReverse();
     $this->assertEquals($this->polyline, $doubleReversed);
 }