Lines Matching refs:point
46 foreach ($this->points as $point) {
47 $points[] = $point->toArray();
56 public function attach(Point $point): Point argument
58 if ($point instanceof self) {
62 $this->points->attach($point);
63 return $point;
66 public function detach(Point $point): Point argument
68 $this->points->detach($point);
69 return $point;
90 foreach ($this->points as $point) {
92 $centroid->coordinates[$n] += $point->coordinates[$n];