Curve.Compose Method (Curve, Curve, Curve)

Composes two curves (curve1 ∘ curve2) and stores the result in a new or existing curve.

Namespace: Lumia.Imaging.Adjustments
Assembly: Lumia.Imaging (in Lumia.Imaging.dll) Version: 255.255.255.255

Syntax

public static Curve Compose(
    Curve curve1,
    Curve curve2,
    Curve resultCurve
)
'Declaration
Public Shared Function Compose ( 
    curve1 As Curve,
    curve2 As Curve,
    resultCurve As Curve
) As Curve
public:
static Curve^ Compose(
    [InAttribute] Curve^ curve1, 
    [InAttribute] Curve^ curve2, 
    [InAttribute] Curve^ resultCurve
)
Lumia.Imaging.Adjustments.Curve.Compose = function(curve1, curve2, resultCurve);

Parameters

  • resultCurve
    Type: Lumia.Imaging.Adjustments.Curve
    Optional. If a curve is passed, the content is overwritten with the result of the operation, keeping the previously set interpolation mode. If null is passed, a new curve is created with the default interpolation mode.

Return Value

Type: Curve
The resulting curve, where result(x) = curve1(curve2(x)).

Version Information

Lumia Imaging SDK

Supported in: 3.0, 2.0

See Also

Curve Class

Curve.Curve Members

Compose Overload

Lumia.Imaging.Adjustments Namespace