We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Patrick likes no spaces for * or / operators, and space for everything else: if ((_maxDepthToDraw - _minDepthToDraw)*_minPixelsPerMeter < 200) {
if ((_maxDepthToDraw - _minDepthToDraw)*_minPixelsPerMeter < 200) {
I like single space between every mathematical or logical operator: if ((_maxDepthToDraw - _minDepthToDraw) * _minPixelsPerMeter < 200) {
if ((_maxDepthToDraw - _minDepthToDraw) * _minPixelsPerMeter < 200) {
Is this something we should add a guideline for? or just leave it to preference?
There is also the matter of a space after the if or while statements.
if
while
The text was updated successfully, but these errors were encountered:
@patrickelectric and @Williangalvani point out these resources which are in favor of patrick's preference https://www.python.org/dev/peps/pep-0008/#other-recommendations https://github.com/opencv/opencv/blob/master/modules/core/include/opencv2/core/mat.hpp#L106 https://github.com/eigenteam/eigen-git-mirror/blob/master/Eigen/src/Jacobi/Jacobi.h#L200
Sorry, something went wrong.
No branches or pull requests
Patrick likes no spaces for * or / operators, and space for everything else:
if ((_maxDepthToDraw - _minDepthToDraw)*_minPixelsPerMeter < 200) {
I like single space between every mathematical or logical operator:
if ((_maxDepthToDraw - _minDepthToDraw) * _minPixelsPerMeter < 200) {
Is this something we should add a guideline for? or just leave it to preference?
There is also the matter of a space after the
if
orwhile
statements.The text was updated successfully, but these errors were encountered: