declare const _default: "mat3 rotation3dZ(float angle) {\n float s = sin(angle);\n float c = cos(angle);\n\n return mat3(\n c, s, 0.0,\n -s, c, 0.0,\n 0.0, 0.0, 1.0\n );\n}\n\n"; export default _default;