The Huichols call peyote, the sacred hallucinogenic cactus, "Hikuri" or Tatei Hikuri", which can be translated as "Our Mother Hikuri". The hikuri&fractal-lookin' geometry in the background is completely made out of code inside my 3D IDE. Here is that code: struct vec3{ float x, y, z; };
struct vec4{ float x, y, z, w; };
struct mat3{ float m00, m01, m02, m10, m11, m12, m20, m21, m22; };
vec3 toVec3(vector v) { return vec3(v[0], v[1], v[2]); }
mat3 __operator__mul__(mat3 A, mat3 B)
{
return mat3(A.m00*B.m00+A.m01*B.m10+A.m02*B.m20, A.m00*B.m01+A.m01*B.m11+A.m02*B.m21, A.m00*B.m02+A.m01*B.m12+A.m02*B.m22,
A.m10*B.m00+A.m11*B.m10+A.m12*B.m20, A.m10*B.m01+A.m11*B.m11+A.m12*B.m...