-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ign -> gz Migrate Ignition Headers : gz-rendering #705
Conversation
Codecov Report
@@ Coverage Diff @@
## ign-rendering3 #705 +/- ##
===============================================
Coverage 83.40% 83.40%
===============================================
Files 100 100
Lines 7816 7816
===============================================
Hits 6519 6519
Misses 1297 1297
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
c411fbb
to
1bb6749
Compare
Signed-off-by: methylDragon <[email protected]>
2c533ac
to
43b5e40
Compare
Signed-off-by: methylDragon <[email protected]>
d7e384d
to
1c4ca3e
Compare
Signed-off-by: methylDragon <[email protected]>
1c4ca3e
to
a8b31e9
Compare
c71704f
to
5f89991
Compare
using namespace rendering; | ||
|
||
void Connect() | ||
{ | ||
gazebo::common::Console::SetQuiet(false); | ||
gazebo::transport::init(); | ||
gazebo::transport::run(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh this is actually Gazebo classic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh I think these lines should not be removed. This demo shows integration with gazebo classic so the old gazebo-classic calls are expected
using namespace rendering; | ||
|
||
void Connect() | ||
{ | ||
common::Console::SetVerbosity(4); | ||
gazebo::transport::init(); | ||
gazebo::transport::run(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here too Gazebo classic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here, we should keep these calls
Signed-off-by: methylDragon <[email protected]>
5f89991
to
655698d
Compare
Signed-off-by: Nate Koenig <[email protected]>
Signed-off-by: Nate Koenig <[email protected]>
Signed-off-by: Nate Koenig <[email protected]>
@iche033 , I think this is ready. |
using namespace rendering; | ||
|
||
void Connect() | ||
{ | ||
gazebo::common::Console::SetQuiet(false); | ||
gazebo::transport::init(); | ||
gazebo::transport::run(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh I think these lines should not be removed. This demo shows integration with gazebo classic so the old gazebo-classic calls are expected
@@ -114,27 +114,27 @@ namespace ignition | |||
|
|||
private: NewSceneManager *newSceneManager; | |||
|
|||
private: gazebo::transport::NodePtr transportNode; | |||
private: sim::transport::NodePtr transportNode; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these should stay gazebo
as this demo uses gazebo-classic transport to get its scene info and render the scene using gz-rendering
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh. I reverted these changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still see sim::
, maybe the changes were not pushed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
more sim::
to gazebo::
changes in df38c4e
using namespace rendering; | ||
|
||
void Connect() | ||
{ | ||
common::Console::SetVerbosity(4); | ||
gazebo::transport::init(); | ||
gazebo::transport::run(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here, we should keep these calls
Signed-off-by: Nate Koenig <[email protected]>
Signed-off-by: Ian Chen <[email protected]>
Signed-off-by: Ian Chen <[email protected]>
added more changes in c65a4cf to fix the |
See: gazebo-tooling/release-tools#784