Method: CGLM::Mat4#bottom
- Defined in:
- ext/cglm/rb_cglm_cam.c
#bottom ⇒ Numeric
79 80 81 82 83 |
# File 'ext/cglm/rb_cglm_cam.c', line 79 VALUE rb_cglm_cam_decomp_bottom(VALUE self) { float top, bottom; glm_persp_decomp_y(VAL2MAT4(self), &top, &bottom); return DBL2NUM(bottom); } |