-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Simulation: more access to camera parameters #1650
Simulation: more access to camera parameters #1650
Conversation
@@ -145,6 +164,18 @@ namespace pcl | |||
const float* | |||
getScoreBuffer (); | |||
|
|||
float | |||
getZNear(){ return z_near_; } |
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.
Space before opening parenthesis.
Hey damienjadeduff, firstly, I think that's a good approach you're following there 👍 Cheers, |
Please squash the commits into a single one. |
5fb3ec1
to
2d5c42a
Compare
I made the requested white-space changes and squashed the commits. I made an assumption about the 2nd request and changed the pre-existing set() function in the same way. Regards. |
Looks good to me |
This gives the user of the simulation module the ability to retrieve camera parameters and also to set the clipping planes, which earlier were set to arbitrary values.
We are using the simulation module in its current state and we expect others are too.
Kind regards.