Lines Matching refs:points

1941   private $points;  variable in dokuwiki\\plugin\\a2s\\SVGPath
1953 $this->points = array();
1975 $pPoints = count($this->points);
1977 $minY = $this->points[0]->y;
1978 $minX = $this->points[0]->x;
1981 if ($this->points[$i]->y <= $minY) {
1982 $minY = $this->points[$i]->y;
1984 if ($this->points[$i]->x < $minX) {
1985 $minX = $this->points[$i]->x;
1997 $startPoints = array_splice($this->points, $minIdx);
1998 $this->points = array_merge($startPoints, $this->points);
2006 array_pop($this->points);
2016 if (count($this->points) > 0) {
2017 if ($this->points[0]->x == $p->x && $this->points[0]->y == $p->y) {
2027 foreach ($this->points as $point) {
2035 $this->points[] = $p;
2044 return $this->points;
2055 $this->points[] = $p;
2116 $bound = count($this->points);
2117 for ($i = 0, $j = count($this->points) - 1; $i < $bound; $i++) {
2118 if (($this->points[$i]->gridY < $y && $this->points[$j]->gridY >= $y ||
2119 $this->points[$j]->gridY < $y && $this->points[$i]->gridY >= $y) &&
2120 ($this->points[$i]->gridX <= $x || $this->points[$j]->gridX <= $x)) {
2121 if ($this->points[$i]->gridX + ($y - $this->points[$i]->gridY) /
2122 ($this->points[$j]->gridY - $this->points[$i]->gridY) *
2123 ($this->points[$j]->gridX - $this->points[$i]->gridX) < $x) {
2478 $startPoint = array_shift($this->points);
2479 $endPoint = $this->points[count($this->points) - 1];
2505 foreach ($this->points as $p) {
2593 $bound = count($this->points);
2595 $p = $this->points[$i];
2608 if ($i == count($this->points) - 1) {
2611 $nP = $this->points[$i + 1];
3868 $points = $obj->getPoints();
3871 $bound = count($points);
3873 $p = $points[$i];
3875 if ($i == count($points) - 1) {
3878 $nP = $points[0];
3883 $nP = $points[$i+1];
3960 $points = $box->getPoints();
3961 $sX = $points[0]->gridX + 1;
3962 $sY = $points[0]->gridY + 1;
3972 $sX = $points[0]->gridX + 1;
3973 $sY = $points[0]->gridY + 1;