SpringType enum

The kind of spring solution that the SpringSimulation is using to simulate the spring.

See SpringSimulation.type.

Constants

criticallyDamped → const SpringType

A spring that does not bounce and returns to its rest position in the shortest possible time.

const SpringType(0)
overDamped → const SpringType

A spring that does not bounce but takes longer to return to its rest position than a criticallyDamped one.

const SpringType(2)
underDamped → const SpringType

A spring that bounces.

const SpringType(1)
values → const List<SpringType>

A constant List of the values in this enum, in order of their declaration.

const List<SpringType>

Properties

index int

The integer index of this enum.

final
hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

toString() String
Returns a string representation of this object.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited

Operators

operator ==(dynamic other) bool
The equality operator. [...]
inherited