remove debug printf

This commit is contained in:
Erwin Coumans
2016-08-02 11:14:21 -07:00
parent f304fd7611
commit f5fca86d49

View File

@@ -1165,7 +1165,7 @@ static PyObject* pybullet_renderImage(PyObject* self, PyObject* args)
if (pybullet_internalSetVector(objTargetPos, targetPos)) if (pybullet_internalSetVector(objTargetPos, targetPos))
{ {
printf("width = %d, height = %d, targetPos = %f,%f,%f, distance = %f, yaw = %f, pitch = %f, upAxisIndex = %d, near=%f, far=%f, fov=%f\n",width,height,targetPos[0],targetPos[1],targetPos[2],camDistance,yaw,pitch,upAxisIndex,nearVal,farVal,fov); //printf("width = %d, height = %d, targetPos = %f,%f,%f, distance = %f, yaw = %f, pitch = %f, upAxisIndex = %d, near=%f, far=%f, fov=%f\n",width,height,targetPos[0],targetPos[1],targetPos[2],camDistance,yaw,pitch,upAxisIndex,nearVal,farVal,fov);
b3RequestCameraImageSetViewMatrix2(command,targetPos,camDistance,yaw,pitch,upAxisIndex); b3RequestCameraImageSetViewMatrix2(command,targetPos,camDistance,yaw,pitch,upAxisIndex);
aspect = width/height; aspect = width/height;