| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 RefPtrWillBeRawPtr<AnimatableDouble> to20 = AnimatableDouble::create(20); | 62 RefPtrWillBeRawPtr<AnimatableDouble> to20 = AnimatableDouble::create(20); |
| 63 EXPECT_EQ(5, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), t
o20.get(), -0.5).get())->toDouble()); | 63 EXPECT_EQ(5, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), t
o20.get(), -0.5).get())->toDouble()); |
| 64 EXPECT_EQ(10, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0).get())->toDouble()); | 64 EXPECT_EQ(10, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0).get())->toDouble()); |
| 65 EXPECT_EQ(14, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.4).get())->toDouble()); | 65 EXPECT_EQ(14, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.4).get())->toDouble()); |
| 66 EXPECT_EQ(15, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.5).get())->toDouble()); | 66 EXPECT_EQ(15, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.5).get())->toDouble()); |
| 67 EXPECT_EQ(16, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.6).get())->toDouble()); | 67 EXPECT_EQ(16, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.6).get())->toDouble()); |
| 68 EXPECT_EQ(20, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 1).get())->toDouble()); | 68 EXPECT_EQ(20, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 1).get())->toDouble()); |
| 69 EXPECT_EQ(25, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 1.5).get())->toDouble()); | 69 EXPECT_EQ(25, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 1.5).get())->toDouble()); |
| 70 } | 70 } |
| 71 | 71 |
| 72 TEST(AnimationAnimatableDoubleTest, Distance) | |
| 73 { | |
| 74 RefPtrWillBeRawPtr<AnimatableDouble> first = AnimatableDouble::create(-1.5); | |
| 75 RefPtrWillBeRawPtr<AnimatableDouble> second = AnimatableDouble::create(2.25)
; | |
| 76 RefPtrWillBeRawPtr<AnimatableDouble> third = AnimatableDouble::create(3); | |
| 77 | |
| 78 EXPECT_DOUBLE_EQ(3.75, AnimatableValue::distance(first.get(), second.get()))
; | |
| 79 EXPECT_DOUBLE_EQ(0.75, AnimatableValue::distance(second.get(), third.get()))
; | |
| 80 EXPECT_DOUBLE_EQ(4.5, AnimatableValue::distance(third.get(), first.get())); | |
| 81 } | 72 } |
| 82 | |
| 83 } | |
| OLD | NEW |