| 318 | } |
| 319 | |
| 320 | bool DaylightingControl_Impl::setPosition(const Point3d& position) { |
| 321 | this->setPositionXCoordinate(position.x()); |
| 322 | this->setPositionYCoordinate(position.y()); |
| 323 | this->setPositionZCoordinate(position.z()); |
| 324 | return true; |
| 325 | } |
| 326 | |
| 327 | openstudio::Transformation DaylightingControl_Impl::transformation() const { |
| 328 | Vector3d origin(this->positionXCoordinate(), this->positionYCoordinate(), this->positionZCoordinate()); |
nothing calls this directly
no test coverage detected