I'm currently enrolled in a course dealing with Isogeometric Analaysis (Splines, NURBS, ...) and in one of our exercises, we are asked to numerically evaluate an integral using methods we have implemented. This works fine for me, but I actually don't know what I'm computing. Maybe someone could give an interpretation of the formula for me.
\begin{align}
I &= \frac{1}{4 \pi} \int_{C1} \int_{C2} \frac{(dC1 \times dC2)\cdot (C2-C1)}{||C2-C1||^3} \\
&=\frac{1}{4 \pi} \int_0^1 \int_0^1 \frac{(C1'(\xi) \times (C2'(\eta))\cdot (C2(\eta)-C1(\xi))}{||C2(\eta)-C1(\xi)||^3} d\xi d\eta
\end{align}
The curves $C1$ and $C2$ are both unit circles. One inside the $xy$ plane centered at $(0,0,0)$ and the other in the $xz$ plane, centered at $(1,0,0)$.
Here is a picture:

Maybe someone could give me a hint how to interpret the integral (which hopefully has a value that converges towards 1).
Thank you!