From f6bead7152028c9ae0a0cbb0fbbf6ee2375c1a4c Mon Sep 17 00:00:00 2001 From: Jasmine Hsu Date: Mon, 27 Jun 2016 13:51:28 -0700 Subject: [PATCH] edit method definitions (docstring) for calling renderImage() --- examples/pybullet/pybullet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pybullet/pybullet.c b/examples/pybullet/pybullet.c index c12085b30..c8d2bef04 100644 --- a/examples/pybullet/pybullet.c +++ b/examples/pybullet/pybullet.c @@ -1225,7 +1225,7 @@ static PyMethodDef SpamMethods[] = { //applyLinkForce {"renderImage", pybullet_renderImage, METH_VARARGS, - "Render an image (given the pixel resolution width & height and camera view & projection matrices), and return the 8-8-8bit RGB pixel data and floating point depth values"}, + "Render an image (given the pixel resolution width, height, view matrix, projection matrix, near and far vlues), and return the 8-8-8bit RGB pixel data and floating point depth values"}, {NULL, NULL, 0, NULL} /* Sentinel */ };