InterpolationNode class final

A point in the cartesian coordinate system used by Interpolation types to represent interpolation nodes. This class simply represents the x and y coordinates of a point on a cartesian plane.

Constructors

InterpolationNode({required double x, required double y})
Creates an InterpolationNode object.
const

Properties

hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
x double
The x coordinate.
final
y double
The y coordinate.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override
toStringAsFixed(int fractionDigits) String
Prints the x and y values of this InterpolationNode instance with fractionDigits decimal digits. The output produced by this method is the same that would result in calling toStringAsFixed on a double. For example:

Operators

operator ==(Object other) bool
The equality operator.
override