Ejemplo n.º 1
0
        public void SetMin(QuadWord other)
        {
            if (other.X < X)
            {
                X = other.X;
            }

            if (other.Y < Y)
            {
                Y = other.Y;
            }

            if (other.Z < Z)
            {
                Z = other.Z;
            }

            if (other.W < W)
            {
                W = other.W;
            }
        }
Ejemplo n.º 2
0
        public void SetMax(QuadWord other)
        {
            if (other.X > X)
            {
                X = other.X;
            }

            if (other.Y > Y)
            {
                Y = other.Y;
            }

            if (other.Z > Z)
            {
                Z = other.Z;
            }

            if (other.W > W)
            {
                W = other.W;
            }
        }
Ejemplo n.º 3
0
        public void SetMax(QuadWord other)
        {
            if (other.X > X)
                X = other.X;

            if (other.Y > Y)
                Y = other.Y;

            if (other.Z > Z)
                Z = other.Z;

            if (other.W > W)
                W = other.W;
        }
Ejemplo n.º 4
0
        public void SetMin(QuadWord other)
        {
            if (other.X < X)
                X = other.X;

            if (other.Y < Y)
                Y = other.Y;

            if (other.Z < Z)
                Z = other.Z;

            if (other.W < W)
                W = other.W;
        }