Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
3825c037
Commit
3825c037
authored
Jan 21, 2016
by
Adam Barth
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1320 from abarth/animation_cleanup
Move ClampedSimulation into newton
parents
cdf7ad4d
87ab798d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
animation.dart
packages/flutter/lib/animation.dart
+0
-1
newton.dart
packages/newton/lib/newton.dart
+2
-1
clamped_simulation.dart
packages/newton/lib/src/clamped_simulation.dart
+2
-2
No files found.
packages/flutter/lib/animation.dart
View file @
3825c037
...
@@ -10,7 +10,6 @@ library animation;
...
@@ -10,7 +10,6 @@ library animation;
export
'src/animation/animation.dart'
;
export
'src/animation/animation.dart'
;
export
'src/animation/animation_controller.dart'
;
export
'src/animation/animation_controller.dart'
;
export
'src/animation/animations.dart'
;
export
'src/animation/animations.dart'
;
export
'src/animation/clamped_simulation.dart'
;
export
'src/animation/curves.dart'
;
export
'src/animation/curves.dart'
;
export
'src/animation/forces.dart'
;
export
'src/animation/forces.dart'
;
export
'src/animation/listener_helpers.dart'
;
export
'src/animation/listener_helpers.dart'
;
...
...
packages/newton/lib/newton.dart
View file @
3825c037
// Copyright
(c) 2015
The Chromium Authors. All rights reserved.
// Copyright
2016
The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
...
@@ -12,6 +12,7 @@ part 'src/simulation_group.dart';
...
@@ -12,6 +12,7 @@ part 'src/simulation_group.dart';
part
'src/tolerance.dart'
;
part
'src/tolerance.dart'
;
part
'src/utils.dart'
;
part
'src/utils.dart'
;
part
'src/clamped_simulation.dart'
;
part
'src/friction_simulation.dart'
;
part
'src/friction_simulation.dart'
;
part
'src/gravity_simulation.dart'
;
part
'src/gravity_simulation.dart'
;
part
'src/scroll_simulation.dart'
;
part
'src/scroll_simulation.dart'
;
...
...
packages/
flutter/lib/src/animation
/clamped_simulation.dart
→
packages/
newton/lib/src
/clamped_simulation.dart
View file @
3825c037
// Copyright 201
5
The Chromium Authors. All rights reserved.
// Copyright 201
6
The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'package:newton/newton.dart'
;
part of
newton
;
class
ClampedSimulation
extends
Simulation
{
class
ClampedSimulation
extends
Simulation
{
ClampedSimulation
(
this
.
simulation
,
{
ClampedSimulation
(
this
.
simulation
,
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment