Defines a linear function with two points.
The x-coordinate of the first point
The y-coordinate of the first point
The x-coordinate of the second point
The y-coordinate of the second point
const line = Chalkboard.real.linear(0, 1, 2, 5);const y = Chalkboard.real.val(line, 3); // Returns 7 Copy
const line = Chalkboard.real.linear(0, 1, 2, 5);const y = Chalkboard.real.val(line, 3); // Returns 7
Defines a linear function with two points.