@@ -51,7 +51,7 @@ |
||
| 51 | 51 | */ |
| 52 | 52 | private function findVertex(string $key): Vertex |
| 53 | 53 | { |
| 54 | - $vertices = array_filter($this->converterGraph->getVertices()->getVector(), function (Vertex $vertex) use ($key) { |
|
| 54 | + $vertices = array_filter($this->converterGraph->getVertices()->getVector(), function(Vertex $vertex) use ($key) { |
|
| 55 | 55 | return $vertex->getId() === $key; |
| 56 | 56 | }); |
| 57 | 57 | |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | $blue = $c; |
| 47 | 47 | break; |
| 48 | 48 | case 4: |
| 49 | - $red = $x; // >> 64 ??? |
|
| 49 | + $red = $x; // >> 64 ??? |
|
| 50 | 50 | $green = 0; // >> 64 |
| 51 | 51 | $blue = $c; // 0.5 >> (0.25+0.5)*255 >> 191.25 >> 191 OK |
| 52 | 52 | break; |