| 162 | } |
| 163 | |
| 164 | boost::optional<Space> ShadingSurface_Impl::space() const { |
| 165 | boost::optional<Space> result; |
| 166 | boost::optional<ShadingSurfaceGroup> shadingSurfaceGroup = this->shadingSurfaceGroup(); |
| 167 | if (shadingSurfaceGroup) { |
| 168 | result = shadingSurfaceGroup->space(); |
| 169 | } |
| 170 | return result; |
| 171 | } |
| 172 | |
| 173 | boost::optional<double> ShadingSurface_Impl::numberofVertices() const { |
| 174 | return getDouble(OS_ShadingSurfaceFields::NumberofVertices, true); |
no test coverage detected