195888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette/*
295888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * Copyright (C) 2015 The Android Open Source Project
395888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette *
495888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * Licensed under the Apache License, Version 2.0 (the "License");
595888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * you may not use this file except in compliance with the License.
695888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * You may obtain a copy of the License at
795888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette *
895888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette *      http://www.apache.org/licenses/LICENSE-2.0
995888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette *
1095888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * Unless required by applicable law or agreed to in writing, software
1195888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * distributed under the License is distributed on an "AS IS" BASIS,
1295888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1395888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * See the License for the specific language governing permissions and
1495888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette * limitations under the License.
1595888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette */
1695888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverettepackage com.android.internal.transition;
1795888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette
1895888c07e978f0d6af62ef96124acd228ac2ab13Alan Viveretteimport android.animation.TimeInterpolator;
1995888c07e978f0d6af62ef96124acd228ac2ab13Alan Viveretteimport android.view.animation.PathInterpolator;
2095888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette
2195888c07e978f0d6af62ef96124acd228ac2ab13Alan Viveretteclass TransitionConstants {
2295888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette    static final TimeInterpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0, 0, 0.2f, 1);
2395888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette    static final TimeInterpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0, 0.2f, 1);
2495888c07e978f0d6af62ef96124acd228ac2ab13Alan Viverette}
25