Skip to content

Commit 96bce4c

Browse files
jchaudhary21jasmeet0915
authored andcommitted
Changed sun's direction from CCW -> CW (space-ros#46)
1 parent 08ad26c commit 96bce4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

custom_gz_plugins/src/DayLightManager/DayLightManager.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ void gz::sim::plugins::DayLightManager::Setup(gz::sim::EntityComponentManager &_
254254
</model>
255255
</sdf>
256256
)");
257-
257+
258258
// Insert sun_sphere model
259259
gz::msgs::EntityFactory sunSphereSpawnEntity;
260260
gz::msgs::Boolean sunSphereSpawnRes;
@@ -317,7 +317,7 @@ void gz::sim::plugins::DayLightManager::SetSunPosition()
317317

318318
// Update sun coordinates
319319
this->_x_coordinate = this->_radius * cos(alpha) * cos(theta) + this->_x_bias;
320-
this->_y_coordinate = this->_radius * cos(alpha) * sin(theta) + this->_y_bias;
320+
this->_y_coordinate = this->_radius * cos(alpha) * -1* sin(theta) + this->_y_bias;
321321
this->_z_coordinate = this->_radius * sin(alpha);
322322

323323
// Set new sun position

0 commit comments

Comments
 (0)