UtilQuadratic Constructor |
Construct the quadratic equation "a x^2 + b x + c = 0".
Namespace:
Demo3D.Common
Assembly:
Demo3D.Common (in Demo3D.Common.dll) Version: 15.0.2.11458
Syntaxpublic Quadratic(
double a,
double b,
double c
)
Parameters
- a
- Type: SystemDouble
Coefficient of the x^2 component. - b
- Type: SystemDouble
Coefficient of the x component. - c
- Type: SystemDouble
Constant component.
See Also