public static int GetCurvePoints(
int[] ,
LeadPoint[] ,
CurvePointsType
)
'Declaration
Public Shared Function GetCurvePoints( _
ByVal () As Integer, _
ByVal () As LeadPoint, _
ByVal As CurvePointsType _
) As Integer
'Usage
Dim curve() As Integer
Dim userPoints() As LeadPoint
Dim type As CurvePointsType
Dim value As Integer
value = EffectsUtilities.GetCurvePoints(curve, userPoints, type)
+ (unsigned int)getCurvePoints:(int*)curve
userPoints:(const LeadPoint*)userPoints
userPointsCount:(unsigned int)userPointsCount
type:(LTCurvePointsType)type
error:(NSError**)outError;
public static int getCurvePoints(
int[] curve,
LeadPoint[] userPoints,
CurvePointsType type
)
function Leadtools.ImageProcessing.Effects.EffectsUtilities.GetCurvePoints(
curve ,
userPoints ,
type
)
Parameters
- curve
- Array of integers to be filled by this method. To get the real value of the array elements, each of the values must be divided by 1000.
- userPoints
- Array of LeadPoint structures that contain the points on the curve used to determine the values of curve array. The minimum x coordinate value is 0.
- type
- Flag that indicates the method to be used to update the curve array.
Return Value
return the number of entries in curve array that were actually updated by this method.