public int dot(int3 b) { return(x * b.x + y * b.y + z * b.z); }
public static int dot(int3 a, int3 b) { return(a.x * b.x + a.y * b.y + a.z * b.z); }