Method: CGLM::Mat4#transpose!

Defined in:
ext/cglm/rb_cglm_mat4.c

#transpose!Object



111
112
113
114
# File 'ext/cglm/rb_cglm_mat4.c', line 111

VALUE rb_cglm_mat4_transpose_self(VALUE self) {
  glm_mat4_transpose(VAL2MAT4(self));
  return self;
}