| 264 | } |
| 265 | |
| 266 | std::vector<Point3d> IlluminanceMap_Impl::corners() const { |
| 267 | std::vector<Point3d> result{ |
| 268 | {0, this->yLength(), 0}, |
| 269 | {0, 0, 0}, |
| 270 | {this->xLength(), 0, 0}, |
| 271 | {this->xLength(), this->yLength(), 0}, |
| 272 | }; |
| 273 | return result; |
| 274 | } |
| 275 | |
| 276 | int IlluminanceMap_Impl::spaceIndex() const { |
| 277 | return OS_IlluminanceMapFields::SpaceName; |
no test coverage detected