summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Braza <james.braza@synthego.com>2022-01-02 15:30:23 -0500
committerJames Braza <james.braza@synthego.com>2022-01-02 15:30:23 -0500
commit51a5aa802667456d14af99c181550e63d780fca3 (patch)
treee12cfa4b320cbf1691732325fb9cb24736572087
parent0e114e9f9b6e53a96d810d935d358b62d8defffe (diff)
downloadbullet3-51a5aa802667456d14af99c181550e63d780fca3.tar.gz
Added forgotten capitalization of code tag
-rw-r--r--examples/pybullet/examples/pointCloudFromCameraImage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pybullet/examples/pointCloudFromCameraImage.py b/examples/pybullet/examples/pointCloudFromCameraImage.py
index 16e85db2d..23fbe302f 100644
--- a/examples/pybullet/examples/pointCloudFromCameraImage.py
+++ b/examples/pybullet/examples/pointCloudFromCameraImage.py
@@ -73,7 +73,7 @@ imgH = int(height / 10)
img = p.getCameraImage(imgW, imgH, renderer=p.ER_BULLET_HARDWARE_OPENGL)
rgbBuffer = np.reshape(img[2], (imgH, imgW, 4))
-# Note: this depth buffer's reshaping does not match the [w, h] convention for
+# NOTE: this depth buffer's reshaping does not match the [w, h] convention for
# OpenGL depth buffers. See getCameraImageTest.py for an OpenGL depth buffer
depthBuffer = np.reshape(img[3], [imgH, imgW])
print("rgbBuffer.shape=", rgbBuffer.shape)