UtilIncreaseMagnitude Method |
Returns the value with its magnitude increased by the specified
magnitude.
Namespace: Demo3D.CommonAssembly: Demo3D.Common (in Demo3D.Common.dll) Version: 19.01.00
Syntaxpublic static double IncreaseMagnitude(
double value,
double magnitude
)
Parameters
- value Double
- The value to increase in magnitude.
- magnitude Double
- The magnitude by which to increase the value.
Return Value
DoubleThe value increased in magnitude.
Remarks
If the value is negative then the returned value will be more negative. Conversely,
if the value is positive then the returned value will be more positive. The sign
of the specified magnitude is ignored.
See Also