| 187 | } |
| 188 | |
| 189 | bool GlareSensor_Impl::setPosition(const Point3d& position) { |
| 190 | this->setPositionXCoordinate(position.x()); |
| 191 | this->setPositionYCoordinate(position.y()); |
| 192 | this->setPositionZCoordinate(position.z()); |
| 193 | return true; |
| 194 | } |
| 195 | |
| 196 | openstudio::Transformation GlareSensor_Impl::transformation() const { |
| 197 | Vector3d origin(this->positionXCoordinate(), this->positionYCoordinate(), this->positionZCoordinate()); |
nothing calls this directly
no test coverage detected