Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: cc/timing_function_unittest.cc

Issue 11359077: cc: Replace the WebCore::UnitBezier class with the SkUnitCubicInterp() method from Skia. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« cc/timing_function.cc ('K') | « cc/timing_function.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "config.h"
6
7 #include "cc/timing_function.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 using namespace cc;
11
12 namespace {
13
14 TEST(TimingFunctionTest, CubicBezierTimingFunction) {
15 scoped_ptr<CubicBezierTimingFunction> function = CubicBezierTimingFunction::cr eate(0.25, 0, 0.75, 1);
16
17 double epsilon = 0.00015;
18
19 EXPECT_NEAR(function->getValue(0), 0, epsilon);
20 EXPECT_NEAR(function->getValue(0.05), 0.01136, epsilon);
21 EXPECT_NEAR(function->getValue(0.1), 0.03978, epsilon);
22 EXPECT_NEAR(function->getValue(0.15), 0.079780, epsilon);
23 EXPECT_NEAR(function->getValue(0.2), 0.12803, epsilon);
24 EXPECT_NEAR(function->getValue(0.25), 0.18235, epsilon);
25 EXPECT_NEAR(function->getValue(0.3), 0.24115, epsilon);
26 EXPECT_NEAR(function->getValue(0.35), 0.30323, epsilon);
27 EXPECT_NEAR(function->getValue(0.4), 0.36761, epsilon);
28 EXPECT_NEAR(function->getValue(0.45), 0.43345, epsilon);
29 EXPECT_NEAR(function->getValue(0.5), 0.5, epsilon);
30 EXPECT_NEAR(function->getValue(0.6), 0.63238, epsilon);
31 EXPECT_NEAR(function->getValue(0.65), 0.69676, epsilon);
32 EXPECT_NEAR(function->getValue(0.7), 0.75884, epsilon);
33 EXPECT_NEAR(function->getValue(0.75), 0.81764, epsilon);
34 EXPECT_NEAR(function->getValue(0.8), 0.87196, epsilon);
35 EXPECT_NEAR(function->getValue(0.85), 0.92021, epsilon);
36 EXPECT_NEAR(function->getValue(0.9), 0.96021, epsilon);
37 EXPECT_NEAR(function->getValue(0.95), 0.98863, epsilon);
38 EXPECT_NEAR(function->getValue(1), 1, epsilon);
39 }
40
41 } // anonymous namespace
OLDNEW
« cc/timing_function.cc ('K') | « cc/timing_function.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698