void SwapFloat(float *x, float *y) { float temp; temp = *x; *x = *y; *y = temp; }