
Other changes in this patch: - Make the 'flutter' tool say "Updating flutter tool..." when it calls pub get, to avoid confusion about what the pub get output is about. - Make the bash flutter tool call pub get when the revision has changed. (This was already happening on Windows.) - Fix a raft of bugs found by the analyzer. - Fix some style nits in various bits of code that happened to be near things the analyzer noticed. - Remove the logic in "flutter test" that would run "pub get", since upon further reflexion it was determined it didn't work anyway. We'll probably have to add better diagnostics here and say to run the updater script. - Remove the native velocity tracker script, since it was testing code that has since been removed. Notes on ignored warnings: - We ignore warnings in any packages that are not in the Flutter repo or in the author's current directory. - We ignore various irrelevant Strong Mode warnings. We still enable strong mode because even though it's not really relevant to our needs, it does (more or less accidentally) catch a few things that are helpful to us. - We allow CONSTANTS_LIKE_THIS, since we get some of those from other platforms that we are copying for sanity and consistency. - We allow one-member abstract classes since we have a number of them where it's perfectly reasonable. - We unfortunately still ignore warnings in mojom.dart autogenerated files. We should really fix those but that's a separate patch. - We verify the actual source file when we see the 'Name non-constant identifiers using lowerCamelCase.' lint, to allow one-letter variables that use capital letters (e.g. for physics expressions) and to allow multiple-underscore variable names. - We ignore all errors on lines that contain the following magic incantation and a "#" character: // analyzer doesn't like constructor tear-offs - For all remaining errors, if the line contains a comment of the form // analyzer says "..." ...then we ignore any errors that have that "..." string in them.
85 lines
2.8 KiB
Dart
85 lines
2.8 KiB
Dart
// Copyright (c) 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
part of newton;
|
|
|
|
class SpringDescription {
|
|
/// The mass of the spring (m)
|
|
final double mass;
|
|
|
|
/// The spring constant (k)
|
|
final double springConstant;
|
|
|
|
/// The damping coefficient.
|
|
/// Note: Not to be confused with the damping ratio. Use the separate
|
|
/// constructor provided for this purpose
|
|
final double damping;
|
|
|
|
SpringDescription(
|
|
{ this.mass, this.springConstant, this.damping }
|
|
) {
|
|
assert(mass != null);
|
|
assert(springConstant != null);
|
|
assert(damping != null);
|
|
}
|
|
|
|
/// Create a spring given the mass, spring constant and the damping ratio. The
|
|
/// damping ratio is especially useful trying to determing the type of spring
|
|
/// to create. A ratio of 1.0 creates a critically damped spring, > 1.0
|
|
/// creates an overdamped spring and < 1.0 an underdamped one.
|
|
SpringDescription.withDampingRatio(
|
|
{double mass, double springConstant, double ratio: 1.0})
|
|
: mass = mass,
|
|
springConstant = springConstant,
|
|
damping = ratio * 2.0 * math.sqrt(mass * springConstant);
|
|
}
|
|
|
|
enum SpringType { unknown, criticallyDamped, underDamped, overDamped, }
|
|
|
|
/// Creates a spring simulation. Depending on the spring description, a
|
|
/// critically, under or overdamped spring will be created.
|
|
class SpringSimulation extends Simulation {
|
|
final double _endPosition;
|
|
|
|
final _SpringSolution _solution;
|
|
|
|
/// A spring description with the provided spring description, start distance,
|
|
/// end distance and velocity.
|
|
SpringSimulation(
|
|
SpringDescription desc, double start, double end, double velocity)
|
|
: this._endPosition = end,
|
|
_solution = new _SpringSolution(desc, start - end, velocity);
|
|
|
|
SpringType get type => _solution.type;
|
|
|
|
double x(double time) => _endPosition + _solution.x(time);
|
|
|
|
double dx(double time) => _solution.dx(time);
|
|
|
|
@override
|
|
bool isDone(double time) =>
|
|
_nearEqual(x(time), _endPosition, this.tolerance.distance) &&
|
|
_nearZero(dx(time), this.tolerance.velocity);
|
|
}
|
|
|
|
/// A SpringSimulation where the value of x() is guaranteed to have exactly the
|
|
/// end value when the simulation isDone().
|
|
class ScrollSpringSimulation extends SpringSimulation {
|
|
ScrollSpringSimulation(SpringDescription desc, double start, double end, double velocity)
|
|
: super(desc, start, end, velocity);
|
|
|
|
bool _isDone(double position, double velocity) {
|
|
return _nearEqual(position, _endPosition, tolerance.distance) && _nearZero(velocity, tolerance.velocity);
|
|
}
|
|
|
|
@override
|
|
double x(double time) {
|
|
double xAtTime = super.x(time);
|
|
return _isDone(xAtTime, dx(time)) ? _endPosition : xAtTime;
|
|
}
|
|
|
|
@override
|
|
bool isDone(double time) => _isDone(x(time), dx(time));
|
|
}
|