Skip to content

Commit 9ab227e

Browse files
committed
Address reviewer feedback
Signed-off-by: Michael Carroll <[email protected]>
1 parent 1e09a89 commit 9ab227e

File tree

8 files changed

+12
-110
lines changed

8 files changed

+12
-110
lines changed

include/ignition/gazebo/Actor.hh

Lines changed: 0 additions & 19 deletions
This file was deleted.

include/ignition/gazebo/Joint.hh

Lines changed: 0 additions & 19 deletions
This file was deleted.

include/ignition/gazebo/Light.hh

Lines changed: 0 additions & 19 deletions
This file was deleted.

include/ignition/gazebo/Sensor.hh

Lines changed: 0 additions & 19 deletions
This file was deleted.

include/ignition/gazebo/components/BatteryPowerLoad.hh

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/cmd/cmdsim.rb.in

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -609,10 +609,6 @@ See https://github.com/gazebosim/gz-sim/issues/168 for more info."
609609
options['wait_gui'], options['render_engine_gui'],
610610
options['render_engine_gui_api_backend'])
611611
end
612-
rescue
613-
puts "Library error: Problem running [#{options['command']}]() "\
614-
"from #{plugin}."
615-
# begin
616612
end
617613
# execute
618614
end

src/gz.hh

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121

2222
/// \brief External hook to read the library version.
2323
/// \return C-string representing the version. Ex.: 0.1.2
24-
extern "C" GZ_SIM_VISIBLE char *gzSimVersion();
24+
extern "C" GZ_SIM_GZ_VISIBLE char *gzSimVersion();
2525

2626
/// \brief Get the Gazebo version header.
2727
/// \return C-string containing the Gazebo version information.
28-
extern "C" GZ_SIM_VISIBLE char *simVersionHeader();
28+
extern "C" GZ_SIM_GZ_VISIBLE char *simVersionHeader();
2929

3030
/// \brief Set verbosity level
3131
/// \param[in] _verbosity 0 to 4
32-
extern "C" GZ_SIM_VISIBLE void cmdVerbosity(
32+
extern "C" GZ_SIM_GZ_VISIBLE void cmdVerbosity(
3333
const char *_verbosity);
3434

35-
extern "C" GZ_SIM_VISIBLE const char *worldInstallDir();
35+
extern "C" GZ_SIM_GZ_VISIBLE const char *worldInstallDir();
3636

3737
/// \brief External hook to run simulation server.
3838
/// \param[in] _sdfString SDF file to run, as a string.
@@ -62,7 +62,7 @@ extern "C" GZ_SIM_VISIBLE const char *worldInstallDir();
6262
/// \param[in] _recordPeriod --record-period option
6363
/// \param[in] _seed --seed value to be used for random number generator.
6464
/// \return 0 if successful, 1 if not.
65-
extern "C" GZ_SIM_VISIBLE int runServer(const char *_sdfString,
65+
extern "C" GZ_SIM_GZ_VISIBLE int runServer(const char *_sdfString,
6666
int _iterations, int _run, float _hz, double _initialSimTime, int _levels,
6767
const char *_networkRole, int _networkSecondaries, int _record,
6868
const char *_recordPath, int _recordResources, int _logOverwrite,
@@ -82,16 +82,17 @@ extern "C" GZ_SIM_VISIBLE int runServer(const char *_sdfString,
8282
/// \param[in] _renderEngine --render-engine-gui option
8383
/// \param[in] _renderEngineGuiApiBackend --render-engine-gui-api-backend option
8484
/// \return 0 if successful, 1 if not.
85-
extern "C" GZ_SIM_VISIBLE int runGui(const char *_guiConfig, const char *_file,
86-
int _waitGui,
87-
const char *_renderEngine,
88-
const char *_renderEngineGuiApiBackend);
85+
extern "C" GZ_SIM_GZ_VISIBLE
86+
int runGui(const char *_guiConfig, const char *_file,
87+
int _waitGui,
88+
const char *_renderEngine,
89+
const char *_renderEngineGuiApiBackend);
8990

9091
/// \brief External hook to find or download a fuel world provided a URL.
9192
/// \param[in] _pathToResource Path to the fuel world resource, ie,
9293
/// https://staging-fuel.gazebosim.org/1.0/gmas/worlds/ShapesClone
9394
/// \return C-string containing the path to the local world sdf file
94-
extern "C" GZ_SIM_VISIBLE const char *findFuelResource(
95+
extern "C" GZ_SIM_GZ_VISIBLE const char *findFuelResource(
9596
char *_pathToResource);
9697

9798
#endif

tutorials/blender_procedural_datasets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ blender [blender options] file.blend
9393
4. Run the script using the *Run script* button in the panel of the
9494
*Text Editor* tab at the top of the screen.
9595

96-
@image html https://github.com/gazebosim/gz-sim/tree/main/tutorials/files/blender_procedural_datasets/blender_instructions.png "Instructions in Blender" width=100%
96+
![Instructions in Blender](https://raw.githubusercontent.com/gazebosim/gz-sim/main/tutorials/files/blender_procedural_datasets/blender_instructions.png)
9797

9898
Once you follow these steps and configure the script for your `.blend` project,
9999
you can save it and use Option B in the future.

0 commit comments

Comments
 (0)