Esempio n. 1
0
	public static unsafe int test_0_vector2l_unpack_low () {
		Vector2l a = new Vector2l (1, 6);
		Vector2l b = new Vector2l (3, 4);

		Vector2l c = a.UnpackLow (b);
	
		if (c.X != 1)
			return 1;
		if (c.Y != 3)
			return 2;
		return 0;
	}