| |
- gluProject(objX, objY, objZ, model=None, proj=None, view=None)
- Convenience wrapper for gluProject
Automatically fills in the model, projection and viewing matrices
if not provided.
returns (winX,winY,winZ) doubles
- gluUnProject(winX, winY, winZ, model=None, proj=None, view=None)
- Convenience wrapper for gluUnProject
Automatically fills in the model, projection and viewing matrices
if not provided.
returns (objX,objY,objZ) doubles
- gluUnProject4(winX, winY, winZ, clipW, model=None, proj=None, view=None, near=0.0, far=1.0)
- Convenience wrapper for gluUnProject
Automatically fills in the model, projection and viewing matrices
if not provided.
returns (objX,objY,objZ) doubles
|