AdjArray
Adjust intensity of the array
Syntax: AdjArray(arr[],pint,sindex=0,count=sizeof arr,size=sizeof arr)
arr
array to be adjustedpint
percentage of new intensity. 0 means no changesindex
start index in arraycount
number of cells to adjust in arraysize
size of array
Example:
AdjArray(arr,-50)
, decrease intensity ofarr
to 50 percentAdjArray(arr,50,20,2)
, decrease intensity ofarr[20]
andarr[21]
to 50 percent
Last updated
Was this helpful?