PointDifferentiator Constructor (Point, Double, Int32) |
Initializes a new instance.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public PointDifferentiator(
Point differentiatedPoint,
double increment,
int derivativeToCompute
)
Public Sub New (
differentiatedPoint As Point,
increment As Double,
derivativeToCompute As Integer
)
public:
PointDifferentiator(
Point^ differentiatedPoint,
double increment,
int derivativeToCompute
)
new :
differentiatedPoint : Point *
increment : float *
derivativeToCompute : int -> PointDifferentiator
Parameters
- differentiatedPoint
- Type: AGI.Foundation.GeometryPoint
The point to wrap and finite difference. - increment
- Type: SystemDouble
The increment, in seconds, used to compute the finite difference. - derivativeToCompute
- Type: SystemInt32
The derivative to compute, or 0 to specify that the next unavailable derivative should
be computed. See the documentation for DerivativeToCompute for more
information.
See Also