|
@@ 158-160 (lines=3) @@
|
| 155 |
|
$min = $type.'min'; |
| 156 |
|
$max = $type.'max'; |
| 157 |
|
|
| 158 |
|
if (!isset($this->boundingBox[$min]) || $this->boundingBox[$min] == 0.0 || ($this->boundingBox[$min] > $data[$min])) { |
| 159 |
|
$this->boundingBox[$min] = $data[$min]; |
| 160 |
|
} |
| 161 |
|
if (!isset($this->boundingBox[$max]) || $this->boundingBox[$max] == 0.0 || ($this->boundingBox[$max] < $data[$max])) { |
| 162 |
|
$this->boundingBox[$max] = $data[$max]; |
| 163 |
|
} |
|
@@ 161-163 (lines=3) @@
|
| 158 |
|
if (!isset($this->boundingBox[$min]) || $this->boundingBox[$min] == 0.0 || ($this->boundingBox[$min] > $data[$min])) { |
| 159 |
|
$this->boundingBox[$min] = $data[$min]; |
| 160 |
|
} |
| 161 |
|
if (!isset($this->boundingBox[$max]) || $this->boundingBox[$max] == 0.0 || ($this->boundingBox[$max] < $data[$max])) { |
| 162 |
|
$this->boundingBox[$max] = $data[$max]; |
| 163 |
|
} |
| 164 |
|
} |
| 165 |
|
|
| 166 |
|
/** |