Method: CGLM::Mat4#determinant
- Defined in:
- ext/cglm/rb_cglm_mat4.c
#determinant ⇒ Numeric Also known as: det
143 144 145 |
# File 'ext/cglm/rb_cglm_mat4.c', line 143 VALUE rb_cglm_mat4_determinant(VALUE self) { return DBL2NUM(glm_mat4_det(VAL2MAT4(self))); } |