| 252 | } |
| 253 | |
| 254 | std::vector<Point3d> IlluminanceMap_Impl::referencePoints() const { |
| 255 | std::vector<Point3d> result; |
| 256 | |
| 257 | for (double y : linspace(0, this->yLength(), this->numberofYGridPoints())) { |
| 258 | for (double x : linspace(0, this->xLength(), this->numberofXGridPoints())) { |
| 259 | result.push_back(Point3d(x, y, 0)); |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | return result; |
| 264 | } |
| 265 | |
| 266 | std::vector<Point3d> IlluminanceMap_Impl::corners() const { |
| 267 | std::vector<Point3d> result{ |