I was reading the the answers to the question about finding the angle between 2 vectors in 3D space. Signed angle between two 3D vectors with same origin within the same plane. The answer is shown here:
atan2((Vb x Va) . Vn, Va . Vb)
is exactly what I need, but I don't understand what the commas operator is. I know that the exes and dots are cross products and dot products respectively. I don't think the commas are inner products (same thing as dot products)? Perhaps, it is a syntax of a programming language?