Lines Matching refs:width
203 …$width = Validator::attributes($request)->isBetween(self::MINIMUM_WIDTH, self::MAXIMUM_WIDTH…
223 return $this->chart($individual, $style, $width, $generations);
230 'width' => $width,
246 'width' => $width,
255 * @param int $width
260 …protected function chart(Individual $individual, int $style, int $width, int $generations): Respon… argument
264 $width = intdiv(self::CHART_WIDTH_PIXELS * $width, 100);
270 $height = intdiv($width, 2);
276 $height = intdiv($width * 86, 100);
283 $height = $width;
288 $image = imagecreate($width, $height);
291 imagefilledrectangle($image, 0, 0, $width, $height, $transparent);
303 $center_x = intdiv($width, 2);
305 $arc_width = $width / $generations / 2.0;
319 $arc_diameter = intdiv($width * $generation, $generations);
467 'fanw' => $width,