示例#1
0
        public void CompressTest()
        {
            ColorRGB96 actual = new ColorRGB96(2.0f, 1.0f, 0.5f);
            ColorRGB96 expected = new ColorRGB96(1.0f, 0.5f, 0.25f);

            actual.Compress();

            Assert.AreEqual(expected, actual);
        }
示例#2
0
        public void GetCompressedTest()
        {
            ColorRGB96 input = new ColorRGB96(2.0f, 1.0f, 0.5f);
            ColorRGB96 expected = new ColorRGB96(1.0f, 0.5f, 0.25f);

            ColorRGB96 actual = input.GetCompressed();

            Assert.AreEqual(expected, actual);
        }
示例#3
0
        public void ClampTest()
        {
            ColorRGB96 actual = new ColorRGB96(2.0f, -3.0f, 0.5f);
            ColorRGB96 expected = new ColorRGB96(1.0f, 0.0f, 0.5f);

            actual.Clamp();

            Assert.AreEqual(expected, actual);
        }
示例#4
0
        public void GetCompressedShouldEqualCompress()
        {
            ColorRGB96 input = new ColorRGB96(1.5f, 0.4f, -51.5f);

            ColorRGB96 compress = input.GetCompressed();
            input.Compress();

            bool expected = true;
            bool actual = compress == input;

            Assert.AreEqual(expected, actual);
        }
示例#5
0
        public void GetClampedShouldEqualClamp()
        {
            ColorRGB96 input = new ColorRGB96(1.5f, 0.4f, -51.5f);

            ColorRGB96 clamp = input.GetClamped();
            input.Clamp();

            bool expected = true;
            bool actual = clamp == input;

            Assert.AreEqual(expected, actual);
        }
示例#6
0
 public bool Equals(ColorRGB96 other)
 {
     return(this.Red == other.Red && this.Green == other.Green && this.Blue == other.Blue);
 }
示例#7
0
 public bool Equals(ColorRGB96 other)
 {
     return this.Red == other.Red && this.Green == other.Green && this.Blue == other.Blue;
 }