| 155 | } |
| 156 | |
| 157 | openstudio::BoundingBox ShadingSurfaceGroup_Impl::boundingBox() const { |
| 158 | BoundingBox result; |
| 159 | for (ShadingSurface& shadingSurface : this->shadingSurfaces()) { |
| 160 | result.addPoints(shadingSurface.vertices()); |
| 161 | } |
| 162 | return result; |
| 163 | } |
| 164 | |
| 165 | std::string ShadingSurfaceGroup_Impl::shadingSurfaceType() const { |
| 166 | boost::optional<std::string> value = getString(OS_ShadingSurfaceGroupFields::ShadingSurfaceType, true); |
nothing calls this directly
no test coverage detected