Lines Matching defs:rotate_around_x

184 …vec &rotate_around_x(float c, float s) { float ry = y, rz = z; y = c*ry-s*rz; z = c*rz+s*ry; retur…  in rotate_around_x()  function
188 vec &rotate_around_x(float angle) { return rotate_around_x(cosf(angle), sinf(angle)); } in rotate_around_x() function
192 vec &rotate_around_x(const vec2 &sc) { return rotate_around_x(sc.x, sc.y); } in rotate_around_x() function
355 …vec4 &rotate_around_x(float c, float s) { float ry = y, rz = z; y = c*ry-s*rz; z = c*rz+s*ry; retu… in rotate_around_x() function
359 vec4 &rotate_around_x(float angle) { return rotate_around_x(cosf(angle), sinf(angle)); } in rotate_around_x() function
363 vec4 &rotate_around_x(const vec2 &sc) { return rotate_around_x(sc.x, sc.y); } in rotate_around_x() function
809 void rotate_around_x(float ck, float sk) in rotate_around_x() function
816 void rotate_around_x(float angle) { rotate_around_x(cosf(angle), sinf(angle)); } in rotate_around_x() function
817 void rotate_around_x(const vec2 &sc) { rotate_around_x(sc.x, sc.y); } in rotate_around_x() function
1015 void rotate_around_x(float ck, float sk) in rotate_around_x() function
1022 void rotate_around_x(float angle) { rotate_around_x(cosf(angle), sinf(angle)); } in rotate_around_x() function
1023 void rotate_around_x(const vec2 &sc) { rotate_around_x(sc.x, sc.y); } in rotate_around_x() function
1512 void rotate_around_x(float ck, float sk) in rotate_around_x() function
1519 void rotate_around_x(float angle) { rotate_around_x(cosf(angle), sinf(angle)); } in rotate_around_x() function
1520 void rotate_around_x(const vec2 &sc) { rotate_around_x(sc.x, sc.y); } in rotate_around_x() function