modelY()
Lights Camera / CoordinatesDescription
Returns the y-coordinate of a 3D point in model space after applying the current transformation matrix.
Syntax
float modelY(float x, float y, float z)
Parameters
| Name | Type | Description |
|---|---|---|
| x | float | 3D x-coordinate |
| y | float | 3D y-coordinate |
| z | float | 3D z-coordinate |
Returns
floatRelated
Under the Hood
From Processing.h:
float modelY(float x, float y, float z=0);
Under the Hood
From Processing.cpp:
float PApplet::modelY(float x,float y,float z) {float mv[16];glGetFloatv(GL_MODELVIEW_MATRIX,mv);return mv[1]*x+mv[5]*y+mv[9]*z+mv[13];}