- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
private float getFirst(float a, float b)
{
return a;
}
// вызывается так:
// Swap values:
float x = fromXValue;
float y = fromYValue;
toXValue = x;
toYValue = y;
fromXValue = getFirst(toXValue, fromXValue);
fromYValue = getFirst(toYValue, fromYValue);