Constructs a new Line with the specified value
at X-coordinate zero and slope.
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ slope As Double, _ valueAtZero As Double _ ) |
| C# |
|---|
public Line ( double slope, double valueAtZero ) |
| C++ |
|---|
public: Line ( double slope, double valueAtZero ) |
Parameters
- slope (System.Double)
- The slope of the line.
- valueAtZero (System.Double)
- The Y-value of the line where it intersects the Y-axis.