comment { Name: kcc3.ucl Version: 3.26 Description: Ultra Fractal 3.0 coloring formulas. Formulas: Carlson Orbit Traps - kcc-CarlsonOrbitTraps Plane Curve Traps - kcc-PlaneCurveTraps Polygon Traps - kcc-PolygonTraps Spirograph - kcc-Spirograph Acknowledgements: kcc-CarlsonOrbitTraps is a UF3 implementation of Paul Carlson's orbit trap coloring algorithms posted to the Fractint and Ultra Fractal mailings lists. The traps have been enhanced to allow additional coloring modes and texturing options. Gradient presets used in the formulas have been taken from parameter files posted to the mailing lists. They are from Ultra Fractal parameters or Fractint PAR and MAP files. Many of the new presets are courtesy of Toby Marshall. Many of the traps used in kcc-PlaneCurveTraps are courtesy of Samuel Monnier's "Thin Orbit Traps" or were found at Mathworld, at http://mathworld.wolfram.com/topics/GeneralPlaneCurves.html. Addition curves can be found at http://www-groups.dcs.st-and.ac.uk/~history/Curves/Curves.html. The additional curve types, and curve modifier functions available in the Advanced Mode of Plane Curve Traps are courtesy of Toby Marshall. The kcc-PolygonTraps code is adapted from code by Samuel Monnier. The coloring modes are used courtesy of Mark Townsend. The fBm code is used courtesy of Damien Jones and Mark Townsend. kcc-Spirograph is an extension of the original UF2 version done at my request by Samuel Monnier. He graciously granted me permission to modify it and publish it. It wouldn't exist without his original coding. Jos Leys also contributed significantly to it by suggesting many performance enhancements and an additional coloring mode. The UCL is designed to work similar to the applet found at http://www.wordsmith.org/anu/java/spirograph.html. Author: Ken Childress Last Modification: 10 May 2006 History: Version 3.26 - Fixed error in Carlson Orbit Traps Harlequin where the background color was not being correctly set. Version 3.25 - Added Trap Mode parameter to the traps formulas to select trapping either the first iteration or the last iteration. Selecting last iteration will put larger trap shapes behind smaller ones. Version 3.24 - Added Angle Function 2, Balls, Blobs, Curls, and Two Ellipses traps to Carlson Orbit Traps Fixed error preventing @skip parameter to work in Plane Curve Traps and Polygon Traps. Version 3.23 - Fixed error in Carlson Orbit Traps Angle Function 1 trap Version 3.22 - Fixed error in Carlson Orbit Traps Spheres trap Version 3.21 - Fixed error when precomputing points on the spirograph Version 3.20 - Added kcc-Spirograph Version 3.10 - Added ability to modify color presets Added many additional presets Added ability to define custom ranges up to 24 ranges Added additional curve types in Plane Curve Traps Added addition curve modifier functions in Plane Curve Traps Added addition trap types in Carlson Orbit Traps Version 3.03 - Removed Some Color Presets Version 3.02 - UF3 Official Release Version 3.01 - Beta Test Release Version 3.00 - Initial Release } kcc-Spirograph (BOTH) { ; Original version by Samuel Monnier, 7.4.02 ; ; The original version has been modified to produce similar ; spirographs to those found at ; ; http://www.wordsmith.org/anu/java/spirograph.html ; ; Additional speed up enhancements from Samuel's original include: ; - Arrays to precompute points ; - Conversion of point data from x & y float variables ; to complex variables ; - Determination of those points on the spirograph that are ; within a specified radius of the point being calculated ; - Determination of those points that fall inside or outside ; the drawing area so they can be skipped ; ; Additional color modes and color presets added. ; ; Ability to have the rolling circle roll inside the fixed circle added. ; ; The "Symmetrical Gradient" coloring mode, and several of the ; speed enhancements were contributed by Jos Leys. ; ; For animations creating with this UCL, please see the examples ; done by Jos Leys at http://www.josleys.com/animationsindex4.htm. ; global: ; Color Map array for color mode "Custom". color colorMap [24, 2] int ranges = 8 int offset = 0 ; Compute the number of points in the array. int numPoints = round(2 * #pi * @revolutions / @dt) + 1 ; Array to save the points of the spirograph. complex p[@numIters,round(2 * #pi * @revolutions / @dt) + 3] ;Jos ; Array to save the delta t values. float dt[@numIters,round(2 * #pi * @revolutions / @dt) + 3] float t = 0.0 int i = 0 int j = 0 float radiusSum = 0.0 float expr = 0.0 float penOffset = @penOffset float magStp = @magStep float omagStp = 1.0 $define DEBUG if (@outside) radiusSum = @fixedRadius + @rollingRadius else radiusSum = @fixedRadius - @rollingRadius endif ; Calculate all the points. i = 0 while i < @numIters t = 0 j = 0 while j < numPoints + 1 t = t + @dt expr = (radiusSum * t) / @rollingRadius if @outside ; Roll the rolling circle on the outside of the fixed circle. p[i,j] = ((radiusSum)*cos(t) - (penOffset)*cos(expr)) + \ ((radiusSum)*sin(t) - (penOffset)*sin(expr)) * 1i elseif !@outside && @counter ;&& @rollingRadius > @fixedRadius ; Rotate the pen in the opposite direction of the rolling circle. p[i,j] = ((radiusSum)*cos(t) - (penOffset)*cos(expr)) + \ ((radiusSum)*sin(t) - (penOffset)*sin(expr)) * 1i ; Version 301 has an error in the statement. The '@' should ; not be present before penOffset. This test is to retain the ; behavior for any UPRs created with this version. if (@version == 301) p[i,j] = ((radiusSum)*cos(t) - (@penOffset)*cos(expr)) + \ ((radiusSum)*sin(t) - (@penOffset)*sin(expr)) * 1i endif elseif !@outside ; Roll the rolling circle on the inside of the fixed circle. p[i,j] = ((radiusSum)*cos(t) - (penOffset)*cos(expr)) + \ ((radiusSum)*sin(t) + (penOffset)*sin(expr)) * 1i endif dt[i,j] = t j = j + 1 endwhile ; Take changes in pen offset into account. if @magType == "Linear" magStp = (1 + (@magStep - 1) * i) / (1 + (@magStep - 1) * (i - 1)) endif omagStp = omagStp * magStp if @penOffsetVarType == "Step" penOffset = penOffset + @penOffsetVar elseif @penOffsetVarType == "Magnification-Linked" penOffset = penOffset / magStp endif i = i + 1 endwhile if (@colorMode == "Custom") ; Setup the colorMap array based on the Color Preset selected. if (@colorPreset == "Gradient") ; Use the gradient for the color ranges. ranges = @colorRanges offset = 0 elseif (@colorPreset == "Custom") ; User specified custom range. ; Initial values by Toby Marshall. colorMap [0,0] = @colorMax1, colorMap [0,1] = @colorMin1 colorMap [1,0] = @colorMax2, colorMap [1,1] = @colorMin2 colorMap [2,0] = @colorMax3, colorMap [2,1] = @colorMin3 colorMap [3,0] = @colorMax4, colorMap [3,1] = @colorMin4 colorMap [4,0] = @colorMax5, colorMap [4,1] = @colorMin5 colorMap [5,0] = @colorMax6, colorMap [5,1] = @colorMin6 colorMap [6,0] = @colorMax7, colorMap [6,1] = @colorMin7 colorMap [7,0] = @colorMax8, colorMap [7,1] = @colorMin8 colorMap [8,0] = @customMax9, colorMap [8,1] = @customMin9 colorMap [9,0] = @customMax10, colorMap [9,1] = @customMin10 colorMap [10,0] = @customMax11, colorMap [10,1] = @customMin11 colorMap [11,0] = @customMax12, colorMap [11,1] = @customMin12 colorMap [12,0] = @customMax13, colorMap [12,1] = @customMin13 colorMap [13,0] = @customMax14, colorMap [13,1] = @customMin14 colorMap [14,0] = @customMax15, colorMap [14,1] = @customMin15 colorMap [15,0] = @customMax16, colorMap [15,1] = @customMin16 colorMap [16,0] = @customMax17, colorMap [16,1] = @customMin17 colorMap [17,0] = @customMax18, colorMap [17,1] = @customMin18 colorMap [18,0] = @customMax19, colorMap [18,1] = @customMin19 colorMap [19,0] = @customMax20, colorMap [19,1] = @customMin20 colorMap [20,0] = @customMax21, colorMap [20,1] = @customMin21 colorMap [21,0] = @customMax22, colorMap [21,1] = @customMin22 colorMap [22,0] = @customMax23, colorMap [22,1] = @customMin23 colorMap [23,0] = @customMax24, colorMap [23,1] = @customMin24 ranges = @colorRanges offset = @colorOffset elseif (@colorPreset == "Generate") ; Compute the color ranges using the gradient. ranges = 0 offset = @colorOffset while ranges < @numRanges color gradientColor = gradient(ranges/@numRanges) colorMap [ranges,0] = hsl(hue(gradientColor), sat(gradientColor), @luminanceUpper) colorMap [ranges,1] = hsl(hue(gradientColor), sat(gradientColor), @luminanceLower) ranges = ranges + 1 endwhile elseif (@colorPreset == "Default") ; colorMap [0,0] = @defaultMax1, colorMap [0,1] = @defaultMin1 colorMap [1,0] = @defaultMax2, colorMap [1,1] = @defaultMin2 colorMap [2,0] = @defaultMax3, colorMap [2,1] = @defaultMin3 colorMap [3,0] = @defaultMax4, colorMap [3,1] = @defaultMin4 colorMap [4,0] = @defaultMax5, colorMap [4,1] = @defaultMin5 colorMap [5,0] = @defaultMax6, colorMap [5,1] = @defaultMin6 colorMap [6,0] = @defaultMax7, colorMap [6,1] = @defaultMin7 colorMap [7,0] = @defaultMax8, colorMap [7,1] = @defaultMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Default 12") ; Created by Toby Marshall. colorMap [0,0] = @default12Max1, colorMap [0,1] = @default12Min1 colorMap [1,0] = @default12Max2, colorMap [1,1] = @default12Min2 colorMap [2,0] = @default12Max3, colorMap [2,1] = @default12Min3 colorMap [3,0] = @default12Max4, colorMap [3,1] = @default12Min4 colorMap [4,0] = @default12Max5, colorMap [4,1] = @default12Min5 colorMap [5,0] = @default12Max6, colorMap [5,1] = @default12Min6 colorMap [6,0] = @default12Max7, colorMap [6,1] = @default12Min7 colorMap [7,0] = @default12Max8, colorMap [7,1] = @default12Min8 colorMap [8,0] = @default12Max9, colorMap [8,1] = @default12Min9 colorMap [9,0] = @default12Max10, colorMap [9,1] = @default12Min10 colorMap [10,0] = @default12Max11, colorMap [10,1] = @default12Min11 colorMap [11,0] = @default12Max12, colorMap [11,1] = @default12Min12 ranges = 12 offset = @colorOffset elseif (@colorPreset == "Default 16") ; Created by Toby Marshall. colorMap [0,0] = @default16Max1, colorMap [0,1] = @default16Min1 colorMap [1,0] = @default16Max2, colorMap [1,1] = @default16Min2 colorMap [2,0] = @default16Max3, colorMap [2,1] = @default16Min3 colorMap [3,0] = @default16Max4, colorMap [3,1] = @default16Min4 colorMap [4,0] = @default16Max5, colorMap [4,1] = @default16Min5 colorMap [5,0] = @default16Max6, colorMap [5,1] = @default16Min6 colorMap [6,0] = @default16Max7, colorMap [6,1] = @default16Min7 colorMap [7,0] = @default16Max8, colorMap [7,1] = @default16Min8 colorMap [8,0] = @default16Max9, colorMap [8,1] = @default16Min9 colorMap [9,0] = @default16Max10, colorMap [9,1] = @default16Min10 colorMap [10,0] = @default16Max11, colorMap [10,1] = @default16Min11 colorMap [11,0] = @default16Max12, colorMap [11,1] = @default16Min12 colorMap [12,0] = @default16Max13, colorMap [12,1] = @default16Min13 colorMap [13,0] = @default16Max14, colorMap [13,1] = @default16Min14 colorMap [14,0] = @default16Max15, colorMap [14,1] = @default16Min15 colorMap [15,0] = @default16Max16, colorMap [15,1] = @default16Min16 ranges = 16 offset = @colorOffset elseif (@colorPreset == "Default 24") ; Created by Toby Marshall. colorMap [0,0] = @default24Max1, colorMap [0,1] = @default24Min1 colorMap [1,0] = @default24Max2, colorMap [1,1] = @default24Min2 colorMap [2,0] = @default24Max3, colorMap [2,1] = @default24Min3 colorMap [3,0] = @default24Max4, colorMap [3,1] = @default24Min4 colorMap [4,0] = @default24Max5, colorMap [4,1] = @default24Min5 colorMap [5,0] = @default24Max6, colorMap [5,1] = @default24Min6 colorMap [6,0] = @default24Max7, colorMap [6,1] = @default24Min7 colorMap [7,0] = @default24Max8, colorMap [7,1] = @default24Min8 colorMap [8,0] = @default24Max9, colorMap [8,1] = @default24Min9 colorMap [9,0] = @default24Max10, colorMap [9,1] = @default24Min10 colorMap [10,0] = @default24Max11, colorMap [10,1] = @default24Min11 colorMap [11,0] = @default24Max12, colorMap [11,1] = @default24Min12 colorMap [12,0] = @default24Max13, colorMap [12,1] = @default24Min13 colorMap [13,0] = @default24Max14, colorMap [13,1] = @default24Min14 colorMap [14,0] = @default24Max15, colorMap [14,1] = @default24Min15 colorMap [15,0] = @default24Max16, colorMap [15,1] = @default24Min16 colorMap [16,0] = @default24Max17, colorMap [16,1] = @default24Min17 colorMap [17,0] = @default24Max18, colorMap [17,1] = @default24Min18 colorMap [18,0] = @default24Max19, colorMap [18,1] = @default24Min19 colorMap [19,0] = @default24Max20, colorMap [19,1] = @default24Min20 colorMap [20,0] = @default24Max21, colorMap [20,1] = @default24Min21 colorMap [21,0] = @default24Max22, colorMap [21,1] = @default24Min22 colorMap [22,0] = @default24Max23, colorMap [22,1] = @default24Min23 colorMap [23,0] = @default24Max24, colorMap [23,1] = @default24Min24 ranges = 24 offset = @colorOffset elseif (@colorPreset == "Color Wheel 12") ; Created by Toby Marshall. colorMap [0,0] = @colorWheel12Max1, colorMap [0,1] = @colorWheel12Min1 colorMap [1,0] = @colorWheel12Max2, colorMap [1,1] = @colorWheel12Min2 colorMap [2,0] = @colorWheel12Max3, colorMap [2,1] = @colorWheel12Min3 colorMap [3,0] = @colorWheel12Max4, colorMap [3,1] = @colorWheel12Min4 colorMap [4,0] = @colorWheel12Max5, colorMap [4,1] = @colorWheel12Min5 colorMap [5,0] = @colorWheel12Max6, colorMap [5,1] = @colorWheel12Min6 colorMap [6,0] = @colorWheel12Max7, colorMap [6,1] = @colorWheel12Min7 colorMap [7,0] = @colorWheel12Max8, colorMap [7,1] = @colorWheel12Min8 colorMap [8,0] = @colorWheel12Max9, colorMap [8,1] = @colorWheel12Min9 colorMap [9,0] = @colorWheel12Max10, colorMap [9,1] = @colorWheel12Min10 colorMap [10,0] = @colorWheel12Max11, colorMap [10,1] = @colorWheel12Min11 colorMap [11,0] = @colorWheel12Max12, colorMap [11,1] = @colorWheel12Min12 ranges = 12 offset = @colorOffset elseif (@colorPreset == "Alhambra 8") ; Created by Toby Marshall. colorMap [0,0] = @alhambra8Max1, colorMap [0,1] = @alhambra8Min1 colorMap [1,0] = @alhambra8Max2, colorMap [1,1] = @alhambra8Min2 colorMap [2,0] = @alhambra8Max3, colorMap [2,1] = @alhambra8Min3 colorMap [3,0] = @alhambra8Max4, colorMap [3,1] = @alhambra8Min4 colorMap [4,0] = @alhambra8Max5, colorMap [4,1] = @alhambra8Min5 colorMap [5,0] = @alhambra8Max6, colorMap [5,1] = @alhambra8Min6 colorMap [6,0] = @alhambra8Max7, colorMap [6,1] = @alhambra8Min7 colorMap [7,0] = @alhambra8Max8, colorMap [7,1] = @alhambra8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Belvedere 8") ; Created by Toby Marshall. colorMap [0,0] = @belvedere8Max1, colorMap [0,1] = @belvedere8Min1 colorMap [1,0] = @belvedere8Max2, colorMap [1,1] = @belvedere8Min2 colorMap [2,0] = @belvedere8Max3, colorMap [2,1] = @belvedere8Min3 colorMap [3,0] = @belvedere8Max4, colorMap [3,1] = @belvedere8Min4 colorMap [4,0] = @belvedere8Max5, colorMap [4,1] = @belvedere8Min5 colorMap [5,0] = @belvedere8Max6, colorMap [5,1] = @belvedere8Min6 colorMap [6,0] = @belvedere8Max7, colorMap [6,1] = @belvedere8Min7 colorMap [7,0] = @belvedere8Max8, colorMap [7,1] = @belvedere8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Bouquet 8") ; Created by Toby Marshall. colorMap [0,0] = @bouquet8Max1, colorMap [0,1] = @bouquet8Min1 colorMap [1,0] = @bouquet8Max2, colorMap [1,1] = @bouquet8Min2 colorMap [2,0] = @bouquet8Max3, colorMap [2,1] = @bouquet8Min3 colorMap [3,0] = @bouquet8Max4, colorMap [3,1] = @bouquet8Min4 colorMap [4,0] = @bouquet8Max5, colorMap [4,1] = @bouquet8Min5 colorMap [5,0] = @bouquet8Max6, colorMap [5,1] = @bouquet8Min6 colorMap [6,0] = @bouquet8Max7, colorMap [6,1] = @bouquet8Min7 colorMap [7,0] = @bouquet8Max8, colorMap [7,1] = @bouquet8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Color Switch 8") ; Created by Toby Marshall. colorMap [0,0] = @colorSwitch8Max1, colorMap [0,1] = @colorSwitch8Min1 colorMap [1,0] = @colorSwitch8Max2, colorMap [1,1] = @colorSwitch8Min2 colorMap [2,0] = @colorSwitch8Max3, colorMap [2,1] = @colorSwitch8Min3 colorMap [3,0] = @colorSwitch8Max4, colorMap [3,1] = @colorSwitch8Min4 colorMap [4,0] = @colorSwitch8Max5, colorMap [4,1] = @colorSwitch8Min5 colorMap [5,0] = @colorSwitch8Max6, colorMap [5,1] = @colorSwitch8Min6 colorMap [6,0] = @colorSwitch8Max7, colorMap [6,1] = @colorSwitch8Min7 colorMap [7,0] = @colorSwitch8Max8, colorMap [7,1] = @colorSwitch8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Evening Sky 8") ; Created by Toby Marshall. colorMap [0,0] = @eveningSky8Max1, colorMap [0,1] = @eveningSky8Min1 colorMap [1,0] = @eveningSky8Max2, colorMap [1,1] = @eveningSky8Min2 colorMap [2,0] = @eveningSky8Max3, colorMap [2,1] = @eveningSky8Min3 colorMap [3,0] = @eveningSky8Max4, colorMap [3,1] = @eveningSky8Min4 colorMap [4,0] = @eveningSky8Max5, colorMap [4,1] = @eveningSky8Min5 colorMap [5,0] = @eveningSky8Max6, colorMap [5,1] = @eveningSky8Min6 colorMap [6,0] = @eveningSky8Max7, colorMap [6,1] = @eveningSky8Min7 colorMap [7,0] = @eveningSky8Max8, colorMap [7,1] = @eveningSky8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fantasia 8") ; Created by Toby Marshall. colorMap [0,0] = @fantasia8Max1, colorMap [0,1] = @fantasia8Min1 colorMap [1,0] = @fantasia8Max2, colorMap [1,1] = @fantasia8Min2 colorMap [2,0] = @fantasia8Max3, colorMap [2,1] = @fantasia8Min3 colorMap [3,0] = @fantasia8Max4, colorMap [3,1] = @fantasia8Min4 colorMap [4,0] = @fantasia8Max5, colorMap [4,1] = @fantasia8Min5 colorMap [5,0] = @fantasia8Max6, colorMap [5,1] = @fantasia8Min6 colorMap [6,0] = @fantasia8Max7, colorMap [6,1] = @fantasia8Min7 colorMap [7,0] = @fantasia8Max8, colorMap [7,1] = @fantasia8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Flowering Orchard 8") ; Created by Toby Marshall. colorMap [0,0] = @floweringOrchard8Max1, colorMap [0,1] = @floweringOrchard8Min1 colorMap [1,0] = @floweringOrchard8Max2, colorMap [1,1] = @floweringOrchard8Min2 colorMap [2,0] = @floweringOrchard8Max3, colorMap [2,1] = @floweringOrchard8Min3 colorMap [3,0] = @floweringOrchard8Max4, colorMap [3,1] = @floweringOrchard8Min4 colorMap [4,0] = @floweringOrchard8Max5, colorMap [4,1] = @floweringOrchard8Min5 colorMap [5,0] = @floweringOrchard8Max6, colorMap [5,1] = @floweringOrchard8Min6 colorMap [6,0] = @floweringOrchard8Max7, colorMap [6,1] = @floweringOrchard8Min7 colorMap [7,0] = @floweringOrchard8Max8, colorMap [7,1] = @floweringOrchard8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Morning Sky 8") ; Created by Toby Marshall. colorMap [0,0] = @morningSky8Max1, colorMap [0,1] = @morningSky8Min1 colorMap [1,0] = @morningSky8Max2, colorMap [1,1] = @morningSky8Min2 colorMap [2,0] = @morningSky8Max3, colorMap [2,1] = @morningSky8Min3 colorMap [3,0] = @morningSky8Max4, colorMap [3,1] = @morningSky8Min4 colorMap [4,0] = @morningSky8Max5, colorMap [4,1] = @morningSky8Min5 colorMap [5,0] = @morningSky8Max6, colorMap [5,1] = @morningSky8Min6 colorMap [6,0] = @morningSky8Max7, colorMap [6,1] = @morningSky8Min7 colorMap [7,0] = @morningSky8Max8, colorMap [7,1] = @morningSky8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Pastel 8") ; colorMap [0,0] = @pastel8Max1, colorMap [0,1] = @pastel8Min1 colorMap [1,0] = @pastel8Max2, colorMap [1,1] = @pastel8Min2 colorMap [2,0] = @pastel8Max3, colorMap [2,1] = @pastel8Min3 colorMap [3,0] = @pastel8Max4, colorMap [3,1] = @pastel8Min4 colorMap [4,0] = @pastel8Max5, colorMap [4,1] = @pastel8Min5 colorMap [5,0] = @pastel8Max6, colorMap [5,1] = @pastel8Min6 colorMap [6,0] = @pastel8Max7, colorMap [6,1] = @pastel8Min7 colorMap [7,0] = @pastel8Max8, colorMap [7,1] = @pastel8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Pastel Rainbow 8") ; Created by Angela Wilczynski. colorMap [0,0] = @pastelRainbow8Max1, colorMap [0,1] = @pastelRainbow8Min1 colorMap [1,0] = @pastelRainbow8Max2, colorMap [1,1] = @pastelRainbow8Min2 colorMap [2,0] = @pastelRainbow8Max3, colorMap [2,1] = @pastelRainbow8Min3 colorMap [3,0] = @pastelRainbow8Max4, colorMap [3,1] = @pastelRainbow8Min4 colorMap [4,0] = @pastelRainbow8Max5, colorMap [4,1] = @pastelRainbow8Min5 colorMap [5,0] = @pastelRainbow8Max6, colorMap [5,1] = @pastelRainbow8Min6 colorMap [6,0] = @pastelRainbow8Max7, colorMap [6,1] = @pastelRainbow8Min7 colorMap [7,0] = @pastelRainbow8Max8, colorMap [7,1] = @pastelRainbow8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Showtime 8") ; Created by Toby Marshall. colorMap [0,0] = @showtime8Max1, colorMap [0,1] = @showtime8Min1 colorMap [1,0] = @showtime8Max2, colorMap [1,1] = @showtime8Min2 colorMap [2,0] = @showtime8Max3, colorMap [2,1] = @showtime8Min3 colorMap [3,0] = @showtime8Max4, colorMap [3,1] = @showtime8Min4 colorMap [4,0] = @showtime8Max5, colorMap [4,1] = @showtime8Min5 colorMap [5,0] = @showtime8Max6, colorMap [5,1] = @showtime8Min6 colorMap [6,0] = @showtime8Max7, colorMap [6,1] = @showtime8Min7 colorMap [7,0] = @showtime8Max8, colorMap [7,1] = @showtime8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Soleil 8") ; Created by Toby Marshall. colorMap [0,0] = @soleil8Max1, colorMap [0,1] = @soleil8Min1 colorMap [1,0] = @soleil8Max2, colorMap [1,1] = @soleil8Min2 colorMap [2,0] = @soleil8Max3, colorMap [2,1] = @soleil8Min3 colorMap [3,0] = @soleil8Max4, colorMap [3,1] = @soleil8Min4 colorMap [4,0] = @soleil8Max5, colorMap [4,1] = @soleil8Min5 colorMap [5,0] = @soleil8Max6, colorMap [5,1] = @soleil8Min6 colorMap [6,0] = @soleil8Max7, colorMap [6,1] = @soleil8Min7 colorMap [7,0] = @soleil8Max8, colorMap [7,1] = @soleil8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Chill 8") ; Created by Toby Marshall. colorMap [0,0] = @chillMax1, colorMap [0,1] = @chillMin1 colorMap [1,0] = @chillMax2, colorMap [1,1] = @chillMin2 colorMap [2,0] = @chillMax3, colorMap [2,1] = @chillMin3 colorMap [3,0] = @chillMax4, colorMap [3,1] = @chillMin4 colorMap [4,0] = @chillMax5, colorMap [4,1] = @chillMin5 colorMap [5,0] = @chillMax6, colorMap [5,1] = @chillMin6 colorMap [6,0] = @chillMax7, colorMap [6,1] = @chillMin7 colorMap [7,0] = @chillMax8, colorMap [7,1] = @chillMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Cloud Nine 8") ; Created by Toby Marshall. colorMap [0,0] = @cloudNineMax1, colorMap [0,1] = @cloudNineMin1 colorMap [1,0] = @cloudNineMax2, colorMap [1,1] = @cloudNineMin2 colorMap [2,0] = @cloudNineMax3, colorMap [2,1] = @cloudNineMin3 colorMap [3,0] = @cloudNineMax4, colorMap [3,1] = @cloudNineMin4 colorMap [4,0] = @cloudNineMax5, colorMap [4,1] = @cloudNineMin5 colorMap [5,0] = @cloudNineMax6, colorMap [5,1] = @cloudNineMin6 colorMap [6,0] = @cloudNineMax7, colorMap [6,1] = @cloudNineMin7 colorMap [7,0] = @cloudNineMax8, colorMap [7,1] = @cloudNineMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "La Terra 8") ; Created by Toby Marshall. colorMap [0,0] = @laTerraMax1, colorMap [0,1] = @laTerraMin1 colorMap [1,0] = @laTerraMax2, colorMap [1,1] = @laTerraMin2 colorMap [2,0] = @laTerraMax3, colorMap [2,1] = @laTerraMin3 colorMap [3,0] = @laTerraMax4, colorMap [3,1] = @laTerraMin4 colorMap [4,0] = @laTerraMax5, colorMap [4,1] = @laTerraMin5 colorMap [5,0] = @laTerraMax6, colorMap [5,1] = @laTerraMin6 colorMap [6,0] = @laTerraMax7, colorMap [6,1] = @laTerraMin7 colorMap [7,0] = @laTerraMax8, colorMap [7,1] = @laTerraMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Santa Fe 8") ; Created by Toby Marshall. colorMap [0,0] = @santaFe8Max1, colorMap [0,1] = @santaFe8Min1 colorMap [1,0] = @santaFe8Max2, colorMap [1,1] = @santaFe8Min2 colorMap [2,0] = @santaFe8Max3, colorMap [2,1] = @santaFe8Min3 colorMap [3,0] = @santaFe8Max4, colorMap [3,1] = @santaFe8Min4 colorMap [4,0] = @santaFe8Max5, colorMap [4,1] = @santaFe8Min5 colorMap [5,0] = @santaFe8Max6, colorMap [5,1] = @santaFe8Min6 colorMap [6,0] = @santaFe8Max7, colorMap [6,1] = @santaFe8Min7 colorMap [7,0] = @santaFe8Max8, colorMap [7,1] = @santaFe8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Spring 8") ; Created by Toby Marshall. colorMap [0,0] = @spring8Max1, colorMap [0,1] = @spring8Min1 colorMap [1,0] = @spring8Max2, colorMap [1,1] = @spring8Min2 colorMap [2,0] = @spring8Max3, colorMap [2,1] = @spring8Min3 colorMap [3,0] = @spring8Max4, colorMap [3,1] = @spring8Min4 colorMap [4,0] = @spring8Max5, colorMap [4,1] = @spring8Min5 colorMap [5,0] = @spring8Max6, colorMap [5,1] = @spring8Min6 colorMap [6,0] = @spring8Max7, colorMap [6,1] = @spring8Min7 colorMap [7,0] = @spring8Max8, colorMap [7,1] = @spring8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Summer 8") ; Created by Toby Marshall. colorMap [0,0] = @summer8Max1, colorMap [0,1] = @summer8Min1 colorMap [1,0] = @summer8Max2, colorMap [1,1] = @summer8Min2 colorMap [2,0] = @summer8Max3, colorMap [2,1] = @summer8Min3 colorMap [3,0] = @summer8Max4, colorMap [3,1] = @summer8Min4 colorMap [4,0] = @summer8Max5, colorMap [4,1] = @summer8Min5 colorMap [5,0] = @summer8Max6, colorMap [5,1] = @summer8Min6 colorMap [6,0] = @summer8Max7, colorMap [6,1] = @summer8Min7 colorMap [7,0] = @summer8Max8, colorMap [7,1] = @summer8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fall 8") ; Created by Toby Marshall. colorMap [0,0] = @fall8Max1, colorMap [0,1] = @fall8Min1 colorMap [1,0] = @fall8Max2, colorMap [1,1] = @fall8Min2 colorMap [2,0] = @fall8Max3, colorMap [2,1] = @fall8Min3 colorMap [3,0] = @fall8Max4, colorMap [3,1] = @fall8Min4 colorMap [4,0] = @fall8Max5, colorMap [4,1] = @fall8Min5 colorMap [5,0] = @fall8Max6, colorMap [5,1] = @fall8Min6 colorMap [6,0] = @fall8Max7, colorMap [6,1] = @fall8Min7 colorMap [7,0] = @fall8Max8, colorMap [7,1] = @fall8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Winter 8") ; Created by Toby Marshall. colorMap [0,0] = @winter8Max1, colorMap [0,1] = @winter8Min1 colorMap [1,0] = @winter8Max2, colorMap [1,1] = @winter8Min2 colorMap [2,0] = @winter8Max3, colorMap [2,1] = @winter8Min3 colorMap [3,0] = @winter8Max4, colorMap [3,1] = @winter8Min4 colorMap [4,0] = @winter8Max5, colorMap [4,1] = @winter8Min5 colorMap [5,0] = @winter8Max6, colorMap [5,1] = @winter8Min6 colorMap [6,0] = @winter8Max7, colorMap [6,1] = @winter8Min7 colorMap [7,0] = @winter8Max8, colorMap [7,1] = @winter8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Mojave 8") ; Created by Toby Marshall. colorMap [0,0] = @mojave8Max1, colorMap [0,1] = @mojave8Min1 colorMap [1,0] = @mojave8Max2, colorMap [1,1] = @mojave8Min2 colorMap [2,0] = @mojave8Max3, colorMap [2,1] = @mojave8Min3 colorMap [3,0] = @mojave8Max4, colorMap [3,1] = @mojave8Min4 colorMap [4,0] = @mojave8Max5, colorMap [4,1] = @mojave8Min5 colorMap [5,0] = @mojave8Max6, colorMap [5,1] = @mojave8Min6 colorMap [6,0] = @mojave8Max7, colorMap [6,1] = @mojave8Min7 colorMap [7,0] = @mojave8Max8, colorMap [7,1] = @mojave8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Green 8") ; colorMap [0,0] = @goldGreen8Max1, colorMap [0,1] = @goldGreen8Min1 colorMap [1,0] = @goldGreen8Max2, colorMap [1,1] = @goldGreen8Min2 colorMap [2,0] = @goldGreen8Max3, colorMap [2,1] = @goldGreen8Min3 colorMap [3,0] = @goldGreen8Max4, colorMap [3,1] = @goldGreen8Min4 colorMap [4,0] = @goldGreen8Max5, colorMap [4,1] = @goldGreen8Min5 colorMap [5,0] = @goldGreen8Max6, colorMap [5,1] = @goldGreen8Min6 colorMap [6,0] = @goldGreen8Max7, colorMap [6,1] = @goldGreen8Min7 colorMap [7,0] = @goldGreen8Max8, colorMap [7,1] = @goldGreen8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Green Alt 8") ; colorMap [0,0] = @goldGreenAlt8Max1, colorMap [0,1] = @goldGreenAlt8Min1 colorMap [1,0] = @goldGreenAlt8Max2, colorMap [1,1] = @goldGreenAlt8Min2 colorMap [2,0] = @goldGreenAlt8Max3, colorMap [2,1] = @goldGreenAlt8Min3 colorMap [3,0] = @goldGreenAlt8Max4, colorMap [3,1] = @goldGreenAlt8Min4 colorMap [4,0] = @goldGreenAlt8Max5, colorMap [4,1] = @goldGreenAlt8Min5 colorMap [5,0] = @goldGreenAlt8Max6, colorMap [5,1] = @goldGreenAlt8Min6 colorMap [6,0] = @goldGreenAlt8Max7, colorMap [6,1] = @goldGreenAlt8Min7 colorMap [7,0] = @goldGreenAlt8Max8, colorMap [7,1] = @goldGreenAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Silver 8") ; colorMap [0,0] = @goldSilver8Max1, colorMap [0,1] = @goldSilver8Min1 colorMap [1,0] = @goldSilver8Max2, colorMap [1,1] = @goldSilver8Min2 colorMap [2,0] = @goldSilver8Max3, colorMap [2,1] = @goldSilver8Min3 colorMap [3,0] = @goldSilver8Max4, colorMap [3,1] = @goldSilver8Min4 colorMap [4,0] = @goldSilver8Max5, colorMap [4,1] = @goldSilver8Min5 colorMap [5,0] = @goldSilver8Max6, colorMap [5,1] = @goldSilver8Min6 colorMap [6,0] = @goldSilver8Max7, colorMap [6,1] = @goldSilver8Min7 colorMap [7,0] = @goldSilver8Max8, colorMap [7,1] = @goldSilver8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Silver/Blue 8") ; colorMap [0,0] = @silverBlue8Max1, colorMap [0,1] = @silverBlue8Min1 colorMap [1,0] = @silverBlue8Max2, colorMap [1,1] = @silverBlue8Min2 colorMap [2,0] = @silverBlue8Max3, colorMap [2,1] = @silverBlue8Min3 colorMap [3,0] = @silverBlue8Max4, colorMap [3,1] = @silverBlue8Min4 colorMap [4,0] = @silverBlue8Max5, colorMap [4,1] = @silverBlue8Min5 colorMap [5,0] = @silverBlue8Max6, colorMap [5,1] = @silverBlue8Min6 colorMap [6,0] = @silverBlue8Max7, colorMap [6,1] = @silverBlue8Min7 colorMap [7,0] = @silverBlue8Max8, colorMap [7,1] = @silverBlue8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Silver/Blue Alt 8") ; colorMap [0,0] = @silverBlueAlt8Max1, colorMap [0,1] = @silverBlueAlt8Min1 colorMap [1,0] = @silverBlueAlt8Max2, colorMap [1,1] = @silverBlueAlt8Min2 colorMap [2,0] = @silverBlueAlt8Max3, colorMap [2,1] = @silverBlueAlt8Min3 colorMap [3,0] = @silverBlueAlt8Max4, colorMap [3,1] = @silverBlueAlt8Min4 colorMap [4,0] = @silverBlueAlt8Max5, colorMap [4,1] = @silverBlueAlt8Min5 colorMap [5,0] = @silverBlueAlt8Max6, colorMap [5,1] = @silverBlueAlt8Min6 colorMap [6,0] = @silverBlueAlt8Max7, colorMap [6,1] = @silverBlueAlt8Min7 colorMap [7,0] = @silverBlueAlt8Max8, colorMap [7,1] = @silverBlueAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Silver Alt 8") ; colorMap [0,0] = @goldSilverAlt8Max1, colorMap [0,1] = @goldSilverAlt8Min1 colorMap [1,0] = @goldSilverAlt8Max2, colorMap [1,1] = @goldSilverAlt8Min2 colorMap [2,0] = @goldSilverAlt8Max3, colorMap [2,1] = @goldSilverAlt8Min3 colorMap [3,0] = @goldSilverAlt8Max4, colorMap [3,1] = @goldSilverAlt8Min4 colorMap [4,0] = @goldSilverAlt8Max5, colorMap [4,1] = @goldSilverAlt8Min5 colorMap [5,0] = @goldSilverAlt8Max6, colorMap [5,1] = @goldSilverAlt8Min6 colorMap [6,0] = @goldSilverAlt8Max7, colorMap [6,1] = @goldSilverAlt8Min7 colorMap [7,0] = @goldSilverAlt8Max8, colorMap [7,1] = @goldSilverAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow 8") ; colorMap [0,0] = @purpleYellow8Max1, colorMap [0,1] = @purpleYellow8Min1 colorMap [1,0] = @purpleYellow8Max2, colorMap [1,1] = @purpleYellow8Min2 colorMap [2,0] = @purpleYellow8Max3, colorMap [2,1] = @purpleYellow8Min3 colorMap [3,0] = @purpleYellow8Max4, colorMap [3,1] = @purpleYellow8Min4 colorMap [4,0] = @purpleYellow8Max5, colorMap [4,1] = @purpleYellow8Min5 colorMap [5,0] = @purpleYellow8Max6, colorMap [5,1] = @purpleYellow8Min6 colorMap [6,0] = @purpleYellow8Max7, colorMap [6,1] = @purpleYellow8Min7 colorMap [7,0] = @purpleYellow8Max8, colorMap [7,1] = @purpleYellow8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow Alt 8") ; colorMap [0,0] = @purpleYellowAlt8Max1, colorMap [0,1] = @purpleYellowAlt8Min1 colorMap [1,0] = @purpleYellowAlt8Max2, colorMap [1,1] = @purpleYellowAlt8Min2 colorMap [2,0] = @purpleYellowAlt8Max3, colorMap [2,1] = @purpleYellowAlt8Min3 colorMap [3,0] = @purpleYellowAlt8Max4, colorMap [3,1] = @purpleYellowAlt8Min4 colorMap [4,0] = @purpleYellowAlt8Max5, colorMap [4,1] = @purpleYellowAlt8Min5 colorMap [5,0] = @purpleYellowAlt8Max6, colorMap [5,1] = @purpleYellowAlt8Min6 colorMap [6,0] = @purpleYellowAlt8Max7, colorMap [6,1] = @purpleYellowAlt8Min7 colorMap [7,0] = @purpleYellowAlt8Max8, colorMap [7,1] = @purpleYellowAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fourth of July 3") ; colorMap [0,0] = @fourthOfJuly3Max1, colorMap [0,1] = @fourthOfJuly3Min1 colorMap [1,0] = @fourthOfJuly3Max2, colorMap [1,1] = @fourthOfJuly3Min2 colorMap [2,0] = @fourthOfJuly3Max3, colorMap [2,1] = @fourthOfJuly3Min3 ranges = 3 offset = @colorOffset elseif (@colorPreset == "Blue/Silver 2") ; colorMap [0,0] = @blueSilver2Max1, colorMap [0,1] = @blueSilver2Min1 colorMap [1,0] = @blueSilver2Max2, colorMap [1,1] = @blueSilver2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Blue/White 2") ; colorMap [0,0] = @blueWhite2Max1, colorMap [0,1] = @blueWhite2Min1 colorMap [1,0] = @blueWhite2Max2, colorMap [1,1] = @blueWhite2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Cyan/Magenta 2") ; colorMap [0,0] = @cyanMagenta2Max1, colorMap [0,1] = @cyanMagenta2Min1 colorMap [1,0] = @cyanMagenta2Max2, colorMap [1,1] = @cyanMagenta2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Cyan/Yellow 2") ; colorMap [0,0] = @cyanYellow2Max1, colorMap [0,1] = @cyanYellow2Min1 colorMap [1,0] = @cyanYellow2Max2, colorMap [1,1] = @cyanYellow2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Gold/Green 2") ; colorMap [0,0] = @goldGreen2Max1, colorMap [0,1] = @goldGreen2Min1 colorMap [1,0] = @goldGreen2Max2, colorMap [1,1] = @goldGreen2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow 2") ; colorMap [0,0] = @purpleYellow2Max1, colorMap [0,1] = @purpleYellow2Min1 colorMap [1,0] = @purpleYellow2Max2, colorMap [1,1] = @purpleYellow2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Red/Tan 2") ; colorMap [0,0] = @redTan2Max1, colorMap [0,1] = @redTan2Min1 colorMap [1,0] = @redTan2Max2, colorMap [1,1] = @redTan2Min2 ranges = 2 offset = @colorOffset endif if (@perturbRanges == "8 Range Custom" && ranges == 8) ; If we are using 8 ranges, then take into account ; the rangeOrdering parameter. int range[8] ; Convert range ordering from 12345678 to .12345678 float ordering = @rangeOrder / 100000000 ; Convert .12345678 to 1.2345678 ordering = ordering * 10 ; Get the first digit int range[0] = trunc (ordering) ; Subract the first digit, i.e. 1.2345678 becomes .2345678 ordering = ordering - range[0] ; Get the second digit ordering = ordering * 10 int range[1] = trunc (ordering) ordering = ordering - range[1] ; Get the third digit ordering = ordering * 10 int range[2] = trunc (ordering) ordering = ordering - range[2] ; Get the fourth digit ordering = ordering * 10 int range[3] = trunc (ordering) ordering = ordering - range[3] ; Get the fifth digit ordering = ordering * 10 int range[4] = trunc (ordering) ordering = ordering - range[4] ; Get the sixth digit ordering = ordering * 10 int range[5] = trunc (ordering) ordering = ordering - range[5] ; Get the seventh digit ordering = ordering * 10 int range[6] = trunc (ordering) ordering = ordering - range[6] ; Get the eighth digit ordering = ordering * 10 int range[7] = round (ordering) ordering = ordering - range[7] ; Save the original order of the maps. color tempMap[8,2] tempMap[0,0] = colorMap[0,0], tempMap[0,1] = colorMap[0,1] tempMap[1,0] = colorMap[1,0], tempMap[1,1] = colorMap[1,1] tempMap[2,0] = colorMap[2,0], tempMap[2,1] = colorMap[2,1] tempMap[3,0] = colorMap[3,0], tempMap[3,1] = colorMap[3,1] tempMap[4,0] = colorMap[4,0], tempMap[4,1] = colorMap[4,1] tempMap[5,0] = colorMap[5,0], tempMap[5,1] = colorMap[5,1] tempMap[6,0] = colorMap[6,0], tempMap[6,1] = colorMap[6,1] tempMap[7,0] = colorMap[7,0], tempMap[7,1] = colorMap[7,1] ; Reorder the maps according to the rangeOrder parameter. colorMap[0,0] = tempMap[range[0]-1,0], colorMap[0,1] = tempMap[range[0]-1,1] colorMap[1,0] = tempMap[range[1]-1,0], colorMap[1,1] = tempMap[range[1]-1,1] colorMap[2,0] = tempMap[range[2]-1,0], colorMap[2,1] = tempMap[range[2]-1,1] colorMap[3,0] = tempMap[range[3]-1,0], colorMap[3,1] = tempMap[range[3]-1,1] colorMap[4,0] = tempMap[range[4]-1,0], colorMap[4,1] = tempMap[range[4]-1,1] colorMap[5,0] = tempMap[range[5]-1,0], colorMap[5,1] = tempMap[range[5]-1,1] colorMap[6,0] = tempMap[range[6]-1,0], colorMap[6,1] = tempMap[range[6]-1,1] colorMap[7,0] = tempMap[range[7]-1,0], colorMap[7,1] = tempMap[range[7]-1,1] endif endif init: z = 0 zref = 0 ztest = 0 float d = 1e20 float dist = 0 float tst = 0 float a = @penOffset float width = @width float magStep = @magStep float omagStep = 1 complex s = 0 int iters = 0 complex pt1[round(2 * #pi * @revolutions / @dt) + 3] complex pt2[round(2 * #pi * @revolutions / @dt) + 3] int points = 0 int ist = 0 int g = 0 int n = 0 int points = 0 bool bail = false complex z1 = 0 complex z2 = 0 int cIndex = 0 float gIndex = 0.0 loop: final: z = #z ; Loop for the number of times specified to duplicate the spirograph. while iters < @numIters iters = iters + 1 ; This value defines an area around each computed point on the ; spirograph. If points fall outside this radius, then we don't ; need to check them. This allow us to determine a subset of the ; points on the spirograph that need to be checked rather than ; checking all the points. This provides a significant speedup ; in computing the image. float target = sqrt(((@fixedRadius + @rollingRadius + a * \ (1 + @fixedRadius / @rollingRadius)) * @dt)^2 + width^2) * 1.2 ; Compute the min and max values for the shape of the spirograph. ; Values > max are outside the drawing area. ; Values < max are inside the drawing area. ; Points that are inside or outside the drawing area can be ; automatically skipped, providing significant speedup in ; computing the image. if @outside float max = @fixedRadius + @rollingRadius + a + width float min = @fixedRadius - a - width else float max = @fixedRadius + @rollingRadius + a + width float min = @fixedRadius - @rollingRadius - a - width endif ; Adjust the min and max values if the magnification is set to ; a value greater than 1.0. if magStep > 1.0 min = min * magStep max = max * magStep endif ; If we are outside the possible drawing area, or inside the ; possible drawing area, then skip the point. But, if the ; rollingRadius < 0.0, then we must enter and check all points ; because a negative rollingRadius messes up the optimizations. if (cabs(z) < max && cabs(z) > min) || (@rollingRadius < 0.0) g=0 n=0 ; Loop through the precomputed points to select the subset that ; are candidates for checking to see if the point being iterated ; lies on the spirograph. while n < numPoints if (@colorMode != "Parameterization") && !(@rollingRadius < 0.0) ; Check to see if this precomputed point is a candidate. if (cabs(p[iters-1,n] - z)) < target && \ (cabs(p[iters-1,n+1] - z)) < target pt1[g] = p[iters-1,n] pt2[g] = p[iters-1,n+1] g = g + 1 endif else ; This optimization doesn't work with colorMode == "Parameterization". pt1[g] = p[iters-1,n] pt2[g] = p[iters-1,n+1] g = g + 1 endif n = n + 1 endwhile ; Loop through the subset of points to see if the point being ; iterated lies on the spirograph. points = 0 while points < g z2 = pt1[points] z1 = pt2[points] ztest = z - z2 zref = z1 - z2 s = ztest / zref if real(s) < 0 dist = cabs(s) elseif real(s) > 1 dist = cabs(s - 1) else dist = abs(imag(s)) endif dist = dist * cabs(zref) if @constantWidth dist = dist * omagStep endif if dist < width && dist < d d = dist tst = dt[iters-1,points] - (1 - real(s)) * @dt if bail == false ist = iters iters = @numIters endif bail = true endif points = points + 1 endwhile endif ; for z > min z < max if @magType == "Linear" magStep = (1 + (@magStep - 1) * iters) / (1 + (@magStep - 1) * (iters - 1)) endif omagStep = omagStep * magStep ; Adjust z for the offset and magnification amounts. z = z - @rotationCenter z = z * exp(1i * pi / 180 * @rotationStep) / magStep ; Compute the offset for the next iteration. if @penOffsetVarType == "Step" a = a + @penOffsetVar elseif @penOffsetVarType == "Magnification-Linked" a = a / magStep endif endwhile ; If the point falls outside the lines of the spirograph, display ; the circles used for the spirograph, or set the color to the ; solid color. if d > width if @showCircles ; Use the original value of #z to draw the circles on the ; first copy of the spirograph. if abs(cabs(#z) - @fixedRadius) < width / 2 if @colorMode == "Symmetrical Gradient" #color = gradient((@coljos + 1) / @ncoljos + \ (.5 + abs(cabs(#z) - @fixedRadius) / width) / @ncoljos) elseif @colorMode == "Custom" gIndex = (1.5 - abs(cabs(#z) - @fixedRadius)) / width ; Convert gIndex to a value between 0.0 and 1.0. gIndex = gIndex % trunc(gIndex) #color = blend (@circleColorMin, @circleColorMax, gIndex) endif elseif abs(cabs(#z - (radiusSum)) - @rollingRadius) < width / 2 if @colorMode == "Symmetrical Gradient" #color = gradient((@coljos + 1) / @ncoljos + \ (.5 + abs(cabs(#z - (radiusSum)) - @rollingRadius) / \ width) / @ncoljos) elseif @colorMode == "Custom" gIndex = (1.5 - abs(cabs(#z - (radiusSum)) - @rollingRadius)) / width ; Convert gIndex to a value between 0.0 and 1.0. gIndex = gIndex % trunc(gIndex) #color = blend (@circleColorMin, @circleColorMax, gIndex) endif else #solid = true endif else #solid = true endif else ; Color the point according to the mode selected. if @colorMode == "Distance" #color = gradient(d^@power) elseif @colorMode == "Iteration" #color = gradient((ist % @ncol) / @ncol) elseif @colorMode == "Parameterization" #color = gradient(tst / (2 * pi * @fixedRadius)) elseif @colorMode == "Symmetrical Gradient" #color = gradient(@coljos / @ncoljos + (1 - d / width) / @ncoljos / 2) elseif @colorMode == "Custom" cIndex = (ist - 1 + offset) % @ncol #color = blend (colorMap[cIndex,1], colorMap[cIndex,0], (1 - d / width)) endif endif default: title = "Spirograph" ;-------------------------------------------------------------------- ; Version ;-------------------------------------------------------------------- param version caption = "Formula Version" default = 302 hint = "You should never see this parameter; it's used internally to track \ which version of the formula was used to create your image, so that \ if a bug is found which breaks backwards-compatibility, the formula \ can adapt transparently." visible = false endparam ;-------------------------------------------------------------------- ; Spirograph Parameters ;-------------------------------------------------------------------- heading caption = "Spirograph Parameters" endheading float param fixedRadius caption = "Fixed Circle Radius" default = .25 min = 0.0 hint = "Radius of the fixed circle. Note: If the magnification is \ set to approximately 1.0, then this value should be approximately \ 1.0 or less. 'Rolling Circle Radius' and 'Pen Offset' should \ also have values of approximagely 1.0 or less. Values greater \ than one may be used, but the magification will have to be \ adjusted to zoom out accordingly." endparam float param rollingRadius caption = "Rolling Circle Radius" default = .5 hint = "Radius of the rolling circle. Note: If the magnification is \ set to approximately 1.0, then this value should be approximately \ 1.0 or less. 'Fixed Circle Radius' and 'Pen Offset' should \ also have values of approximagely 1.0 or less. Values greater \ than one may be used, but the magification will have to be \ adjusted to zoom out accordingly." endparam bool param outside caption = "Roll Outside" default = true hint = "Uncheck to make the rolling circle roll on the inside of \ the fixed circle rather than on the outside." endparam bool param counter caption = "Counter Roll Inside" default = false visible = (@outside == false) ;&& (@rollingRadius > @fixedRadius) hint = "Check to make the pen on the rolling circle roll in the opposite \ direction. This, while technically incorrect for drawing a \ spirograph, can produce visually interesting patterns." endparam float param penOffset caption = "Pen Offset" default = .5 min = 0.0 hint = "Offset of the pen from the center of the rolling circle. Note: \ If the magnification is set to approximately 1.0, then this value \ should be approximately 1.0 or less. 'Fixed Circle Radius' \ and 'Rolling Circle Radius' should also have values of \ approximagely 1.0 or less. Values greater than one may be \ used, but the magification will have to be adjusted to zoom \ out accordingly." endparam float param revolutions caption = "Revolutions" default = 2 min = 0 hint = "Number of revolutions to make around the fixed circle." endparam float param width caption = "Line Width" default = .06 min = 0.0 hint = "Width of the line drawn." endparam float param dt caption = "Line Resolution" default = .1 hint = "Amount to vary the resolution of the lines drawing the spirograph. \ Larger values produce coarser lines. Smaller values produce \ smoother lines, but also increase the computation time." endparam bool param showCircles caption = "Show circles" default = false visible = (@colorMode == "Symmetrical Gradient") || (@colorMode == "Custom") endparam color param circleColorMax caption = "Circles Color High" default = rgb(255/255,255/255,255/255) hint = "This specifies the high end of the color range of the circles \ when the 'Show Circles' option is specified." visible = (@showCircles) && (@colorMode == "Custom") endparam color param circleColorMin caption = "Circles Color Low" default = rgb(0/255,0/255,0/255) hint = "This specifies the low end of the color range of the circles \ when the 'Show Circles' option is specified." visible = (@showCircles) && (@colorMode == "Custom") endparam ;-------------------------------------------------------------------- ; Multiple Iteration Parameters ;-------------------------------------------------------------------- heading caption = "Multiple Iteration Parameters" endheading int param numIters caption = "Iterations" default = 1 hint = "Number of times to duplicate the pattern." endparam float param rotationStep caption = "Rotation Angle" default = 0 hint = "The angle to rotate the pattern for each subsequent iteration." visible = (@numIters > 1) endparam complex param rotationCenter caption = "Offset" default = (0,0) hint = "Offset amount for each subsequent iteration." visible = (@numIters > 1) endparam param magType caption = "Magn. Type" enum = "Exponential" "Linear" default = 0 hint = "The type of magnification to apply to the pattern in each \ subsequent iteration." visible = (@numIters > 1) endparam float param magStep caption = "Magn. Amount" default = 1 hint = "Amount to change the magnification of the pattern in each \ subsequent iteration." visible = (@numIters > 1) endparam param penOffsetVarType caption = "Pen Offset Type" enum = "Step" "Magnification-Linked" default = 0 hint = "Use 'Step' to vary the pen offset by a fixed amount in each \ subsequent iteration. Use 'Magnification-Linked' to link the \ variation amount to the change in magnification for each \ subsequent iteration." visible = (@numIters > 1) endparam float param penOffsetVar caption = "Pen Offset Variation" default = 0.0 hint = "This value specifies the amount to vary the pen offset for \ each subsequent iteration." visible = (@numIters > 1) && (@penOffsetVarType == "Step") endparam param constantWidth caption = "Constant Width" default = false hint = "When true the width of subsequent iterations will be constant, \ otherwise the width of subsequent iterations may be varied \ based on the value of the magnification and pen offset \ parameters." visible = (@numIters > 1) endparam ;-------------------------------------------------------------------- ; Coloring Parameters ;-------------------------------------------------------------------- heading caption = "Coloring Parameters" endheading param colorMode caption = "Color Mode" default = 4 enum = "Distance" "Iteration" "Parameterization" "Symmetrical Gradient" \ "Custom" hint = "The method to use to color the spirograph. 'Distance' colors \ according to the width of the line. 'Iteration' colors according \ to the iteration number of the pattern. Use 'Iteration' if you \ want a solid colored line that varies color between iterations. \ Use 'Parameterization' to use the entire gradient to have the \ line color vary as it moves around the spirograph. Use \ 'Symmetrical Gradient' to define symmetrical color bands using \ the gradient. Use 'Custom' to select and/or modify predefined \ color range(s)." endparam float param power caption = "Distance Power" default = .2 hint = "Controls the coloring when using the 'Distance' color mode." visible = (@colorMode == "Distance") endparam param ncol caption = "Number of Colors" default = 8 hint = "This specifies the number of colors to use from the gradient \ or from the predefined color map when the 'Custom' Color Mode \ is selected. Note: It only has an effect when 'Iterations' \ is greater than 1." visible = (@colorMode != "Symmetrical Gradient") endparam param ncoljos caption = "Number of Colors" default = 8 hint = "This specifies the number of symmetrical color bands in the \ gradient." visible = (@colorMode == "Symmetrical Gradient") endparam param coljos caption = "Choose COLOR" default = 0 hint = "This specifies the color band to be used from the gradient. " visible = (@colorMode == "Symmetrical Gradient") endparam param colorPreset caption = "Color Preset" enum = "Gradient" "Custom" "Generate" "Default" "Default 12" \ "Default 16" "Default 24" "Color Wheel 12" "Alhambra 8" \ "Belvedere 8" "Bouquet 8" "Color Switch 8" "Evening Sky 8" \ "Fantasia 8" "Flowering Orchard 8" "Morning Sky 8" "Pastel 8" \ "Pastel Rainbow 8" "Showtime 8" "Soleil 8" "Chill 8" \ "Cloud Nine 8" "La Terra 8" "Santa Fe 8" "Spring 8" "Summer 8" \ "Fall 8" "Winter 8" "Mojave 8" "Gold/Green 8" "Gold/Green Alt 8" \ "Gold/Silver 8" "Gold/Silver Alt 8" "Purple/Yellow 8" \ "Purple/Yellow Alt 8" "Silver/Blue 8" "Silver/Blue Alt 8" \ "Fourth of July 3" "Blue/Silver 2" "Blue/White 2" "Cyan/Magenta 2" \ "Cyan/Yellow 2" "Gold/Green 2" "Purple/Yellow 2" "Red/Tan 2" default = 3 hint = "Use 'Gradient' for colors from the gradient. \ Use 'Custom' to set your own color ranges. \ Use 'Default' for the default colors. \ Use 'Generate' to create 3D-like colors from the \ gradient (allows using the gradient randomize function). \ Use any of the other predefined settings for those colors." visible = (@colorMode == "Custom") endparam param customize caption = "Show/Customize" default = false hint = "Check to customize the selected color preset. NOTE: If you \ modify the default values for any of the range(s), you cannot \ get back to the default values for the range(s) you modify \ unless you reload the UCL." visible = (@colorPreset != "Gradient") && (@colorPreset != "Generate") \ && (@colorPreset != "Custom") && (@colorMode == "Custom") endparam float param luminanceUpper caption = "Lum. Upper Value" default = 0.60 min = 0.0 max = 1.0 hint = "The value of the Luminance component for the upper value \ when generating the ranges from the gradient. This value \ is used with the brighter end of the color range." visible = (@colorMode == "Custom") && (@colorPreset == "Generate") endparam float param luminanceLower caption = "Lum. Lower Value" default = 0.10 min = 0.0 max = 1.0 hint = "The value of the Luminance component for the lower value \ when generating the ranges from the gradient. This value \ is used with the darker end of the color range." visible = (@colorMode == "Custom") && (@colorPreset == "Generate") endparam int param colorRanges caption = "Number of Ranges" default = 8 min = 1 max = 24 hint = "The number of color ranges (1..24)." visible = (@colorPreset == "Custom") || (@colorPreset == "Gradient") && \ (@colorMode == "Custom") endparam int param numRanges caption = "Number of Ranges" default = 8 min = 1 max = 200 hint = "The number of color ranges." visible = (@colorMode == "Custom") && (@colorPreset == "Generate") endparam ; int param colorsPerRange ; caption = "Number of Colors" ; default = 30 ; hint = "The number of colors per range." ; visible = (@colorPreset == "Gradient") && (@colorMode == "Normal") ; endparam int param colorOffset caption = "Range Offset" default = 0 min = 0 max = 23 hint = "This is used to rotate the color ranges. The offset can \ range from 0 to 23, where 23 is the maximum number of ranges \ that can be specified using the 'Generate' Color Preset." visible = (@colorMode == "Custom") && (@colorPreset != "Gradient") endparam param perturbRanges caption = "Perturb Ranges" enum = "None" "Even/Odd" "1st Half / 2nd Half" "8 Range Custom" default = 0 hint = "Modify the way the ranges are assigned to the elements. \ 'None' = Assign in Order (0 1 2 3 4 5 6 7); 'Even Odd' = \ Assign Even Ranges, then Odd Ranges (0 2 4 6 1 3 5 7); \ '1st Half / 2nd Half' = Assign from first half of range, \ then 2nd half (0 4 1 5 2 6 3 7); '8 Range Custom' = Assign \ the ordering by entering digits 1-8. Only works for ranges \ with 8 colors." visible = (@colorMode == "Custom") && (@numRanges >= 3) ; ((@colorPreset == "Custom" && @colorRanges >= 3) || \ ; (@colorPreset == "Generate" && @numRanges >= 3) || \ ; (@colorPreset == "Gradient" && @colorRanges >= 3) || \ ; (@colorPreset != "Custom" && @colorPreset != "Generate" && \ ; @colorPreset != "Gradient")) && (@colorMode == "Normal") endparam int param rangeOrder caption = "Range Order" default = 12345678 min = 11111111 max = 88888888 hint = "Specify the color range ordering. Use digits 1-8 to specify \ the order the ranges will be used. For example, to reverse \ the ordering, specify 87654321. To alternate, use 13572468. \ If color map or preset is defined that does not contain exactly \ 8 ranges, then this parameter will not have any effect." visible = (@colorMode == "Custom") && (@perturbRanges == "8 Range Custom") endparam heading caption = " " endheading ;-------------------------------------------------------------------- ; Color Defaults for Custom ;-------------------------------------------------------------------- heading caption = " Custom Color Settings" visible = (@colorMode == "Custom") && (@colorPreset == "Custom") endheading color param colorMax1 caption = "Color Range 1 High" default = rgb(255/255,0/255,211/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@colorPreset == "Custom") endparam color param colorMin1 caption = "Color Range 1 Low" default = rgb(104/255,0/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@colorPreset == "Custom") endparam color param colorMax2 caption = "Color Range 2 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@colorRanges >= 2) && (@colorPreset == "Custom") endparam color param colorMin2 caption = "Color Range 2 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@colorRanges >= 2) && (@colorPreset == "Custom") endparam color param colorMax3 caption = "Color Range 3 High" default = rgb(255/255,118/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@colorRanges >= 3) && (@colorPreset == "Custom") endparam color param colorMin3 caption = "Color Range 3 Low" default = rgb(100/255,36/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@colorRanges >= 3) && (@colorPreset == "Custom") endparam color param colorMax4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@colorRanges >= 4) && (@colorPreset == "Custom") endparam color param colorMin4 caption = "Color Range 4 Low" default = rgb(92/255,61/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@colorRanges >= 4) && (@colorPreset == "Custom") endparam color param colorMax5 caption = "Color Range 5 High" default = rgb(0/255,255/255,55/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@colorRanges >= 5) && (@colorPreset == "Custom") endparam color param colorMin5 caption = "Color Range 5 Low" default = rgb(0/255,78/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@colorRanges >= 5) && (@colorPreset == "Custom") endparam color param colorMax6 caption = "Color Range 6 High" default = rgb(0/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@colorRanges >= 6) && (@colorPreset == "Custom") endparam color param colorMin6 caption = "Color Range 6 Low" default = rgb(0/255,71/255,74/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@colorRanges >= 6) && (@colorPreset == "Custom") endparam color param colorMax7 caption = "Color Range 7 High" default = rgb(0/255,90/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@colorRanges >= 7) && (@colorPreset == "Custom") endparam color param colorMin7 caption = "Color Range 7 Low" default = rgb(0/255,0/255,102/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@colorRanges >= 7) && (@colorPreset == "Custom") endparam color param colorMax8 caption = "Color Range 8 High" default = rgb(175/255,0/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@colorRanges >= 8) && (@colorPreset == "Custom") endparam color param colorMin8 caption = "Color Range 8 Low" default = rgb(57/255,0/255,86/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@colorRanges >= 8) && (@colorPreset == "Custom") endparam color param customMax9 caption = "Color Range 9 High" default = rgb(255/255,0/255,134/255) hint = "Specifies the color at the high end of Range #9." visible = (@colorMode == "Custom") && (@colorRanges >= 9) && (@colorPreset == "Custom") endparam color param customMin9 caption = "Color Range 9 Low" default = rgb(106/255,0/255,55/255) hint = "Specifies the color at the low end of Range #9." visible = (@colorMode == "Custom") && (@colorRanges >= 9) && (@colorPreset == "Custom") endparam color param customMax10 caption = "Color Range 10 High" default = rgb(255/255,54/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@colorMode == "Custom") && (@colorRanges >= 10) && (@colorPreset == "Custom") endparam color param customMin10 caption = "Color Range 10 Low" default = rgb(94/255,18/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@colorMode == "Custom") && (@colorRanges >= 10) && (@colorPreset == "Custom") endparam color param customMax11 caption = "Color Range 11 High" default = rgb(255/255,157/255,0/255) hint = "Specifies the color at the high end of Range #11." visible = (@colorMode == "Custom") && (@colorRanges >= 11) && (@colorPreset == "Custom") endparam color param customMin11 caption = "Color Range 11 Low" default = rgb(90/255,40/255,0/255) hint = "Specifies the color at the low end of Range #11." visible = (@colorMode == "Custom") && (@colorRanges >= 11) && (@colorPreset == "Custom") endparam color param customMax12 caption = "Color Range 12 High" default = rgb(229/255,255/255,0/255) hint = "Specifies the color at the high end of Range #12." visible = (@colorMode == "Custom") && (@colorRanges >= 12) && (@colorPreset == "Custom") endparam color param customMin12 caption = "Color Range 12 Low" default = rgb(68/255,68/255,0/255) hint = "Specifies the color at the low end of Range #12." visible = (@colorMode == "Custom") && (@colorRanges >= 12) && (@colorPreset == "Custom") endparam color param customMax13 caption = "Color Range 13 High" default = rgb(0/255,255/255,136/255) hint = "Specifies the color at the high end of Range #13." visible = (@colorMode == "Custom") && (@colorRanges >= 13) && (@colorPreset == "Custom") endparam color param customMin13 caption = "Color Range 13 Low" default = rgb(0/255,66/255,30/255) hint = "Specifies the color at the low end of Range #13." visible = (@colorMode == "Custom") && (@colorRanges >= 13) && (@colorPreset == "Custom") endparam color param customMax14 caption = "Color Range 14 High" default = rgb(0/255,212/255,255/255) hint = "Specifies the color at the high end of Range #14." visible = (@colorMode == "Custom") && (@colorRanges >= 14) && (@colorPreset == "Custom") endparam color param customMin14 caption = "Color Range 14 Low" default = rgb(0/255,57/255,82/255) hint = "Specifies the color at the low end of Range #14." visible = (@colorMode == "Custom") && (@colorRanges >= 14) && (@colorPreset == "Custom") endparam color param customMax15 caption = "Color Range 15 High" default = rgb(92/255,77/255,255/255) hint = "Specifies the color at the high end of Range #15." visible = (@colorMode == "Custom") && (@colorRanges >= 15) && (@colorPreset == "Custom") endparam color param customMin15 caption = "Color Range 15 Low" default = rgb(28/255,0/255,94/255) hint = "Specifies the color at the low end of Range #15." visible = (@colorMode == "Custom") && (@colorRanges >= 15) && (@colorPreset == "Custom") endparam color param customMax16 caption = "Color Range 16 High" default = rgb(209/255,0/255,255/255) hint = "Specifies the color at the high end of Range #16." visible = (@colorMode == "Custom") && (@colorRanges >= 16) && (@colorPreset == "Custom") endparam color param customMin16 caption = "Color Range 16 Low" default = rgb(69/255,0/255,82/255) hint = "Specifies the color at the low end of Range #16." visible = (@colorMode == "Custom") && (@colorRanges >= 16) && (@colorPreset == "Custom") endparam color param customMax17 caption = "Color Range 17 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #17." visible = (@colorMode == "Custom") && (@colorRanges >= 17) && (@colorPreset == "Custom") endparam color param customMin17 caption = "Color Range 17 Low" default = rgb(84/255,0/255,84/255) hint = "Specifies the color at the low end of Range #17." visible = (@colorMode == "Custom") && (@colorRanges >= 17) && (@colorPreset == "Custom") endparam color param customMax18 caption = "Color Range 18 High" default = rgb(255/255,35/255,88/255) hint = "Specifies the color at the high end of Range #18." visible = (@colorMode == "Custom") && (@colorRanges >= 18) && (@colorPreset == "Custom") endparam color param customMin18 caption = "Color Range 18 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #18." visible = (@colorMode == "Custom") && (@colorRanges >= 18) && (@colorPreset == "Custom") endparam color param customMax19 caption = "Color Range 19 High" default = rgb(255/255,85/255,0/255) hint = "Specifies the color at the high end of Range #19." visible = (@colorMode == "Custom") && (@colorRanges >= 19) && (@colorPreset == "Custom") endparam color param customMin19 caption = "Color Range 19 Low" default = rgb(92/255,26/255,0/255) hint = "Specifies the color at the low end of Range #19." visible = (@colorMode == "Custom") && (@colorRanges >= 19) && (@colorPreset == "Custom") endparam color param customMax20 caption = "Color Range 20 High" default = rgb(255/255,203/255,0/255) hint = "Specifies the color at the high end of Range #20." visible = (@colorMode == "Custom") && (@colorRanges >= 20) && (@colorPreset == "Custom") endparam color param customMin20 caption = "Color Range 20 Low" default = rgb(82/255,54/255,0/255) hint = "Specifies the color at the low end of Range #20." visible = (@colorMode == "Custom") && (@colorRanges >= 20) && (@colorPreset == "Custom") endparam color param customMax21 caption = "Color Range 21 High" default = rgb(191/255,255/255,0/255) hint = "Specifies the color at the high end of Range #21." visible = (@colorMode == "Custom") && (@colorRanges >= 21) && (@colorPreset == "Custom") endparam color param customMin21 caption = "Color Range 21 Low" default = rgb(32/255,64/255,0/255) hint = "Specifies the color at the low end of Range #21." visible = (@colorMode == "Custom") && (@colorRanges >= 21) && (@colorPreset == "Custom") endparam color param customMax22 caption = "Color Range 22 High" default = rgb(0/255,255/255,203/255) hint = "Specifies the color at the high end of Range #22." visible = (@colorMode == "Custom") && (@colorRanges >= 22) && (@colorPreset == "Custom") endparam color param customMin22 caption = "Color Range 22 Low" default = rgb(0/255,62/255,48/255) hint = "Specifies the color at the low end of Range #22." visible = (@colorMode == "Custom") && (@colorRanges >= 22) && (@colorPreset == "Custom") endparam color param customMax23 caption = "Color Range 23 High" default = rgb(0/255,153/255,255/255) hint = "Specifies the color at the high end of Range #23." visible = (@colorMode == "Custom") && (@colorRanges >= 23) && (@colorPreset == "Custom") endparam color param customMin23 caption = "Color Range 23 Low" default = rgb(0/255,37/255,104/255) hint = "Specifies the color at the low end of Range #23." visible = (@colorMode == "Custom") && (@colorRanges >= 23) && (@colorPreset == "Custom") endparam color param customMax24 caption = "Color Range 24 High" default = rgb(131/255,67/255,255/255) hint = "Specifies the color at the high end of Range #24." visible = (@colorMode == "Custom") && (@colorRanges >= 24) && (@colorPreset == "Custom") endparam color param customMin24 caption = "Color Range 24 Low" default = rgb(57/255,0/255,112/255) hint = "Specifies the color at the low end of Range #24." visible = (@colorMode == "Custom") && (@colorRanges >= 24) && (@colorPreset == "Custom") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default ;-------------------------------------------------------------------- heading caption = " Default Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endheading color param defaultMax1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMin1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMax2 caption = "Color Range 2 High" default = rgb(252/255,0/255,172/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMin2 caption = "Color Range 2 Low" default = rgb(96/255,0/255,32/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMax3 caption = "Color Range 3 High" default = rgb(252/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMin3 caption = "Color Range 3 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMax4 caption = "Color Range 4 High" default = rgb(252/255,128/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMin4 caption = "Color Range 4 Low" default = rgb(160/255,16/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMax5 caption = "Color Range 5 High" default = rgb(252/255,252/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMin5 caption = "Color Range 5 Low" default = rgb(152/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMax6 caption = "Color Range 6 High" default = rgb(0/255,252/255,128/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMin6 caption = "Color Range 6 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMax7 caption = "Color Range 7 High" default = rgb(0/255,252/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMin7 caption = "Color Range 7 Low" default = rgb(0/255,48/255,48/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMax8 caption = "Color Range 8 High" default = rgb(64/255,64/255,252/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam color param defaultMin8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 12 ;-------------------------------------------------------------------- heading caption = " Default 12 Color Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endheading color param default12Max1 caption = "Color Range 1 High" default = rgb(255/255,85/255,253/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min1 caption = "Color Range 1 Low" default = rgb(98/255,0/255,76/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max2 caption = "Color Range 2 High" default = rgb(252/255,0/255,143/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min2 caption = "Color Range 2 Low" default = rgb(98/255,0/255,54/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max3 caption = "Color Range 3 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min3 caption = "Color Range 3 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max4 caption = "Color Range 4 High" default = rgb(255/255,97/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min4 caption = "Color Range 4 Low" default = rgb(104/255,27/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max5 caption = "Color Range 5 High" default = rgb(255/255,187/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min5 caption = "Color Range 5 Low" default = rgb(110/255,54/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max6 caption = "Color Range 6 High" default = rgb(255/255,248/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min6 caption = "Color Range 6 Low" default = rgb(102/255,60/255,6/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max7 caption = "Color Range 7 High" default = rgb(0/255,255/255,58/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min7 caption = "Color Range 7 Low" default = rgb(0/255,76/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max8 caption = "Color Range 8 High" default = rgb(0/255,255/255,205/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min8 caption = "Color Range 8 Low" default = rgb(0/255,89/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max9 caption = "Color Range 9 High" default = rgb(0/255,194/255,255/255) hint = "Specifies the color at the high end of Range #9." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min9 caption = "Color Range 9 Low" default = rgb(0/255,80/255,92/255) hint = "Specifies the color at the low end of Range #9." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max10 caption = "Color Range 10 High" default = rgb(35/255,109/255,255/255) hint = "Specifies the color at the high end of Range #10." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min10 caption = "Color Range 10 Low" default = rgb(0/255,4/255,102/255) hint = "Specifies the color at the low end of Range #10." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max11 caption = "Color Range 11 High" default = rgb(149/255,53/255,255/255) hint = "Specifies the color at the high end of Range #11." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min11 caption = "Color Range 11 Low" default = rgb(53/255,0/255,96/255) hint = "Specifies the color at the low end of Range #11." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Max12 caption = "Color Range 12 High" default = rgb(195/255,0/255,252/255) hint = "Specifies the color at the high end of Range #12." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam color param default12Min12 caption = "Color Range 12 Low" default = rgb(58/255,0/255,84/255) hint = "Specifies the color at the low end of Range #12." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 12") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 16 ;-------------------------------------------------------------------- heading caption = " Default 16 Color Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endheading color param default16Max1 caption = "Color Range 1 High" default = rgb(255/255,31/255,114/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min1 caption = "Color Range 1 Low" default = rgb(94/255,0/255,40/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max2 caption = "Color Range 2 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min2 caption = "Color Range 2 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max3 caption = "Color Range 3 High" default = rgb(255/255,78/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min3 caption = "Color Range 3 Low" default = rgb(88/255,27/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max4 caption = "Color Range 4 High" default = rgb(255/255,110/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min4 caption = "Color Range 4 Low" default = rgb(90/255,30/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max5 caption = "Color Range 5 High" default = rgb(255/255,187/255,31/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min5 caption = "Color Range 5 Low" default = rgb(88/255,38/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min6 caption = "Color Range 6 Low" default = rgb(96/255,57/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max7 caption = "Color Range 7 High" default = rgb(170/255,255/255,37/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min7 caption = "Color Range 7 Low" default = rgb(41/255,68/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max8 caption = "Color Range 8 High" default = rgb(0/255,255/255,94/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min8 caption = "Color Range 8 Low" default = rgb(0/255,62/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max9 caption = "Color Range 9 High" default = rgb(0/255,238/255,203/255) hint = "Specifies the color at the high end of Range #9." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min9 caption = "Color Range 9 Low" default = rgb(0/255,64/255,54/255) hint = "Specifies the color at the low end of Range #9." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max10 caption = "Color Range 10 High" default = rgb(11/255,166/255,255/255) hint = "Specifies the color at the high end of Range #10." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min10 caption = "Color Range 10 Low" default = rgb(0/255,38/255,78/255) hint = "Specifies the color at the low end of Range #10." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max11 caption = "Color Range 11 High" default = rgb(0/255,68/255,255/255) hint = "Specifies the color at the high end of Range #11." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min11 caption = "Color Range 11 Low" default = rgb(0/255,20/255,88/255) hint = "Specifies the color at the low end of Range #11." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max12 caption = "Color Range 12 High" default = rgb(99/255,0/255,255/255) hint = "Specifies the color at the high end of Range #12." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min12 caption = "Color Range 12 Low" default = rgb(47/255,0/255,94/255) hint = "Specifies the color at the low end of Range #12." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max13 caption = "Color Range 13 High" default = rgb(145/255,0/255,255/255) hint = "Specifies the color at the high end of Range #13." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min13 caption = "Color Range 13 Low" default = rgb(69/255,0/255,102/255) hint = "Specifies the color at the low end of Range #13." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max14 caption = "Color Range 14 High" default = rgb(221/255,0/255,255/255) hint = "Specifies the color at the high end of Range #14." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min14 caption = "Color Range 14 Low" default = rgb(86/255,0/255,100/255) hint = "Specifies the color at the low end of Range #14." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max15 caption = "Color Range 15 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #15." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min15 caption = "Color Range 15 Low" default = rgb(90/255,0/255,75/255) hint = "Specifies the color at the low end of Range #15." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Max16 caption = "Color Range 16 High" default = rgb(255/255,0/255,140/255) hint = "Specifies the color at the high end of Range #16." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam color param default16Min16 caption = "Color Range 16 Low" default = rgb(96/255,0/255,60/255) hint = "Specifies the color at the low end of Range #16." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 16") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 24 ;-------------------------------------------------------------------- heading caption = " Default 24 Color Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endheading color param default24Max1 caption = "Color Range 1 High" default = rgb(255/255,0/255,211/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min1 caption = "Color Range 1 Low" default = rgb(104/255,0/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max2 caption = "Color Range 2 High" default = rgb(255/255,0/255,134/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min2 caption = "Color Range 2 Low" default = rgb(106/255,0/255,55/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max3 caption = "Color Range 3 High" default = rgb(255/255,35/255,88/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min3 caption = "Color Range 3 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max4 caption = "Color Range 4 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min4 caption = "Color Range 4 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max5 caption = "Color Range 5 High" default = rgb(255/255,54/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min5 caption = "Color Range 5 Low" default = rgb(92/255,26/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max6 caption = "Color Range 6 High" default = rgb(255/255,85/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min6 caption = "Color Range 6 Low" default = rgb(96/255,27/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max7 caption = "Color Range 7 High" default = rgb(255/255,118/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min7 caption = "Color Range 7 Low" default = rgb(100/255,38/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max8 caption = "Color Range 8 High" default = rgb(255/255,157/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min8 caption = "Color Range 8 Low" default = rgb(90/255,40/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max9 caption = "Color Range 9 High" default = rgb(255/255,203/255,0/255) hint = "Specifies the color at the high end of Range #9." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min9 caption = "Color Range 9 Low" default = rgb(82/255,54/255,0/255) hint = "Specifies the color at the low end of Range #9." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max10 caption = "Color Range 10 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min10 caption = "Color Range 10 Low" default = rgb(92/255,61/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max11 caption = "Color Range 11 High" default = rgb(229/255,255/255,0/255) hint = "Specifies the color at the high end of Range #11." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min11 caption = "Color Range 11 Low" default = rgb(68/255,68/255,0/255) hint = "Specifies the color at the low end of Range #11." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max12 caption = "Color Range 12 High" default = rgb(191/255,255/255,0/255) hint = "Specifies the color at the high end of Range #12." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min12 caption = "Color Range 12 Low" default = rgb(32/255,64/255,0/255) hint = "Specifies the color at the low end of Range #12." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max13 caption = "Color Range 13 High" default = rgb(0/255,255/255,55/255) hint = "Specifies the color at the high end of Range #13." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min13 caption = "Color Range 13 Low" default = rgb(0/255,78/255,0/255) hint = "Specifies the color at the low end of Range #13." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max14 caption = "Color Range 14 High" default = rgb(0/255,255/255,136/255) hint = "Specifies the color at the high end of Range #14." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min14 caption = "Color Range 14 Low" default = rgb(0/255,66/255,30/255) hint = "Specifies the color at the low end of Range #14." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max15 caption = "Color Range 15 High" default = rgb(0/255,255/255,203/255) hint = "Specifies the color at the high end of Range #15." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min15 caption = "Color Range 15 Low" default = rgb(0/255,62/255,48/255) hint = "Specifies the color at the low end of Range #15." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max16 caption = "Color Range 16 High" default = rgb(0/255,255/255,255/255) hint = "Specifies the color at the high end of Range #16." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min16 caption = "Color Range 16 Low" default = rgb(0/255,71/255,74/255) hint = "Specifies the color at the low end of Range #16." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max17 caption = "Color Range 17 High" default = rgb(0/255,212/255,255/255) hint = "Specifies the color at the high end of Range #17." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min17 caption = "Color Range 17 Low" default = rgb(0/255,57/255,82/255) hint = "Specifies the color at the low end of Range #17." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max18 caption = "Color Range 18 High" default = rgb(0/255,153/255,255/255) hint = "Specifies the color at the high end of Range #18." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min18 caption = "Color Range 18 Low" default = rgb(0/255,37/255,104/255) hint = "Specifies the color at the low end of Range #18." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max19 caption = "Color Range 19 High" default = rgb(0/255,90/255,255/255) hint = "Specifies the color at the high end of Range #19." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min19 caption = "Color Range 19 Low" default = rgb(0/255,0/255,102/255) hint = "Specifies the color at the low end of Range #19." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max20 caption = "Color Range 20 High" default = rgb(92/255,77/255,255/255) hint = "Specifies the color at the high end of Range #20." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min20 caption = "Color Range 20 Low" default = rgb(28/255,0/255,94/255) hint = "Specifies the color at the low end of Range #20." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max21 caption = "Color Range 21 High" default = rgb(131/255,67/255,255/255) hint = "Specifies the color at the high end of Range #21." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min21 caption = "Color Range 21 Low" default = rgb(57/255,0/255,112/255) hint = "Specifies the color at the low end of Range #21." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max22 caption = "Color Range 22 High" default = rgb(175/255,0/255,255/255) hint = "Specifies the color at the high end of Range #22." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min22 caption = "Color Range 22 Low" default = rgb(57/255,0/255,86/255) hint = "Specifies the color at the low end of Range #22." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max23 caption = "Color Range 23 High" default = rgb(209/255,0/255,255/255) hint = "Specifies the color at the high end of Range #23." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min23 caption = "Color Range 23 Low" default = rgb(64/255,0/255,76/255) hint = "Specifies the color at the low end of Range #23." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Max24 caption = "Color Range 24 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #24." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam color param default24Min24 caption = "Color Range 24 Low" default = rgb(84/255,0/255,84/255) hint = "Specifies the color at the low end of Range #24." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Default 24") endparam ;-------------------------------------------------------------------- ; Color Defaults for Color Wheel 12 ;-------------------------------------------------------------------- heading caption = " Color Wheel 12 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endheading color param colorWheel12Max1 caption = "Color Range 1 High" default = rgb(142/255,117/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min1 caption = "Color Range 1 Low" default = rgb(52/255,0/255,100/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max2 caption = "Color Range 2 High" default = rgb(224/255,9/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min2 caption = "Color Range 2 Low" default = rgb(86/255,0/255,84/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max3 caption = "Color Range 3 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min3 caption = "Color Range 3 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max4 caption = "Color Range 4 High" default = rgb(252/255,167/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min4 caption = "Color Range 4 Low" default = rgb(95/255,54/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max5 caption = "Color Range 5 High" default = rgb(190/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min5 caption = "Color Range 5 Low" default = rgb(63/255,84/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max6 caption = "Color Range 6 High" default = rgb(0/255,231/255,213/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min6 caption = "Color Range 6 Low" default = rgb(4/255,62/255,62/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max7 caption = "Color Range 7 High" default = rgb(182/255,27/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min7 caption = "Color Range 7 Low" default = rgb(53/255,0/255,92/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max8 caption = "Color Range 8 High" default = rgb(255/255,33/255,146/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min8 caption = "Color Range 8 Low" default = rgb(80/255,0/255,53/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max9 caption = "Color Range 9 High" default = rgb(255/255,110/255,0/255) hint = "Specifies the color at the high end of Range #9." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min9 caption = "Color Range 9 Low" default = rgb(101/255,25/255,21/255) hint = "Specifies the color at the low end of Range #9." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max10 caption = "Color Range 10 High" default = rgb(255/255,241/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min10 caption = "Color Range 10 Low" default = rgb(88/255,69/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max11 caption = "Color Range 11 High" default = rgb(0/255,248/255,103/255) hint = "Specifies the color at the high end of Range #11." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min11 caption = "Color Range 11 Low" default = rgb(0/255,83/255,15/255) hint = "Specifies the color at the low end of Range #11." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max12 caption = "Color Range 12 High" default = rgb(27/255,119/255,255/255) hint = "Specifies the color at the high end of Range #12." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min12 caption = "Color Range 12 Low" default = rgb(0/255,31/255,92/255) hint = "Specifies the color at the low end of Range #12." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Wheel 12") endparam ;-------------------------------------------------------------------- ; Color Defaults for Alhambra 8 ;-------------------------------------------------------------------- heading caption = " Alhambra 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endheading color param alhambra8Max1 caption = "Color Range 1 High" default = rgb(15/255,222/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min1 caption = "Color Range 1 Low" default = rgb(0/255,43/255,52/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max2 caption = "Color Range 2 High" default = rgb(255/255,204/255,75/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min2 caption = "Color Range 2 Low" default = rgb(92/255,58/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max3 caption = "Color Range 3 High" default = rgb(188/255,152/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min3 caption = "Color Range 3 Low" default = rgb(41/255,0/255,70/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max4 caption = "Color Range 4 High" default = rgb(255/255,155/255,109/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min4 caption = "Color Range 4 Low" default = rgb(95/255,36/255,14/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max5 caption = "Color Range 5 High" default = rgb(121/255,180/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min5 caption = "Color Range 5 Low" default = rgb(0/255,47/255,91/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max6 caption = "Color Range 6 High" default = rgb(255/255,131/255,126/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min6 caption = "Color Range 6 Low" default = rgb(104/255,20/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max7 caption = "Color Range 7 High" default = rgb(33/255,255/255,220/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min7 caption = "Color Range 7 Low" default = rgb(0/255,67/255,49/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max8 caption = "Color Range 8 High" default = rgb(255/255,177/255,93/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min8 caption = "Color Range 8 Low" default = rgb(100/255,44/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Alhambra 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Belvedere 8 ;-------------------------------------------------------------------- heading caption = " Belvedere 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endheading color param belvedere8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min1 caption = "Color Range 1 Low" default = rgb(92/255,92/255,122/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min2 caption = "Color Range 2 Low" default = rgb(92/255,92/255,122/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max3 caption = "Color Range 3 High" default = rgb(123/255,201/255,254/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min3 caption = "Color Range 3 Low" default = rgb(0/255,45/255,68/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max4 caption = "Color Range 4 High" default = rgb(255/255,230/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min4 caption = "Color Range 4 Low" default = rgb(162/255,28/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max5 caption = "Color Range 5 High" default = rgb(255/255,230/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min5 caption = "Color Range 5 Low" default = rgb(162/255,28/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max6 caption = "Color Range 6 High" default = rgb(0/255,255/255,217/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min6 caption = "Color Range 6 Low" default = rgb(0/255,54/255,46/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max7 caption = "Color Range 7 High" default = rgb(255/255,20/255,70/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min7 caption = "Color Range 7 Low" default = rgb(100/255,0/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max8 caption = "Color Range 8 High" default = rgb(95/255,84/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,89/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Belvedere 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Bouquet 8 ;-------------------------------------------------------------------- heading caption = " Bouquet 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endheading color param bouquet8Max1 caption = "Color Range 1 High" default = rgb(0/255,255/255,131/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min1 caption = "Color Range 1 Low" default = rgb(0/255,84/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max2 caption = "Color Range 2 High" default = rgb(52/255,255/255,198/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min2 caption = "Color Range 2 Low" default = rgb(0/255,82/255,60/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max3 caption = "Color Range 3 High" default = rgb(0/255,244/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min3 caption = "Color Range 3 Low" default = rgb(0/255,64/255,74/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max4 caption = "Color Range 4 High" default = rgb(180/255,169/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min4 caption = "Color Range 4 Low" default = rgb(40/255,12/255,64/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max5 caption = "Color Range 5 High" default = rgb(251/255,148/255,230/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min5 caption = "Color Range 5 Low" default = rgb(100/255,20/255,67/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max6 caption = "Color Range 6 High" default = rgb(255/255,101/255,140/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min6 caption = "Color Range 6 Low" default = rgb(84/255,15/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max7 caption = "Color Range 7 High" default = rgb(255/255,149/255,111/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min7 caption = "Color Range 7 Low" default = rgb(77/255,36/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max8 caption = "Color Range 8 High" default = rgb(255/255,252/255,125/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min8 caption = "Color Range 8 Low" default = rgb(95/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Bouquet 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Color Switch 8 ;-------------------------------------------------------------------- heading caption = " Color Switch 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endheading color param colorSwitch8Max1 caption = "Color Range 1 High" default = rgb(255/255,33/255,52/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min1 caption = "Color Range 1 Low" default = rgb(90/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max2 caption = "Color Range 2 High" default = rgb(61/255,136/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,82/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max3 caption = "Color Range 3 High" default = rgb(0/255,255/255,44/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min3 caption = "Color Range 3 Low" default = rgb(0/255,70/255,7/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max4 caption = "Color Range 4 High" default = rgb(255/255,131/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min4 caption = "Color Range 4 Low" default = rgb(105/255,40/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max5 caption = "Color Range 5 High" default = rgb(255/255,27/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min5 caption = "Color Range 5 Low" default = rgb(104/255,0/255,78/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max6 caption = "Color Range 6 High" default = rgb(168/255,87/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min6 caption = "Color Range 6 Low" default = rgb(35/255,0/255,58/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max7 caption = "Color Range 7 High" default = rgb(0/255,252/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min7 caption = "Color Range 7 Low" default = rgb(0/255,60/255,60/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,38/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min8 caption = "Color Range 8 Low" default = rgb(90/255,90/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Color Switch 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Evening Sky 8 ;-------------------------------------------------------------------- heading caption = " Evening Sky 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endheading color param eveningSky8Max1 caption = "Color Range 1 High" default = rgb(255/255,238/255,222/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min1 caption = "Color Range 1 Low" default = rgb(50/255,35/255,35/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max2 caption = "Color Range 2 High" default = rgb(255/255,226/255,85/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min2 caption = "Color Range 2 Low" default = rgb(85/255,54/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max3 caption = "Color Range 3 High" default = rgb(249/255,148/255,216/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min3 caption = "Color Range 3 Low" default = rgb(79/255,20/255,57/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max4 caption = "Color Range 4 High" default = rgb(159/255,159/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min4 caption = "Color Range 4 Low" default = rgb(22/255,16/255,54/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max5 caption = "Color Range 5 High" default = rgb(255/255,175/255,79/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min5 caption = "Color Range 5 Low" default = rgb(62/255,42/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max6 caption = "Color Range 6 High" default = rgb(124/255,190/255,251/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min6 caption = "Color Range 6 Low" default = rgb(13/255,40/255,62/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max7 caption = "Color Range 7 High" default = rgb(255/255,111/255,123/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min7 caption = "Color Range 7 Low" default = rgb(57/255,24/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max8 caption = "Color Range 8 High" default = rgb(111/255,255/255,245/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min8 caption = "Color Range 8 Low" default = rgb(0/255,60/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Evening Sky 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fantasia 8 ;-------------------------------------------------------------------- heading caption = " Fantasia 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endheading color param fantasia8Max1 caption = "Color Range 1 High" default = rgb(255/255,230/255,103/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min1 caption = "Color Range 1 Low" default = rgb(102/255,81/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max2 caption = "Color Range 2 High" default = rgb(230/255,78/255,208/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min2 caption = "Color Range 2 Low" default = rgb(104/255,0/255,52/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max3 caption = "Color Range 3 High" default = rgb(180/255,119/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min3 caption = "Color Range 3 Low" default = rgb(56/255,0/255,82/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max4 caption = "Color Range 4 High" default = rgb(0/255,228/255,150/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min4 caption = "Color Range 4 Low" default = rgb(0/255,50/255,30/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max5 caption = "Color Range 5 High" default = rgb(131/255,148/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min5 caption = "Color Range 5 Low" default = rgb(38/255,31/255,85/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max6 caption = "Color Range 6 High" default = rgb(255/255,182/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min6 caption = "Color Range 6 Low" default = rgb(76/255,40/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max7 caption = "Color Range 7 High" default = rgb(252/255,0/255,113/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min7 caption = "Color Range 7 Low" default = rgb(84/255,0/255,34/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max8 caption = "Color Range 8 High" default = rgb(0/255,232/255,249/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min8 caption = "Color Range 8 Low" default = rgb(0/255,64/255,78/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fantasia 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Flowering Orchard 8 ;-------------------------------------------------------------------- heading caption = " Flowering Orchard 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endheading color param floweringOrchard8Max1 caption = "Color Range 1 High" default = rgb(255/255,188/255,213/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min1 caption = "Color Range 1 Low" default = rgb(132/255,30/255,66/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max2 caption = "Color Range 2 High" default = rgb(240/255,135/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min2 caption = "Color Range 2 Low" default = rgb(70/255,0/255,59/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max3 caption = "Color Range 3 High" default = rgb(255/255,75/255,153/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min3 caption = "Color Range 3 Low" default = rgb(104/255,15/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max4 caption = "Color Range 4 High" default = rgb(71/255,213/255,119/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min4 caption = "Color Range 4 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max5 caption = "Color Range 5 High" default = rgb(255/255,102/255,209/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min5 caption = "Color Range 5 Low" default = rgb(116/255,10/255,86/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max6 caption = "Color Range 6 High" default = rgb(154/255,199/255,51/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min6 caption = "Color Range 6 Low" default = rgb(28/255,44/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max7 caption = "Color Range 7 High" default = rgb(255/255,162/255,228/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min7 caption = "Color Range 7 Low" default = rgb(110/255,0/255,55/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max8 caption = "Color Range 8 High" default = rgb(255/255,201/255,237/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min8 caption = "Color Range 8 Low" default = rgb(145/255,20/255,54/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Flowering Orchard 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Morning Sky 8 ;-------------------------------------------------------------------- heading caption = " Morning Sky 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endheading color param morningSky8Max1 caption = "Color Range 1 High" default = rgb(255/255,178/255,217/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min1 caption = "Color Range 1 Low" default = rgb(79/255,29/255,57/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max2 caption = "Color Range 2 High" default = rgb(107/255,246/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min2 caption = "Color Range 2 Low" default = rgb(13/255,70/255,75/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max3 caption = "Color Range 3 High" default = rgb(255/255,199/255,137/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min3 caption = "Color Range 3 Low" default = rgb(62/255,42/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max4 caption = "Color Range 4 High" default = rgb(241/255,245/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min4 caption = "Color Range 4 Low" default = rgb(16/255,24/255,46/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max5 caption = "Color Range 5 High" default = rgb(255/255,177/255,188/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min5 caption = "Color Range 5 Low" default = rgb(54/255,14/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max6 caption = "Color Range 6 High" default = rgb(248/255,236/255,236/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min6 caption = "Color Range 6 Low" default = rgb(49/255,38/255,35/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max7 caption = "Color Range 7 High" default = rgb(129/255,201/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min7 caption = "Color Range 7 Low" default = rgb(0/255,56/255,70/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,146/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min8 caption = "Color Range 8 Low" default = rgb(89/255,76/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Morning Sky 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Pastel 8 ;-------------------------------------------------------------------- heading caption = " Pastel 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endheading color param pastel8Max1 caption = "Color Range 1 High" default = rgb(147/255,255/255,193/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min1 caption = "Color Range 1 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max2 caption = "Color Range 2 High" default = rgb(147/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min2 caption = "Color Range 2 Low" default = rgb(0/255,48/255,48/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max3 caption = "Color Range 3 High" default = rgb(148/255,148/255,253/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min3 caption = "Color Range 3 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max4 caption = "Color Range 4 High" default = rgb(199/255,149/255,253/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min4 caption = "Color Range 4 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max5 caption = "Color Range 5 High" default = rgb(255/255,147/255,221/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min5 caption = "Color Range 5 Low" default = rgb(96/255,0/255,32/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max6 caption = "Color Range 6 High" default = rgb(254/255,148/255,148/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min6 caption = "Color Range 6 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max7 caption = "Color Range 7 High" default = rgb(255/255,202/255,147/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min7 caption = "Color Range 7 Low" default = rgb(160/255,16/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,147/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min8 caption = "Color Range 8 Low" default = rgb(152/255,64/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Pastel Rainbow 8 ;-------------------------------------------------------------------- heading caption = " Pastel Rainbow 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endheading color param pastelRainbow8Max1 caption = "Color Range 1 High" default = rgb(242/255,246/255,174/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min1 caption = "Color Range 1 Low" default = rgb(20/255,48/255,12/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max2 caption = "Color Range 2 High" default = rgb(182/255,242/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min2 caption = "Color Range 2 Low" default = rgb(20/255,44/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max3 caption = "Color Range 3 High" default = rgb(202/255,202/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min3 caption = "Color Range 3 Low" default = rgb(36/255,36/255,48/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max4 caption = "Color Range 4 High" default = rgb(255/255,170/255,170/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min4 caption = "Color Range 4 Low" default = rgb(89/255,0/255,24/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max5 caption = "Color Range 5 High" default = rgb(255/255,246/255,178/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min5 caption = "Color Range 5 Low" default = rgb(40/255,0/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max6 caption = "Color Range 6 High" default = rgb(255/255,238/255,206/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min6 caption = "Color Range 6 Low" default = rgb(52/255,16/255,40/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max7 caption = "Color Range 7 High" default = rgb(214/255,222/255,161/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min7 caption = "Color Range 7 Low" default = rgb(4/255,32/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max8 caption = "Color Range 8 High" default = rgb(255/255,230/255,246/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min8 caption = "Color Range 8 Low" default = rgb(70/255,50/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Pastel Rainbow 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Showtime 8 ;-------------------------------------------------------------------- heading caption = " Showtime 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endheading color param showtime8Max1 caption = "Color Range 1 High" default = rgb(241/255,53/255,82/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min1 caption = "Color Range 1 Low" default = rgb(88/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max2 caption = "Color Range 2 High" default = rgb(255/255,121/255,52/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min2 caption = "Color Range 2 Low" default = rgb(107/255,29/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max3 caption = "Color Range 3 High" default = rgb(253/255,168/255,67/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min3 caption = "Color Range 3 Low" default = rgb(97/255,42/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max4 caption = "Color Range 4 High" default = rgb(255/255,231/255,21/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min4 caption = "Color Range 4 Low" default = rgb(140/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max5 caption = "Color Range 5 High" default = rgb(58/255,219/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min5 caption = "Color Range 5 Low" default = rgb(0/255,36/255,83/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max6 caption = "Color Range 6 High" default = rgb(9/255,116/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min6 caption = "Color Range 6 Low" default = rgb(33/255,30/255,81/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max7 caption = "Color Range 7 High" default = rgb(105/255,71/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min7 caption = "Color Range 7 Low" default = rgb(36/255,0/255,76/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max8 caption = "Color Range 8 High" default = rgb(187/255,32/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min8 caption = "Color Range 8 Low" default = rgb(50/255,0/255,56/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Showtime 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Soleil 8 ;-------------------------------------------------------------------- heading caption = " Soleil 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endheading color param soleil8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,35/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min1 caption = "Color Range 1 Low" default = rgb(76/255,44/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max2 caption = "Color Range 2 High" default = rgb(255/255,209/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min2 caption = "Color Range 2 Low" default = rgb(59/255,24/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max3 caption = "Color Range 3 High" default = rgb(231/255,237/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min3 caption = "Color Range 3 Low" default = rgb(54/255,29/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max4 caption = "Color Range 4 High" default = rgb(255/255,141/255,49/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min4 caption = "Color Range 4 Low" default = rgb(92/255,32/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,156/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min5 caption = "Color Range 5 Low" default = rgb(76/255,44/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max6 caption = "Color Range 6 High" default = rgb(255/255,158/255,17/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min6 caption = "Color Range 6 Low" default = rgb(59/255,24/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,217/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min7 caption = "Color Range 7 Low" default = rgb(76/255,41/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max8 caption = "Color Range 8 High" default = rgb(255/255,184/255,53/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min8 caption = "Color Range 8 Low" default = rgb(76/255,29/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Soleil 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Chill 8 ;-------------------------------------------------------------------- heading caption = " Chill 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endheading color param chillMax1 caption = "Color Range 1 High" default = rgb(233/255,245/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMin1 caption = "Color Range 1 Low" default = rgb(0/255,21/255,60/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMax2 caption = "Color Range 2 High" default = rgb(182/255,201/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMin2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,76/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMax3 caption = "Color Range 3 High" default = rgb(0/255,34/255,136/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMin3 caption = "Color Range 3 Low" default = rgb(9/255,9/255,59/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMax4 caption = "Color Range 4 High" default = rgb(0/255,75/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMin4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,25/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMax5 caption = "Color Range 5 High" default = rgb(233/255,245/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMin5 caption = "Color Range 5 Low" default = rgb(0/255,21/255,60/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMax6 caption = "Color Range 6 High" default = rgb(182/255,201/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMin6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,76/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMax7 caption = "Color Range 7 High" default = rgb(0/255,34/255,136/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMin7 caption = "Color Range 7 Low" default = rgb(9/255,9/255,59/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMax8 caption = "Color Range 8 High" default = rgb(0/255,75/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam color param chillMin8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,25/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Chill 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cloud Nine 8 ;-------------------------------------------------------------------- heading caption = " Cloud Nine 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endheading color param cloudNineMax1 caption = "Color Range 1 High" default = rgb(255/255,255/255,173/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin1 caption = "Color Range 1 Low" default = rgb(143/255,60/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax2 caption = "Color Range 2 High" default = rgb(247/255,214/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin2 caption = "Color Range 2 Low" default = rgb(139/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax3 caption = "Color Range 3 High" default = rgb(212/255,255/255,249/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin3 caption = "Color Range 3 Low" default = rgb(0/255,53/255,20/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax4 caption = "Color Range 4 High" default = rgb(255/255,221/255,217/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin4 caption = "Color Range 4 Low" default = rgb(115/255,21/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax5 caption = "Color Range 5 High" default = rgb(255/255,255/255,173/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin5 caption = "Color Range 5 Low" default = rgb(140/255,63/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax6 caption = "Color Range 6 High" default = rgb(247/255,214/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin6 caption = "Color Range 6 Low" default = rgb(139/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax7 caption = "Color Range 7 High" default = rgb(212/255,255/255,249/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin7 caption = "Color Range 7 Low" default = rgb(0/255,53/255,20/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax8 caption = "Color Range 8 High" default = rgb(255/255,221/255,217/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin8 caption = "Color Range 8 Low" default = rgb(115/255,21/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cloud Nine 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for La Terra 8 ;-------------------------------------------------------------------- heading caption = " La Terra 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endheading color param laTerraMax1 caption = "Color Range 1 High" default = rgb(255/255,174/255,103/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin1 caption = "Color Range 1 Low" default = rgb(102/255,47/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax2 caption = "Color Range 2 High" default = rgb(255/255,242/255,39/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin2 caption = "Color Range 2 Low" default = rgb(100/255,58/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax3 caption = "Color Range 3 High" default = rgb(170/255,86/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin3 caption = "Color Range 3 Low" default = rgb(92/255,29/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax4 caption = "Color Range 4 High" default = rgb(190/255,118/255,13/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin4 caption = "Color Range 4 Low" default = rgb(84/255,41/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax5 caption = "Color Range 5 High" default = rgb(255/255,174/255,103/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin5 caption = "Color Range 5 Low" default = rgb(102/255,47/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax6 caption = "Color Range 6 High" default = rgb(255/255,242/255,39/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin6 caption = "Color Range 6 Low" default = rgb(100/255,58/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax7 caption = "Color Range 7 High" default = rgb(170/255,86/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin7 caption = "Color Range 7 Low" default = rgb(92/255,29/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax8 caption = "Color Range 8 High" default = rgb(190/255,118/255,13/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin8 caption = "Color Range 8 Low" default = rgb(84/255,41/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "La Terra 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Santa Fe 8 ;-------------------------------------------------------------------- heading caption = " Santa Fe 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endheading color param santaFe8Max1 caption = "Color Range 1 High" default = rgb(255/255,235/255,76/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min1 caption = "Color Range 1 Low" default = rgb(122/255,52/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max2 caption = "Color Range 2 High" default = rgb(0/255,229/255,222/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min2 caption = "Color Range 2 Low" default = rgb(0/255,48/255,51/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max3 caption = "Color Range 3 High" default = rgb(255/255,200/255,140/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min3 caption = "Color Range 3 Low" default = rgb(82/255,21/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max4 caption = "Color Range 4 High" default = rgb(255/255,157/255,82/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min4 caption = "Color Range 4 Low" default = rgb(130/255,0/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max5 caption = "Color Range 5 High" default = rgb(255/255,235/255,76/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min5 caption = "Color Range 5 Low" default = rgb(122/255,52/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max6 caption = "Color Range 6 High" default = rgb(0/255,229/255,222/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min6 caption = "Color Range 6 Low" default = rgb(0/255,48/255,51/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max7 caption = "Color Range 7 High" default = rgb(255/255,200/255,140/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min7 caption = "Color Range 7 Low" default = rgb(82/255,21/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max8 caption = "Color Range 8 High" default = rgb(255/255,157/255,82/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min8 caption = "Color Range 8 Low" default = rgb(130/255,0/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Santa Fe 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Spring 8 ;-------------------------------------------------------------------- heading caption = " Spring 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endheading color param spring8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,145/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Min1 caption = "Color Range 1 Low" default = rgb(110/255,65/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Max2 caption = "Color Range 2 High" default = rgb(215/255,182/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Min2 caption = "Color Range 2 Low" default = rgb(86/255,0/255,110/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Max3 caption = "Color Range 3 High" default = rgb(189/255,246/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Min3 caption = "Color Range 3 Low" default = rgb(0/255,51/255,54/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Max4 caption = "Color Range 4 High" default = rgb(255/255,181/255,237/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Min4 caption = "Color Range 4 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,145/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Min5 caption = "Color Range 5 Low" default = rgb(110/255,65/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Max6 caption = "Color Range 6 High" default = rgb(215/255,182/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Min6 caption = "Color Range 6 Low" default = rgb(86/255,0/255,110/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Max7 caption = "Color Range 7 High" default = rgb(189/255,246/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Min7 caption = "Color Range 7 Low" default = rgb(0/255,51/255,54/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Max8 caption = "Color Range 8 High" default = rgb(255/255,181/255,237/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam color param spring8Min8 caption = "Color Range 8 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Spring 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Summer 8 ;-------------------------------------------------------------------- heading caption = " Summer 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endheading color param summer8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Min1 caption = "Color Range 1 Low" default = rgb(64/255,32/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Max2 caption = "Color Range 2 High" default = rgb(255/255,64/255,64/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Min2 caption = "Color Range 2 Low" default = rgb(64/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Max3 caption = "Color Range 3 High" default = rgb(0/255,255/255,101/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Min3 caption = "Color Range 3 Low" default = rgb(0/255,62/255,22/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Max4 caption = "Color Range 4 High" default = rgb(64/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Min4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,64/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Min5 caption = "Color Range 5 Low" default = rgb(64/255,32/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Max6 caption = "Color Range 6 High" default = rgb(255/255,64/255,64/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Min6 caption = "Color Range 6 Low" default = rgb(64/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Max7 caption = "Color Range 7 High" default = rgb(0/255,255/255,101/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Min7 caption = "Color Range 7 Low" default = rgb(0/255,62/255,22/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Max8 caption = "Color Range 8 High" default = rgb(64/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam color param summer8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Summer 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fall 8 ;-------------------------------------------------------------------- heading caption = " Fall 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endheading color param fall8Max1 caption = "Color Range 1 High" default = rgb(255/255,235/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Min1 caption = "Color Range 1 Low" default = rgb(136/255,46/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Max2 caption = "Color Range 2 High" default = rgb(255/255,61/255,32/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Min2 caption = "Color Range 2 Low" default = rgb(96/255,26/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Max3 caption = "Color Range 3 High" default = rgb(255/255,184/255,26/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Min3 caption = "Color Range 3 Low" default = rgb(86/255,24/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Max4 caption = "Color Range 4 High" default = rgb(255/255,107/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Min4 caption = "Color Range 4 Low" default = rgb(112/255,29/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Max5 caption = "Color Range 5 High" default = rgb(255/255,235/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Min5 caption = "Color Range 5 Low" default = rgb(136/255,46/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Max6 caption = "Color Range 6 High" default = rgb(255/255,61/255,32/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Min6 caption = "Color Range 6 Low" default = rgb(96/255,26/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Max7 caption = "Color Range 7 High" default = rgb(255/255,184/255,26/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Min7 caption = "Color Range 7 Low" default = rgb(86/255,24/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Max8 caption = "Color Range 8 High" default = rgb(255/255,107/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam color param fall8Min8 caption = "Color Range 8 Low" default = rgb(112/255,29/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fall 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Winter 8 ;-------------------------------------------------------------------- heading caption = " Winter 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endheading color param winter8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Min1 caption = "Color Range 1 Low" default = rgb(65/255,65/255,87/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Max2 caption = "Color Range 2 High" default = rgb(163/255,186/255,209/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Min2 caption = "Color Range 2 Low" default = rgb(35/255,35/255,61/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Max3 caption = "Color Range 3 High" default = rgb(173/255,166/255,157/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Min3 caption = "Color Range 3 Low" default = rgb(78/255,65/255,52/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Max4 caption = "Color Range 4 High" default = rgb(113/255,118/255,140/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Min4 caption = "Color Range 4 Low" default = rgb(20/255,32/255,68/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Min5 caption = "Color Range 5 Low" default = rgb(65/255,65/255,87/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Max6 caption = "Color Range 6 High" default = rgb(163/255,186/255,209/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Min6 caption = "Color Range 6 Low" default = rgb(35/255,35/255,61/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Max7 caption = "Color Range 7 High" default = rgb(173/255,166/255,157/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Min7 caption = "Color Range 7 Low" default = rgb(78/255,65/255,52/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Max8 caption = "Color Range 8 High" default = rgb(113/255,118/255,140/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam color param winter8Min8 caption = "Color Range 8 Low" default = rgb(20/255,32/255,68/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Winter 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Mojave 8 ;-------------------------------------------------------------------- heading caption = " Mojave 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endheading color param mojave8Max1 caption = "Color Range 1 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min1 caption = "Color Range 1 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max2 caption = "Color Range 2 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min2 caption = "Color Range 2 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max3 caption = "Color Range 3 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min3 caption = "Color Range 3 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max4 caption = "Color Range 4 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min4 caption = "Color Range 4 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max5 caption = "Color Range 5 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min5 caption = "Color Range 5 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max6 caption = "Color Range 6 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min6 caption = "Color Range 6 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max7 caption = "Color Range 7 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min7 caption = "Color Range 7 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max8 caption = "Color Range 8 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min8 caption = "Color Range 8 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Mojave 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green 8 ;-------------------------------------------------------------------- heading caption = " Gold/Green 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endheading color param goldGreen8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min2 caption = "Color Range 2 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min4 caption = "Color Range 4 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max5 caption = "Color Range 5 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min5 caption = "Color Range 5 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max6 caption = "Color Range 6 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min6 caption = "Color Range 6 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max7 caption = "Color Range 7 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min7 caption = "Color Range 7 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max8 caption = "Color Range 8 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min8 caption = "Color Range 8 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green Alt 8 ;-------------------------------------------------------------------- heading caption = " Gold/Green Alt 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endheading color param goldGreenAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max2 caption = "Color Range 2 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min2 caption = "Color Range 2 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max4 caption = "Color Range 4 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min4 caption = "Color Range 4 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min5 caption = "Color Range 5 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max6 caption = "Color Range 6 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min6 caption = "Color Range 6 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min7 caption = "Color Range 7 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max8 caption = "Color Range 8 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min8 caption = "Color Range 8 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Silver 8 ;-------------------------------------------------------------------- heading caption = " Gold/Silver 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endheading color param goldSilver8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min2 caption = "Color Range 2 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min4 caption = "Color Range 4 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min5 caption = "Color Range 5 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min6 caption = "Color Range 6 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min7 caption = "Color Range 7 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min8 caption = "Color Range 8 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Silver Alt 8 ;-------------------------------------------------------------------- heading caption = " Gold/Silver Alt 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endheading color param goldSilverAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min2 caption = "Color Range 2 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min4 caption = "Color Range 4 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min5 caption = "Color Range 5 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min6 caption = "Color Range 6 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min7 caption = "Color Range 7 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min8 caption = "Color Range 8 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Silver Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow 8 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endheading color param purpleYellow8Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max2 caption = "Color Range 2 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min2 caption = "Color Range 2 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max3 caption = "Color Range 3 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min3 caption = "Color Range 3 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max4 caption = "Color Range 4 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min4 caption = "Color Range 4 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min5 caption = "Color Range 5 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min6 caption = "Color Range 6 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min7 caption = "Color Range 7 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min8 caption = "Color Range 8 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow Alt 8 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow Alt 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endheading color param purpleYellowAlt8Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max3 caption = "Color Range 3 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min3 caption = "Color Range 3 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min4 caption = "Color Range 4 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max5 caption = "Color Range 5 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min5 caption = "Color Range 5 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min6 caption = "Color Range 6 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max7 caption = "Color Range 7 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min7 caption = "Color Range 7 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min8 caption = "Color Range 8 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Silver/Blue 8 ;-------------------------------------------------------------------- heading caption = " Silver/Blue 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endheading color param silverBlue8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min1 caption = "Color Range 1 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min2 caption = "Color Range 2 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min3 caption = "Color Range 3 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min4 caption = "Color Range 4 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max5 caption = "Color Range 5 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min5 caption = "Color Range 5 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max6 caption = "Color Range 6 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max7 caption = "Color Range 7 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min7 caption = "Color Range 7 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max8 caption = "Color Range 8 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Silver/Blue Alt 8 ;-------------------------------------------------------------------- heading caption = " Silver/Blue Alt 8 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endheading color param silverBlueAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min1 caption = "Color Range 1 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max2 caption = "Color Range 2 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min3 caption = "Color Range 3 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max4 caption = "Color Range 4 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min5 caption = "Color Range 5 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max6 caption = "Color Range 6 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min7 caption = "Color Range 7 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max8 caption = "Color Range 8 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Silver/Blue Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fourth of July 3 ;-------------------------------------------------------------------- heading caption = " Fourth of July 3 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fourth of July 3") endheading color param fourthOfJuly3Max1 caption = "Color Range 1 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min1 caption = "Color Range 1 Low" default = rgb(128/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Max2 caption = "Color Range 2 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,128/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min3 caption = "Color Range 3 Low" default = rgb(128/255,128/255,128/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Fourth of July 3") endparam ;-------------------------------------------------------------------- ; Color Defaults for Blue/Silver 2 ;-------------------------------------------------------------------- heading caption = " Blue/Silver 2 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/Silver 2") endheading color param blueSilver2Max1 caption = "Color Range 1 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Min1 caption = "Color Range 1 Low" default = rgb(0/255,0/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Min2 caption = "Color Range 2 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/Silver 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Blue/White 2 ;-------------------------------------------------------------------- heading caption = " Blue/White 2 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/White 2") endheading color param blueWhite2Max1 caption = "Color Range 1 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Min1 caption = "Color Range 1 Low" default = rgb(0/255,0/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Min2 caption = "Color Range 2 Low" default = rgb(124/255,124/255,124/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Blue/White 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cyan/Magenta 2 ;-------------------------------------------------------------------- heading caption = " Cyan/Magenta 2 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Magenta 2") endheading color param cyanMagenta2Max1 caption = "Color Range 1 High" default = rgb(128/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Min1 caption = "Color Range 1 Low" default = rgb(0/255,64/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Max2 caption = "Color Range 2 High" default = rgb(255/255,128/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Min2 caption = "Color Range 2 Low" default = rgb(64/255,0/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Magenta 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cyan/Yellow 2 ;-------------------------------------------------------------------- heading caption = " Cyan/Yellow 2 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Yellow 2") endheading color param cyanYellow2Max1 caption = "Color Range 1 High" default = rgb(128/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Min1 caption = "Color Range 1 Low" default = rgb(0/255,64/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Cyan/Yellow 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green 2 ;-------------------------------------------------------------------- heading caption = " Gold/Green 2 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 2") endheading color param goldGreen2Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Max2 caption = "Color Range 2 High" default = rgb(0/255,129/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Min2 caption = "Color Range 2 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Gold/Green 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow 2 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow 2 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 2") endheading color param purpleYellow2Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Purple/Yellow 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Red/Tan 2 ;-------------------------------------------------------------------- heading caption = " Red/Tan 2 Settings" visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Red/Tan 2") endheading color param redTan2Max1 caption = "Color Range 1 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Min1 caption = "Color Range 1 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Max2 caption = "Color Range 2 High" default = rgb(255/255,208/255,152/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Min2 caption = "Color Range 2 Low" default = rgb(128/255,108/255,60/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorMode == "Custom") && (@customize && @colorPreset == "Red/Tan 2") endparam } kcc-CarlsonOrbitTraps { ; ; All of the rendering methods contained in this coloring method ; were originally developed by Paul Carlson for Fractint and ; Ultra Fractal. They have been converted to UF3 Direct Coloring ; format by Ken Childress from the Ultra Fractal versions. They ; have been enhanced to allow coloring modes and texturing options ; that were not present in the original versions. ; global: color colorMap [24, 2] int ranges = 8 int offset = 0 if (@colorPreset == "Gradient") ; Use the gradient for the color ranges. ranges = @colorRanges offset = 0 elseif (@colorPreset == "Custom") ; User specified custom range. ; Initial values by Toby Marshall. colorMap [0,0] = @colorMax1, colorMap [0,1] = @colorMin1 colorMap [1,0] = @colorMax2, colorMap [1,1] = @colorMin2 colorMap [2,0] = @colorMax3, colorMap [2,1] = @colorMin3 colorMap [3,0] = @colorMax4, colorMap [3,1] = @colorMin4 colorMap [4,0] = @colorMax5, colorMap [4,1] = @colorMin5 colorMap [5,0] = @colorMax6, colorMap [5,1] = @colorMin6 colorMap [6,0] = @colorMax7, colorMap [6,1] = @colorMin7 colorMap [7,0] = @colorMax8, colorMap [7,1] = @colorMin8 colorMap [8,0] = @customMax9, colorMap [8,1] = @customMin9 colorMap [9,0] = @customMax10, colorMap [9,1] = @customMin10 colorMap [10,0] = @customMax11, colorMap [10,1] = @customMin11 colorMap [11,0] = @customMax12, colorMap [11,1] = @customMin12 colorMap [12,0] = @customMax13, colorMap [12,1] = @customMin13 colorMap [13,0] = @customMax14, colorMap [13,1] = @customMin14 colorMap [14,0] = @customMax15, colorMap [14,1] = @customMin15 colorMap [15,0] = @customMax16, colorMap [15,1] = @customMin16 colorMap [16,0] = @customMax17, colorMap [16,1] = @customMin17 colorMap [17,0] = @customMax18, colorMap [17,1] = @customMin18 colorMap [18,0] = @customMax19, colorMap [18,1] = @customMin19 colorMap [19,0] = @customMax20, colorMap [19,1] = @customMin20 colorMap [20,0] = @customMax21, colorMap [20,1] = @customMin21 colorMap [21,0] = @customMax22, colorMap [21,1] = @customMin22 colorMap [22,0] = @customMax23, colorMap [22,1] = @customMin23 colorMap [23,0] = @customMax24, colorMap [23,1] = @customMin24 ranges = @colorRanges offset = @colorOffset elseif (@colorPreset == "Generate") ; Compute the color ranges using the gradient. ranges = 0 offset = @colorOffset while ranges < @numRanges color gradientColor = gradient(ranges/@numRanges) colorMap [ranges,0] = hsl(hue(gradientColor), sat(gradientColor), @luminanceUpper) colorMap [ranges,1] = hsl(hue(gradientColor), sat(gradientColor), @luminanceLower) ranges = ranges + 1 endwhile elseif (@colorPreset == "Default") ; colorMap [0,0] = @defaultMax1, colorMap [0,1] = @defaultMin1 colorMap [1,0] = @defaultMax2, colorMap [1,1] = @defaultMin2 colorMap [2,0] = @defaultMax3, colorMap [2,1] = @defaultMin3 colorMap [3,0] = @defaultMax4, colorMap [3,1] = @defaultMin4 colorMap [4,0] = @defaultMax5, colorMap [4,1] = @defaultMin5 colorMap [5,0] = @defaultMax6, colorMap [5,1] = @defaultMin6 colorMap [6,0] = @defaultMax7, colorMap [6,1] = @defaultMin7 colorMap [7,0] = @defaultMax8, colorMap [7,1] = @defaultMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Default 12") ; Created by Toby Marshall. colorMap [0,0] = @default12Max1, colorMap [0,1] = @default12Min1 colorMap [1,0] = @default12Max2, colorMap [1,1] = @default12Min2 colorMap [2,0] = @default12Max3, colorMap [2,1] = @default12Min3 colorMap [3,0] = @default12Max4, colorMap [3,1] = @default12Min4 colorMap [4,0] = @default12Max5, colorMap [4,1] = @default12Min5 colorMap [5,0] = @default12Max6, colorMap [5,1] = @default12Min6 colorMap [6,0] = @default12Max7, colorMap [6,1] = @default12Min7 colorMap [7,0] = @default12Max8, colorMap [7,1] = @default12Min8 colorMap [8,0] = @default12Max9, colorMap [8,1] = @default12Min9 colorMap [9,0] = @default12Max10, colorMap [9,1] = @default12Min10 colorMap [10,0] = @default12Max11, colorMap [10,1] = @default12Min11 colorMap [11,0] = @default12Max12, colorMap [11,1] = @default12Min12 ranges = 12 offset = @colorOffset elseif (@colorPreset == "Default 16") ; Created by Toby Marshall. colorMap [0,0] = @default16Max1, colorMap [0,1] = @default16Min1 colorMap [1,0] = @default16Max2, colorMap [1,1] = @default16Min2 colorMap [2,0] = @default16Max3, colorMap [2,1] = @default16Min3 colorMap [3,0] = @default16Max4, colorMap [3,1] = @default16Min4 colorMap [4,0] = @default16Max5, colorMap [4,1] = @default16Min5 colorMap [5,0] = @default16Max6, colorMap [5,1] = @default16Min6 colorMap [6,0] = @default16Max7, colorMap [6,1] = @default16Min7 colorMap [7,0] = @default16Max8, colorMap [7,1] = @default16Min8 colorMap [8,0] = @default16Max9, colorMap [8,1] = @default16Min9 colorMap [9,0] = @default16Max10, colorMap [9,1] = @default16Min10 colorMap [10,0] = @default16Max11, colorMap [10,1] = @default16Min11 colorMap [11,0] = @default16Max12, colorMap [11,1] = @default16Min12 colorMap [12,0] = @default16Max13, colorMap [12,1] = @default16Min13 colorMap [13,0] = @default16Max14, colorMap [13,1] = @default16Min14 colorMap [14,0] = @default16Max15, colorMap [14,1] = @default16Min15 colorMap [15,0] = @default16Max16, colorMap [15,1] = @default16Min16 ranges = 16 offset = @colorOffset elseif (@colorPreset == "Default 24") ; Created by Toby Marshall. colorMap [0,0] = @default24Max1, colorMap [0,1] = @default24Min1 colorMap [1,0] = @default24Max2, colorMap [1,1] = @default24Min2 colorMap [2,0] = @default24Max3, colorMap [2,1] = @default24Min3 colorMap [3,0] = @default24Max4, colorMap [3,1] = @default24Min4 colorMap [4,0] = @default24Max5, colorMap [4,1] = @default24Min5 colorMap [5,0] = @default24Max6, colorMap [5,1] = @default24Min6 colorMap [6,0] = @default24Max7, colorMap [6,1] = @default24Min7 colorMap [7,0] = @default24Max8, colorMap [7,1] = @default24Min8 colorMap [8,0] = @default24Max9, colorMap [8,1] = @default24Min9 colorMap [9,0] = @default24Max10, colorMap [9,1] = @default24Min10 colorMap [10,0] = @default24Max11, colorMap [10,1] = @default24Min11 colorMap [11,0] = @default24Max12, colorMap [11,1] = @default24Min12 colorMap [12,0] = @default24Max13, colorMap [12,1] = @default24Min13 colorMap [13,0] = @default24Max14, colorMap [13,1] = @default24Min14 colorMap [14,0] = @default24Max15, colorMap [14,1] = @default24Min15 colorMap [15,0] = @default24Max16, colorMap [15,1] = @default24Min16 colorMap [16,0] = @default24Max17, colorMap [16,1] = @default24Min17 colorMap [17,0] = @default24Max18, colorMap [17,1] = @default24Min18 colorMap [18,0] = @default24Max19, colorMap [18,1] = @default24Min19 colorMap [19,0] = @default24Max20, colorMap [19,1] = @default24Min20 colorMap [20,0] = @default24Max21, colorMap [20,1] = @default24Min21 colorMap [21,0] = @default24Max22, colorMap [21,1] = @default24Min22 colorMap [22,0] = @default24Max23, colorMap [22,1] = @default24Min23 colorMap [23,0] = @default24Max24, colorMap [23,1] = @default24Min24 ranges = 24 offset = @colorOffset elseif (@colorPreset == "Color Wheel 12") ; Created by Toby Marshall. colorMap [0,0] = @colorWheel12Max1, colorMap [0,1] = @colorWheel12Min1 colorMap [1,0] = @colorWheel12Max2, colorMap [1,1] = @colorWheel12Min2 colorMap [2,0] = @colorWheel12Max3, colorMap [2,1] = @colorWheel12Min3 colorMap [3,0] = @colorWheel12Max4, colorMap [3,1] = @colorWheel12Min4 colorMap [4,0] = @colorWheel12Max5, colorMap [4,1] = @colorWheel12Min5 colorMap [5,0] = @colorWheel12Max6, colorMap [5,1] = @colorWheel12Min6 colorMap [6,0] = @colorWheel12Max7, colorMap [6,1] = @colorWheel12Min7 colorMap [7,0] = @colorWheel12Max8, colorMap [7,1] = @colorWheel12Min8 colorMap [8,0] = @colorWheel12Max9, colorMap [8,1] = @colorWheel12Min9 colorMap [9,0] = @colorWheel12Max10, colorMap [9,1] = @colorWheel12Min10 colorMap [10,0] = @colorWheel12Max11, colorMap [10,1] = @colorWheel12Min11 colorMap [11,0] = @colorWheel12Max12, colorMap [11,1] = @colorWheel12Min12 ranges = 12 offset = @colorOffset elseif (@colorPreset == "Alhambra 8") ; Created by Toby Marshall. colorMap [0,0] = @alhambra8Max1, colorMap [0,1] = @alhambra8Min1 colorMap [1,0] = @alhambra8Max2, colorMap [1,1] = @alhambra8Min2 colorMap [2,0] = @alhambra8Max3, colorMap [2,1] = @alhambra8Min3 colorMap [3,0] = @alhambra8Max4, colorMap [3,1] = @alhambra8Min4 colorMap [4,0] = @alhambra8Max5, colorMap [4,1] = @alhambra8Min5 colorMap [5,0] = @alhambra8Max6, colorMap [5,1] = @alhambra8Min6 colorMap [6,0] = @alhambra8Max7, colorMap [6,1] = @alhambra8Min7 colorMap [7,0] = @alhambra8Max8, colorMap [7,1] = @alhambra8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Belvedere 8") ; Created by Toby Marshall. colorMap [0,0] = @belvedere8Max1, colorMap [0,1] = @belvedere8Min1 colorMap [1,0] = @belvedere8Max2, colorMap [1,1] = @belvedere8Min2 colorMap [2,0] = @belvedere8Max3, colorMap [2,1] = @belvedere8Min3 colorMap [3,0] = @belvedere8Max4, colorMap [3,1] = @belvedere8Min4 colorMap [4,0] = @belvedere8Max5, colorMap [4,1] = @belvedere8Min5 colorMap [5,0] = @belvedere8Max6, colorMap [5,1] = @belvedere8Min6 colorMap [6,0] = @belvedere8Max7, colorMap [6,1] = @belvedere8Min7 colorMap [7,0] = @belvedere8Max8, colorMap [7,1] = @belvedere8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Bouquet 8") ; Created by Toby Marshall. colorMap [0,0] = @bouquet8Max1, colorMap [0,1] = @bouquet8Min1 colorMap [1,0] = @bouquet8Max2, colorMap [1,1] = @bouquet8Min2 colorMap [2,0] = @bouquet8Max3, colorMap [2,1] = @bouquet8Min3 colorMap [3,0] = @bouquet8Max4, colorMap [3,1] = @bouquet8Min4 colorMap [4,0] = @bouquet8Max5, colorMap [4,1] = @bouquet8Min5 colorMap [5,0] = @bouquet8Max6, colorMap [5,1] = @bouquet8Min6 colorMap [6,0] = @bouquet8Max7, colorMap [6,1] = @bouquet8Min7 colorMap [7,0] = @bouquet8Max8, colorMap [7,1] = @bouquet8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Color Switch 8") ; Created by Toby Marshall. colorMap [0,0] = @colorSwitch8Max1, colorMap [0,1] = @colorSwitch8Min1 colorMap [1,0] = @colorSwitch8Max2, colorMap [1,1] = @colorSwitch8Min2 colorMap [2,0] = @colorSwitch8Max3, colorMap [2,1] = @colorSwitch8Min3 colorMap [3,0] = @colorSwitch8Max4, colorMap [3,1] = @colorSwitch8Min4 colorMap [4,0] = @colorSwitch8Max5, colorMap [4,1] = @colorSwitch8Min5 colorMap [5,0] = @colorSwitch8Max6, colorMap [5,1] = @colorSwitch8Min6 colorMap [6,0] = @colorSwitch8Max7, colorMap [6,1] = @colorSwitch8Min7 colorMap [7,0] = @colorSwitch8Max8, colorMap [7,1] = @colorSwitch8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Evening Sky 8") ; Created by Toby Marshall. colorMap [0,0] = @eveningSky8Max1, colorMap [0,1] = @eveningSky8Min1 colorMap [1,0] = @eveningSky8Max2, colorMap [1,1] = @eveningSky8Min2 colorMap [2,0] = @eveningSky8Max3, colorMap [2,1] = @eveningSky8Min3 colorMap [3,0] = @eveningSky8Max4, colorMap [3,1] = @eveningSky8Min4 colorMap [4,0] = @eveningSky8Max5, colorMap [4,1] = @eveningSky8Min5 colorMap [5,0] = @eveningSky8Max6, colorMap [5,1] = @eveningSky8Min6 colorMap [6,0] = @eveningSky8Max7, colorMap [6,1] = @eveningSky8Min7 colorMap [7,0] = @eveningSky8Max8, colorMap [7,1] = @eveningSky8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fantasia 8") ; Created by Toby Marshall. colorMap [0,0] = @fantasia8Max1, colorMap [0,1] = @fantasia8Min1 colorMap [1,0] = @fantasia8Max2, colorMap [1,1] = @fantasia8Min2 colorMap [2,0] = @fantasia8Max3, colorMap [2,1] = @fantasia8Min3 colorMap [3,0] = @fantasia8Max4, colorMap [3,1] = @fantasia8Min4 colorMap [4,0] = @fantasia8Max5, colorMap [4,1] = @fantasia8Min5 colorMap [5,0] = @fantasia8Max6, colorMap [5,1] = @fantasia8Min6 colorMap [6,0] = @fantasia8Max7, colorMap [6,1] = @fantasia8Min7 colorMap [7,0] = @fantasia8Max8, colorMap [7,1] = @fantasia8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Flowering Orchard 8") ; Created by Toby Marshall. colorMap [0,0] = @floweringOrchard8Max1, colorMap [0,1] = @floweringOrchard8Min1 colorMap [1,0] = @floweringOrchard8Max2, colorMap [1,1] = @floweringOrchard8Min2 colorMap [2,0] = @floweringOrchard8Max3, colorMap [2,1] = @floweringOrchard8Min3 colorMap [3,0] = @floweringOrchard8Max4, colorMap [3,1] = @floweringOrchard8Min4 colorMap [4,0] = @floweringOrchard8Max5, colorMap [4,1] = @floweringOrchard8Min5 colorMap [5,0] = @floweringOrchard8Max6, colorMap [5,1] = @floweringOrchard8Min6 colorMap [6,0] = @floweringOrchard8Max7, colorMap [6,1] = @floweringOrchard8Min7 colorMap [7,0] = @floweringOrchard8Max8, colorMap [7,1] = @floweringOrchard8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Morning Sky 8") ; Created by Toby Marshall. colorMap [0,0] = @morningSky8Max1, colorMap [0,1] = @morningSky8Min1 colorMap [1,0] = @morningSky8Max2, colorMap [1,1] = @morningSky8Min2 colorMap [2,0] = @morningSky8Max3, colorMap [2,1] = @morningSky8Min3 colorMap [3,0] = @morningSky8Max4, colorMap [3,1] = @morningSky8Min4 colorMap [4,0] = @morningSky8Max5, colorMap [4,1] = @morningSky8Min5 colorMap [5,0] = @morningSky8Max6, colorMap [5,1] = @morningSky8Min6 colorMap [6,0] = @morningSky8Max7, colorMap [6,1] = @morningSky8Min7 colorMap [7,0] = @morningSky8Max8, colorMap [7,1] = @morningSky8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Pastel 8") ; colorMap [0,0] = @pastel8Max1, colorMap [0,1] = @pastel8Min1 colorMap [1,0] = @pastel8Max2, colorMap [1,1] = @pastel8Min2 colorMap [2,0] = @pastel8Max3, colorMap [2,1] = @pastel8Min3 colorMap [3,0] = @pastel8Max4, colorMap [3,1] = @pastel8Min4 colorMap [4,0] = @pastel8Max5, colorMap [4,1] = @pastel8Min5 colorMap [5,0] = @pastel8Max6, colorMap [5,1] = @pastel8Min6 colorMap [6,0] = @pastel8Max7, colorMap [6,1] = @pastel8Min7 colorMap [7,0] = @pastel8Max8, colorMap [7,1] = @pastel8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Pastel Rainbow 8") ; Created by Angela Wilczynski. colorMap [0,0] = @pastelRainbow8Max1, colorMap [0,1] = @pastelRainbow8Min1 colorMap [1,0] = @pastelRainbow8Max2, colorMap [1,1] = @pastelRainbow8Min2 colorMap [2,0] = @pastelRainbow8Max3, colorMap [2,1] = @pastelRainbow8Min3 colorMap [3,0] = @pastelRainbow8Max4, colorMap [3,1] = @pastelRainbow8Min4 colorMap [4,0] = @pastelRainbow8Max5, colorMap [4,1] = @pastelRainbow8Min5 colorMap [5,0] = @pastelRainbow8Max6, colorMap [5,1] = @pastelRainbow8Min6 colorMap [6,0] = @pastelRainbow8Max7, colorMap [6,1] = @pastelRainbow8Min7 colorMap [7,0] = @pastelRainbow8Max8, colorMap [7,1] = @pastelRainbow8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Showtime 8") ; Created by Toby Marshall. colorMap [0,0] = @showtime8Max1, colorMap [0,1] = @showtime8Min1 colorMap [1,0] = @showtime8Max2, colorMap [1,1] = @showtime8Min2 colorMap [2,0] = @showtime8Max3, colorMap [2,1] = @showtime8Min3 colorMap [3,0] = @showtime8Max4, colorMap [3,1] = @showtime8Min4 colorMap [4,0] = @showtime8Max5, colorMap [4,1] = @showtime8Min5 colorMap [5,0] = @showtime8Max6, colorMap [5,1] = @showtime8Min6 colorMap [6,0] = @showtime8Max7, colorMap [6,1] = @showtime8Min7 colorMap [7,0] = @showtime8Max8, colorMap [7,1] = @showtime8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Soleil 8") ; Created by Toby Marshall. colorMap [0,0] = @soleil8Max1, colorMap [0,1] = @soleil8Min1 colorMap [1,0] = @soleil8Max2, colorMap [1,1] = @soleil8Min2 colorMap [2,0] = @soleil8Max3, colorMap [2,1] = @soleil8Min3 colorMap [3,0] = @soleil8Max4, colorMap [3,1] = @soleil8Min4 colorMap [4,0] = @soleil8Max5, colorMap [4,1] = @soleil8Min5 colorMap [5,0] = @soleil8Max6, colorMap [5,1] = @soleil8Min6 colorMap [6,0] = @soleil8Max7, colorMap [6,1] = @soleil8Min7 colorMap [7,0] = @soleil8Max8, colorMap [7,1] = @soleil8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Chill 8") ; Created by Toby Marshall. colorMap [0,0] = @chillMax1, colorMap [0,1] = @chillMin1 colorMap [1,0] = @chillMax2, colorMap [1,1] = @chillMin2 colorMap [2,0] = @chillMax3, colorMap [2,1] = @chillMin3 colorMap [3,0] = @chillMax4, colorMap [3,1] = @chillMin4 colorMap [4,0] = @chillMax5, colorMap [4,1] = @chillMin5 colorMap [5,0] = @chillMax6, colorMap [5,1] = @chillMin6 colorMap [6,0] = @chillMax7, colorMap [6,1] = @chillMin7 colorMap [7,0] = @chillMax8, colorMap [7,1] = @chillMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Cloud Nine 8") ; Created by Toby Marshall. colorMap [0,0] = @cloudNineMax1, colorMap [0,1] = @cloudNineMin1 colorMap [1,0] = @cloudNineMax2, colorMap [1,1] = @cloudNineMin2 colorMap [2,0] = @cloudNineMax3, colorMap [2,1] = @cloudNineMin3 colorMap [3,0] = @cloudNineMax4, colorMap [3,1] = @cloudNineMin4 colorMap [4,0] = @cloudNineMax5, colorMap [4,1] = @cloudNineMin5 colorMap [5,0] = @cloudNineMax6, colorMap [5,1] = @cloudNineMin6 colorMap [6,0] = @cloudNineMax7, colorMap [6,1] = @cloudNineMin7 colorMap [7,0] = @cloudNineMax8, colorMap [7,1] = @cloudNineMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "La Terra 8") ; Created by Toby Marshall. colorMap [0,0] = @laTerraMax1, colorMap [0,1] = @laTerraMin1 colorMap [1,0] = @laTerraMax2, colorMap [1,1] = @laTerraMin2 colorMap [2,0] = @laTerraMax3, colorMap [2,1] = @laTerraMin3 colorMap [3,0] = @laTerraMax4, colorMap [3,1] = @laTerraMin4 colorMap [4,0] = @laTerraMax5, colorMap [4,1] = @laTerraMin5 colorMap [5,0] = @laTerraMax6, colorMap [5,1] = @laTerraMin6 colorMap [6,0] = @laTerraMax7, colorMap [6,1] = @laTerraMin7 colorMap [7,0] = @laTerraMax8, colorMap [7,1] = @laTerraMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Santa Fe 8") ; Created by Toby Marshall. colorMap [0,0] = @santaFe8Max1, colorMap [0,1] = @santaFe8Min1 colorMap [1,0] = @santaFe8Max2, colorMap [1,1] = @santaFe8Min2 colorMap [2,0] = @santaFe8Max3, colorMap [2,1] = @santaFe8Min3 colorMap [3,0] = @santaFe8Max4, colorMap [3,1] = @santaFe8Min4 colorMap [4,0] = @santaFe8Max5, colorMap [4,1] = @santaFe8Min5 colorMap [5,0] = @santaFe8Max6, colorMap [5,1] = @santaFe8Min6 colorMap [6,0] = @santaFe8Max7, colorMap [6,1] = @santaFe8Min7 colorMap [7,0] = @santaFe8Max8, colorMap [7,1] = @santaFe8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Spring 8") ; Created by Toby Marshall. colorMap [0,0] = @spring8Max1, colorMap [0,1] = @spring8Min1 colorMap [1,0] = @spring8Max2, colorMap [1,1] = @spring8Min2 colorMap [2,0] = @spring8Max3, colorMap [2,1] = @spring8Min3 colorMap [3,0] = @spring8Max4, colorMap [3,1] = @spring8Min4 colorMap [4,0] = @spring8Max5, colorMap [4,1] = @spring8Min5 colorMap [5,0] = @spring8Max6, colorMap [5,1] = @spring8Min6 colorMap [6,0] = @spring8Max7, colorMap [6,1] = @spring8Min7 colorMap [7,0] = @spring8Max8, colorMap [7,1] = @spring8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Summer 8") ; Created by Toby Marshall. colorMap [0,0] = @summer8Max1, colorMap [0,1] = @summer8Min1 colorMap [1,0] = @summer8Max2, colorMap [1,1] = @summer8Min2 colorMap [2,0] = @summer8Max3, colorMap [2,1] = @summer8Min3 colorMap [3,0] = @summer8Max4, colorMap [3,1] = @summer8Min4 colorMap [4,0] = @summer8Max5, colorMap [4,1] = @summer8Min5 colorMap [5,0] = @summer8Max6, colorMap [5,1] = @summer8Min6 colorMap [6,0] = @summer8Max7, colorMap [6,1] = @summer8Min7 colorMap [7,0] = @summer8Max8, colorMap [7,1] = @summer8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fall 8") ; Created by Toby Marshall. colorMap [0,0] = @fall8Max1, colorMap [0,1] = @fall8Min1 colorMap [1,0] = @fall8Max2, colorMap [1,1] = @fall8Min2 colorMap [2,0] = @fall8Max3, colorMap [2,1] = @fall8Min3 colorMap [3,0] = @fall8Max4, colorMap [3,1] = @fall8Min4 colorMap [4,0] = @fall8Max5, colorMap [4,1] = @fall8Min5 colorMap [5,0] = @fall8Max6, colorMap [5,1] = @fall8Min6 colorMap [6,0] = @fall8Max7, colorMap [6,1] = @fall8Min7 colorMap [7,0] = @fall8Max8, colorMap [7,1] = @fall8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Winter 8") ; Created by Toby Marshall. colorMap [0,0] = @winter8Max1, colorMap [0,1] = @winter8Min1 colorMap [1,0] = @winter8Max2, colorMap [1,1] = @winter8Min2 colorMap [2,0] = @winter8Max3, colorMap [2,1] = @winter8Min3 colorMap [3,0] = @winter8Max4, colorMap [3,1] = @winter8Min4 colorMap [4,0] = @winter8Max5, colorMap [4,1] = @winter8Min5 colorMap [5,0] = @winter8Max6, colorMap [5,1] = @winter8Min6 colorMap [6,0] = @winter8Max7, colorMap [6,1] = @winter8Min7 colorMap [7,0] = @winter8Max8, colorMap [7,1] = @winter8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Mojave 8") ; Created by Toby Marshall. colorMap [0,0] = @mojave8Max1, colorMap [0,1] = @mojave8Min1 colorMap [1,0] = @mojave8Max2, colorMap [1,1] = @mojave8Min2 colorMap [2,0] = @mojave8Max3, colorMap [2,1] = @mojave8Min3 colorMap [3,0] = @mojave8Max4, colorMap [3,1] = @mojave8Min4 colorMap [4,0] = @mojave8Max5, colorMap [4,1] = @mojave8Min5 colorMap [5,0] = @mojave8Max6, colorMap [5,1] = @mojave8Min6 colorMap [6,0] = @mojave8Max7, colorMap [6,1] = @mojave8Min7 colorMap [7,0] = @mojave8Max8, colorMap [7,1] = @mojave8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Green 8") ; colorMap [0,0] = @goldGreen8Max1, colorMap [0,1] = @goldGreen8Min1 colorMap [1,0] = @goldGreen8Max2, colorMap [1,1] = @goldGreen8Min2 colorMap [2,0] = @goldGreen8Max3, colorMap [2,1] = @goldGreen8Min3 colorMap [3,0] = @goldGreen8Max4, colorMap [3,1] = @goldGreen8Min4 colorMap [4,0] = @goldGreen8Max5, colorMap [4,1] = @goldGreen8Min5 colorMap [5,0] = @goldGreen8Max6, colorMap [5,1] = @goldGreen8Min6 colorMap [6,0] = @goldGreen8Max7, colorMap [6,1] = @goldGreen8Min7 colorMap [7,0] = @goldGreen8Max8, colorMap [7,1] = @goldGreen8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Green Alt 8") ; colorMap [0,0] = @goldGreenAlt8Max1, colorMap [0,1] = @goldGreenAlt8Min1 colorMap [1,0] = @goldGreenAlt8Max2, colorMap [1,1] = @goldGreenAlt8Min2 colorMap [2,0] = @goldGreenAlt8Max3, colorMap [2,1] = @goldGreenAlt8Min3 colorMap [3,0] = @goldGreenAlt8Max4, colorMap [3,1] = @goldGreenAlt8Min4 colorMap [4,0] = @goldGreenAlt8Max5, colorMap [4,1] = @goldGreenAlt8Min5 colorMap [5,0] = @goldGreenAlt8Max6, colorMap [5,1] = @goldGreenAlt8Min6 colorMap [6,0] = @goldGreenAlt8Max7, colorMap [6,1] = @goldGreenAlt8Min7 colorMap [7,0] = @goldGreenAlt8Max8, colorMap [7,1] = @goldGreenAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Silver 8") ; colorMap [0,0] = @goldSilver8Max1, colorMap [0,1] = @goldSilver8Min1 colorMap [1,0] = @goldSilver8Max2, colorMap [1,1] = @goldSilver8Min2 colorMap [2,0] = @goldSilver8Max3, colorMap [2,1] = @goldSilver8Min3 colorMap [3,0] = @goldSilver8Max4, colorMap [3,1] = @goldSilver8Min4 colorMap [4,0] = @goldSilver8Max5, colorMap [4,1] = @goldSilver8Min5 colorMap [5,0] = @goldSilver8Max6, colorMap [5,1] = @goldSilver8Min6 colorMap [6,0] = @goldSilver8Max7, colorMap [6,1] = @goldSilver8Min7 colorMap [7,0] = @goldSilver8Max8, colorMap [7,1] = @goldSilver8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Silver/Blue 8") ; colorMap [0,0] = @silverBlue8Max1, colorMap [0,1] = @silverBlue8Min1 colorMap [1,0] = @silverBlue8Max2, colorMap [1,1] = @silverBlue8Min2 colorMap [2,0] = @silverBlue8Max3, colorMap [2,1] = @silverBlue8Min3 colorMap [3,0] = @silverBlue8Max4, colorMap [3,1] = @silverBlue8Min4 colorMap [4,0] = @silverBlue8Max5, colorMap [4,1] = @silverBlue8Min5 colorMap [5,0] = @silverBlue8Max6, colorMap [5,1] = @silverBlue8Min6 colorMap [6,0] = @silverBlue8Max7, colorMap [6,1] = @silverBlue8Min7 colorMap [7,0] = @silverBlue8Max8, colorMap [7,1] = @silverBlue8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Silver/Blue Alt 8") ; colorMap [0,0] = @silverBlueAlt8Max1, colorMap [0,1] = @silverBlueAlt8Min1 colorMap [1,0] = @silverBlueAlt8Max2, colorMap [1,1] = @silverBlueAlt8Min2 colorMap [2,0] = @silverBlueAlt8Max3, colorMap [2,1] = @silverBlueAlt8Min3 colorMap [3,0] = @silverBlueAlt8Max4, colorMap [3,1] = @silverBlueAlt8Min4 colorMap [4,0] = @silverBlueAlt8Max5, colorMap [4,1] = @silverBlueAlt8Min5 colorMap [5,0] = @silverBlueAlt8Max6, colorMap [5,1] = @silverBlueAlt8Min6 colorMap [6,0] = @silverBlueAlt8Max7, colorMap [6,1] = @silverBlueAlt8Min7 colorMap [7,0] = @silverBlueAlt8Max8, colorMap [7,1] = @silverBlueAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Silver Alt 8") ; colorMap [0,0] = @goldSilverAlt8Max1, colorMap [0,1] = @goldSilverAlt8Min1 colorMap [1,0] = @goldSilverAlt8Max2, colorMap [1,1] = @goldSilverAlt8Min2 colorMap [2,0] = @goldSilverAlt8Max3, colorMap [2,1] = @goldSilverAlt8Min3 colorMap [3,0] = @goldSilverAlt8Max4, colorMap [3,1] = @goldSilverAlt8Min4 colorMap [4,0] = @goldSilverAlt8Max5, colorMap [4,1] = @goldSilverAlt8Min5 colorMap [5,0] = @goldSilverAlt8Max6, colorMap [5,1] = @goldSilverAlt8Min6 colorMap [6,0] = @goldSilverAlt8Max7, colorMap [6,1] = @goldSilverAlt8Min7 colorMap [7,0] = @goldSilverAlt8Max8, colorMap [7,1] = @goldSilverAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow 8") ; colorMap [0,0] = @purpleYellow8Max1, colorMap [0,1] = @purpleYellow8Min1 colorMap [1,0] = @purpleYellow8Max2, colorMap [1,1] = @purpleYellow8Min2 colorMap [2,0] = @purpleYellow8Max3, colorMap [2,1] = @purpleYellow8Min3 colorMap [3,0] = @purpleYellow8Max4, colorMap [3,1] = @purpleYellow8Min4 colorMap [4,0] = @purpleYellow8Max5, colorMap [4,1] = @purpleYellow8Min5 colorMap [5,0] = @purpleYellow8Max6, colorMap [5,1] = @purpleYellow8Min6 colorMap [6,0] = @purpleYellow8Max7, colorMap [6,1] = @purpleYellow8Min7 colorMap [7,0] = @purpleYellow8Max8, colorMap [7,1] = @purpleYellow8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow Alt 8") ; colorMap [0,0] = @purpleYellowAlt8Max1, colorMap [0,1] = @purpleYellowAlt8Min1 colorMap [1,0] = @purpleYellowAlt8Max2, colorMap [1,1] = @purpleYellowAlt8Min2 colorMap [2,0] = @purpleYellowAlt8Max3, colorMap [2,1] = @purpleYellowAlt8Min3 colorMap [3,0] = @purpleYellowAlt8Max4, colorMap [3,1] = @purpleYellowAlt8Min4 colorMap [4,0] = @purpleYellowAlt8Max5, colorMap [4,1] = @purpleYellowAlt8Min5 colorMap [5,0] = @purpleYellowAlt8Max6, colorMap [5,1] = @purpleYellowAlt8Min6 colorMap [6,0] = @purpleYellowAlt8Max7, colorMap [6,1] = @purpleYellowAlt8Min7 colorMap [7,0] = @purpleYellowAlt8Max8, colorMap [7,1] = @purpleYellowAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fourth of July 3") ; colorMap [0,0] = @fourthOfJuly3Max1, colorMap [0,1] = @fourthOfJuly3Min1 colorMap [1,0] = @fourthOfJuly3Max2, colorMap [1,1] = @fourthOfJuly3Min2 colorMap [2,0] = @fourthOfJuly3Max3, colorMap [2,1] = @fourthOfJuly3Min3 ranges = 3 offset = @colorOffset elseif (@colorPreset == "Blue/Silver 2") ; colorMap [0,0] = @blueSilver2Max1, colorMap [0,1] = @blueSilver2Min1 colorMap [1,0] = @blueSilver2Max2, colorMap [1,1] = @blueSilver2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Blue/White 2") ; colorMap [0,0] = @blueWhite2Max1, colorMap [0,1] = @blueWhite2Min1 colorMap [1,0] = @blueWhite2Max2, colorMap [1,1] = @blueWhite2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Cyan/Magenta 2") ; colorMap [0,0] = @cyanMagenta2Max1, colorMap [0,1] = @cyanMagenta2Min1 colorMap [1,0] = @cyanMagenta2Max2, colorMap [1,1] = @cyanMagenta2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Cyan/Yellow 2") ; colorMap [0,0] = @cyanYellow2Max1, colorMap [0,1] = @cyanYellow2Min1 colorMap [1,0] = @cyanYellow2Max2, colorMap [1,1] = @cyanYellow2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Gold/Green 2") ; colorMap [0,0] = @goldGreen2Max1, colorMap [0,1] = @goldGreen2Min1 colorMap [1,0] = @goldGreen2Max2, colorMap [1,1] = @goldGreen2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow 2") ; colorMap [0,0] = @purpleYellow2Max1, colorMap [0,1] = @purpleYellow2Min1 colorMap [1,0] = @purpleYellow2Max2, colorMap [1,1] = @purpleYellow2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Red/Tan 2") ; colorMap [0,0] = @redTan2Max1, colorMap [0,1] = @redTan2Min1 colorMap [1,0] = @redTan2Max2, colorMap [1,1] = @redTan2Min2 ranges = 2 offset = @colorOffset endif if (@perturbRanges == "8 Range Custom" && ranges == 8) ; If we are using 8 ranges, then take into account ; the rangeOrdering parameter. int range[8] ; Convert range ordering from 12345678 to .12345678 float ordering = @rangeOrder / 100000000 ; Convert .12345678 to 1.2345678 ordering = ordering * 10 ; Get the first digit int range[0] = trunc (ordering) ; Subract the first digit, i.e. 1.2345678 becomes .2345678 ordering = ordering - range[0] ; Get the second digit ordering = ordering * 10 int range[1] = trunc (ordering) ordering = ordering - range[1] ; Get the third digit ordering = ordering * 10 int range[2] = trunc (ordering) ordering = ordering - range[2] ; Get the fourth digit ordering = ordering * 10 int range[3] = trunc (ordering) ordering = ordering - range[3] ; Get the fifth digit ordering = ordering * 10 int range[4] = trunc (ordering) ordering = ordering - range[4] ; Get the sixth digit ordering = ordering * 10 int range[5] = trunc (ordering) ordering = ordering - range[5] ; Get the seventh digit ordering = ordering * 10 int range[6] = trunc (ordering) ordering = ordering - range[6] ; Get the eighth digit ordering = ordering * 10 int range[7] = round (ordering) ordering = ordering - range[7] ; Save the original order of the maps. color tempMap[8,2] tempMap[0,0] = colorMap[0,0], tempMap[0,1] = colorMap[0,1] tempMap[1,0] = colorMap[1,0], tempMap[1,1] = colorMap[1,1] tempMap[2,0] = colorMap[2,0], tempMap[2,1] = colorMap[2,1] tempMap[3,0] = colorMap[3,0], tempMap[3,1] = colorMap[3,1] tempMap[4,0] = colorMap[4,0], tempMap[4,1] = colorMap[4,1] tempMap[5,0] = colorMap[5,0], tempMap[5,1] = colorMap[5,1] tempMap[6,0] = colorMap[6,0], tempMap[6,1] = colorMap[6,1] tempMap[7,0] = colorMap[7,0], tempMap[7,1] = colorMap[7,1] ; Reorder the maps according to the rangeOrder parameter. colorMap[0,0] = tempMap[range[0]-1,0], colorMap[0,1] = tempMap[range[0]-1,1] colorMap[1,0] = tempMap[range[1]-1,0], colorMap[1,1] = tempMap[range[1]-1,1] colorMap[2,0] = tempMap[range[2]-1,0], colorMap[2,1] = tempMap[range[2]-1,1] colorMap[3,0] = tempMap[range[3]-1,0], colorMap[3,1] = tempMap[range[3]-1,1] colorMap[4,0] = tempMap[range[4]-1,0], colorMap[4,1] = tempMap[range[4]-1,1] colorMap[5,0] = tempMap[range[5]-1,0], colorMap[5,1] = tempMap[range[5]-1,1] colorMap[6,0] = tempMap[range[6]-1,0], colorMap[6,1] = tempMap[range[6]-1,1] colorMap[7,0] = tempMap[range[7]-1,0], colorMap[7,1] = tempMap[range[7]-1,1] endif init: int rangeNum = 0 float ratio = 0.0 int iter = 0 int trapIter = 0 color trappedColor = rgb (0,0,0) bool trappedOnce = false bool trapped = false bool masked = false float x = 0.0 float y = 0.0 float Xabs = 0.0 float Yabs = 0.0 float indexFactor = 0.0 float colorIndex = 0.0 float Px = 0.0 float Py = 0.0 float Dsqd = 0.0 float ratio = 0.0 float Dsqd0 = 0.0 float Dsqd1 = 0.0 float Dsqd2 = 0.0 float ZtoPsqd = 0.0 float Rc = 0.0 float Phi = 0.0 float Rm = 0.0 float RcSqd = 0.0 float Py = 0.0 float Px = 0.0 float minDist = 0.0 float size = 0.0 float Px = 0.0 float Py = 0.0 float distance = 0.0 float distance1 = 0.0 float distance2 = 0.0 complex ellipse1 = (0.0,0.0) complex ellipse2 = (0.0,0.0) float delta = 0.0 float r = 0.0 float ro = 0.0 float r2 = 0.0 float f = 0.0 float k = 0.0 float ka = 0.0 complex v = (0.0,0.0) float rz = 0.0 complex i = (0.0,1.0) float iz = 0.0 float d1 = 0.0 float d2 = 0.0 float d3 = 0.0 float d4 = 0.0 float d5 = 0.0 float d6 = 0.0 float plsqd = 0.0 float halfside = 0.0 float denom = 0.0 float icd = 0.0 float ocd = 0.0 float ic0 = 0.0 float oc0 = 0.0 float cen0 = 0.0 float cend = 0.0 complex i = (0.0,0.0) complex c0i = (0.0,0.0) complex c0o = (0.0,0.0) complex c1i = (0.0,0.0) complex c1o = (0.0,0.0) complex c2i = (0.0,0.0) complex c2o = (0.0,0.0) complex c3i = (0.0,0.0) complex c3o = (0.0,0.0) complex c4i = (0.0,0.0) complex c4o = (0.0,0.0) complex c5i = (0.0,0.0) complex c5o = (0.0,0.0) complex c6i = (0.0,0.0) complex c6o = (0.0,0.0) complex c7i = (0.0,0.0) complex c7o = (0.0,0.0) complex c0cen = (0.0,0.0) complex c1cen = (0.0,0.0) complex c2cen = (0.0,0.0) complex c3cen = (0.0,0.0) complex c4cen = (0.0,0.0) complex c5cen = (0.0,0.0) complex c6cen = (0.0,0.0) complex c7cen = (0.0,0.0) float cx = 0.0 float twopi = 0.0 float fourpi = 0.0 float sixpi = 0.0 float size = 0.0 int savedRange = 0 float dist = 0.0 complex trappedZ = 0 complex prev_z = #pixel float minZ = 1.0e20 float angle = 0.0 complex p = 0 float sum = 0.0 complex pat_p = 0.0 float noise = 0.0 float texture = 0.0 complex z2 = (0.0, 0.0) ; Trap specific initialization if (@trapType == "Angle Function 1") indexFactor = 20.0 / @angleFunc1Size elseif (@trapType == "Atan") indexFactor = 2 * @colorsPerRange / #pi elseif (@trapType == "Balls") indexFactor = (@colorsPerRange - 1) / @ballSize elseif (@trapType == "Blobs") r = @blobsRadius * 0.4782926234762 denom = @blobsMultiplier * r r2 = r * r icd = 1.12484444888696 * r ocd = 1.83195123007351 * r ic0 = 1.59077027517603 * r oc0 = 2.59077027517603 * r cen0 = 2.09077027517603 * r cend = 1.47839783948023 * r i = (0.0,1.0) c0i = i * ic0 c0o = i * oc0 c1i = icd + i * icd c1o = ocd + i * ocd c2i = ic0 c2o = oc0 c3i = icd - i * icd c3o = ocd - i * ocd c4i = -c0i c4o = -c0o c5i = -c1i c5o = -c1o c6i = -c2i c6o = -c2o c7i = -c3i c7o = -c3o c0cen = i * cen0 c1cen = cend + i * cend c2cen = cen0 c3cen = cend - i * cend c4cen = -c0cen c5cen = -c1cen c6cen = -c2cen c7cen = -c3cen indexFactor = (@colorsPerRange - 1) elseif (@trapType == "Bubbles") indexFactor = (@colorsPerRange - 1) / @bubbleSize elseif (@trapType == "Cones") indexFactor = (@colorsPerRange - 1) / #pi elseif (@trapType == "Curls") cx = 8.0 * #pi * @spiralSize r2 = cx * cx twopi = #pi + #pi fourpi = twopi + twopi sixpi = fourpi + twopi elseif (@trapType == "Dimpled Spheroids") indexFactor = (@colorsPerRange - 1) / @dimpledSpheroidSize elseif (@trapType == "Flexballs") Rm = @flexballRadius Ro = Rm + @flexballSize Py = 0.382683432365 * @flexballSize Px = 0.923879532511 * @flexballSize Dsqd0 = Ro * Ro + @flexballSize * @flexballSize - (Ro + Ro) * Px indexFactor = @colorsPerRange - 1 elseif (@trapType == "Harlequin") indexFactor = (@colorsPerRange - 1) / @harlequinSize elseif (@trapType == "Hypocycloid") indexFactor = (@colorsPerRange - 1) / @hypoWidth elseif (@trapType == "Petals") r = @petalSize ro = r + r * @petalOffset r2 = r * r f = 1 - 2 * @petalOffset - @petalOffset * @petalOffset k = @petalOffset * r + r * sqrt (f) plsqd = 2 * r2 * f indexFactor = @colorsPerRange / plsqd elseif (@trapType == "Rings") indexFactor = (@colorsPerRange - 1) / @ringSize elseif (@trapType == "Ring Segments") float Phi = #pi * 0.125 float Ro = @ringRadius + @ringThickness Py = @ringRadius * sin(Phi) Px = @ringRadius * cos(Phi) Dsqd = @ringRadius * @ringRadius + Ro * Ro - 2 * Ro * Px indexFactor = @colorsPerRange - 1 elseif (@trapType == "Spheres") indexFactor = (@colorsPerRange - 1) / @sphereSize elseif (@trapType == "Spheroids") indexFactor = (@colorsPerRange - 1) / @spheroidSize distance = 1.0e20 elseif (@trapType == "Squares") Px = 0.5 + @squareSize Py = 0.5 - @squareSize indexFactor = (@colorsPerRange - 1) / @squareSize elseif (@trapType == "Stalks") indexFactor = (@colorsPerRange - 1) / @stalkWidth elseif (@trapType == "Star of David") halfside = 1.73205080756888 * @starSize indexFactor = @colorsPerRange - 1 elseif (@trapType == "Tangent Balls") ratio = 0.0 Dsqd0 = 0.0 Dsqd1 = 0.0 Dsqd2 = 0.0 ZtoPsqd = 0.0 Rc = @ballRadius Phi = #pi / 8 Rm = Rc / sin(Phi) RcSqd = Rc^2 Py = Rm * sin(2 * Phi) Px = Rm * cos(2 * Phi) indexFactor = @colorsPerRange - 1 elseif (@trapType == "Two Ellipses") indexFactor = (@colorsPerRange - 1) / @ellipseWidth endif loop: ; Check the trap mode. If trapMode == "First Iteration", then ; everything is normal. If trapMode == "Last Iteration", then ; we need to keep looping so that we can capture the "Last" ; value that falls in the trap range. This will put larger ; shapes below smaller ones. if @trapMode == "Last Iteration" trapped = false endif ; Apply the offset. z2 = #z - @offset if (@trapType == "Design Gradient") trapped = true elseif (@trapType == "Angle Function 1") angle = atan(imag(z2) / real(z2)) ; Versions 311 and prior had a bug where the second function ; was not used. This fixes the problem for version 312 and ; above. if @trapsVersion < 312 v = @angleFunc1Multiplier * (@angleFunc1Function1(angle)^2 + \ @angleFunc1Function1(angle)^2) else v = @angleFunc1Multiplier * (@angleFunc1Function1(angle)^2 + \ @angleFunc1Function2(angle)^2) endif distance = abs(|z2| - |v|) if (!trapped && distance < @angleFunc1Size && iter >= @skip) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], distance / @angleFunc1Size) colorIndex = indexFactor * distance + rangeNum * @colorsPerRange endif elseif (@trapType == "Angle Function 2") ; angle = atan(imag(#z) / real(#z)) ; v = @angleFunc2Multiplier * (@angleFunc2Function1(#z) / @angleFunc2Function2(angle)) ; distance = abs(|#z| - |v|) complex aa = @angleFunc2Multiplier * atan(imag(z2) / real(z2)) aa = aa * aa + @juliaSeed v = @angleFunc2Function1(1.0 - aa) / aa distance = abs(|z2| - |v|) if (!trapped && distance < @angleFunc2Size && iter >= @skip) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], distance / @angleFunc2Size) colorIndex = indexFactor * distance + rangeNum * @colorsPerRange endif elseif (@trapType == "Atan") if !trapped && (abs(real(z2)) > @maxReal && iter >= @skip) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 angle = abs(atan((imag(z2)-imag(prev_z))/(real(z2)-real(prev_z)))) rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], angle) colorIndex = indexFactor * angle + rangeNum * @colorsPerRange endif elseif (@trapType == "Balls") if (!trapped && iter >= @skip) float b1 = real(z2) * real(z2) + (imag(z2) - 0.5) * (imag(z2) - 0.5) float b2 = real(z2) * real(z2) + (imag(z2) + 0.5) * (imag(z2) + 0.5) float b3 = (real(z2) - 0.5) * (real(z2) - 0.5) + imag(z2) * imag(z2) float b4 = (real(z2) + 0.5) * (real(z2) + 0.5) + imag(z2) * imag(z2) if (b1 < @ballSize) distance = b1 trapped = true trappedOnce = true elseif (b2 < @ballSize) distance = b2 trapped = true trappedOnce = true elseif (b3 < @ballSize) distance = b3 trapped = true trappedOnce = true elseif (b4 < @ballSize) distance = b4 trapped = true trappedOnce = true endif if trapped trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], distance / @ballSize) colorIndex = indexFactor * distance + rangeNum * @colorsPerRange endif endif elseif (@trapType == "Blobs") if (!trapped && iter >= @skip) bool c1 = ((|z2 - c0i| < r2) && (|z2 - c0o| < r2)) bool c2 = ((|z2 - c1i| < r2) && (|z2 - c1o| < r2)) bool c3 = ((|z2 - c2i| < r2) && (|z2 - c2o| < r2)) bool c4 = ((|z2 - c3i| < r2) && (|z2 - c3o| < r2)) bool c5 = ((|z2 - c4i| < r2) && (|z2 - c4o| < r2)) bool c6 = ((|z2 - c5i| < r2) && (|z2 - c5o| < r2)) bool c7 = ((|z2 - c6i| < r2) && (|z2 - c6o| < r2)) bool c8 = ((|z2 - c7i| < r2) && (|z2 - c7o| < r2)) if (c1) trapped = true trappedOnce = true distance = cabs(|z2| - |c0cen|) elseif (c2) trapped = true trappedOnce = true distance = cabs(|z2| - |c1cen|) elseif (c3) trapped = true trappedOnce = true distance = cabs(|z2| - |c2cen|) elseif (c4) trapped = true trappedOnce = true distance = cabs(|z2| - |c3cen|) elseif (c5) trapped = true trappedOnce = true distance = cabs(|z2| - |c4cen|) elseif (c6) trapped = true trappedOnce = true distance = cabs(|z2| - |c5cen|) elseif (c7) trapped = true trappedOnce = true distance = cabs(|z2| - |c6cen|) elseif (c8) trapped = true trappedOnce = true distance = cabs(|z2| - |c7cen|) endif if trapped trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], (distance / denom)^@blobsPower) indexFactor = (@colorsPerRange - 1) * (distance / denom)^@blobsPower colorIndex = indexFactor + rangeNum * @colorsPerRange endif endif elseif (@trapType == "Bubbles") if (!trapped) ;**************************************************** ; Save the smallest value of sqrt(|z|). ;**************************************************** float temp = sqrt(|z2|) if (temp < minZ) minZ = temp if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif savedRange = rangeNum endif ;**************************************************** ; If the orbit point exceeds the maximum value, set z to ; the index into the colormap and set the bailout flag. ;**************************************************** if (|z2| > @maxZ) if (minZ < @bubbleSize) trappedColor = blend (colorMap [savedRange,0], colorMap [savedRange,1], minZ / @bubbleSize) colorIndex = indexFactor * minZ + savedRange * @colorsPerRange else colorIndex = 253 endif trapped = true trappedOnce = true trapIter = iter trappedZ = z2 endif endif rangeNum = (iter + offset) % ranges elseif (@trapType == "Cones") ; Color is not set until Maximum Iterations reached. trapped = true trappedOnce = true rangeNum = (iter + 1 + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif prev_z = z2 elseif (@trapType == "Curls") if (!trapped && real(z2) >= 0.0 && iter >= @skip) float deltax = real(z2) - cx complex v = deltax + flip(imag(z2)) float theta = atan2(v) if (@beadFactor > 0) size = @spiralWidth * abs(sin(theta * @beadFactor)) else size = @spiralWidth endif float sr = @spiralSize * theta complex m = cx + sr * exp(flip(theta)) distance = sqrt(|z2 - m|) if (distance < size) trapped = true endif if (!trapped) sr = @spiralSize * (theta + twopi) m = cx + sr * exp(flip (theta + twopi)) distance = sqrt(|z2 - m|) if (distance < size) trapped = true endif endif if (!trapped) sr = @spiralSize * (theta + fourpi) m = cx + sr * exp(flip (theta + fourpi)) distance = sqrt(|z2 - m|) if (distance < size) trapped = true endif endif if (!trapped) sr = @spiralSize * (theta + sixpi) m = cx + sr * exp(flip (theta + sixpi)) distance = sqrt(|z2 - m|) if (distance < size) trapped = true trappedOnce = true endif endif if trapped trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], (distance / size)) indexFactor = (@colorsPerRange - 1) / size colorIndex = indexFactor * distance + rangeNum * @colorsPerRange endif endif elseif (@trapType == "Dimpled Spheroids") if !trapped && iter >= @skip distance = abs(|z2 - (0.5,0.5)| - 0.1) if distance < @dimpledSpheroidSize trapped = true trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], distance / @dimpledSpheroidSize) colorIndex = indexFactor * dist + rangeNum * @colorsPerRange endif endif elseif (@trapType == "Flexballs") if !trapped && iter >= @skip && \ abs((cabs(z2) - @flexballRadius)) < @flexballSize trapped = true trappedOnce = true trapIter = iter trappedZ = z2 x = real(z2) y = imag(z2) Xabs = abs(x) Yabs = abs(y) if Xabs >= Yabs ZtoPsqd = (Xabs - Px)^2 + (Yabs - Py)^2 int adjust = 1 else ZtoPsqd = (Xabs - Py)^2 + (Yabs - Px)^2 adjust = 0 endif if (x >= 0 && y >= 0) rangeNum = 1 - adjust elseif (x < 0 && y >= 0) rangeNum = 2 + adjust elseif (x < 0 && y < 0) rangeNum = 5 - adjust else rangeNum = 6 + adjust endif ratio = sqrt(ZtoPsqd / Dsqd0) rangeNum = (rangeNum + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], ratio) colorIndex = indexFactor * ratio + rangeNum * @colorsPerRange endif elseif (@trapType == "Harlequin") ; Use the old code for earlier versions. if (@trapsVersion < 330) x = real(z2) y = imag(z2) complex aa = @harlequinMultiplier * atan(y / x) aa = aa * aa + @harlequinSeed aa = @harlequinFunction(1 - aa) / aa temp = abs(|z2| - |aa|) else ; If x == 0, then we have to treat temp as a special case because ; atan( y / 0 ) produces a NAN value which causes problems in the ; subsequent computations. if (x == 0) ; Set temp to a large value so that the test for entering ; the trap section is not satisfied. temp = 1E9 else x = real(z2) y = imag(z2) complex aa = @harlequinMultiplier * atan(y / x) aa = aa * aa + @harlequinSeed aa = @harlequinFunction(1 - aa) / aa temp = abs(|z2| - |aa|) endif endif if !trapped && (temp < @harlequinSize && iter >= @skip) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], temp / @harlequinSize) colorIndex = indexFactor * temp + rangeNum * @colorsPerRange endif elseif (@trapType == "Hypocycloid") IF !trapped && (iter >= @skip) angle = atan(imag(z2) / real(z2)) k = 1.2 - @hypoFactor ka = k * angle / @hypoFactor rz = k * cos(angle) + @hypoFactor * cos(ka) iz = k * sin(angle) + @hypoFactor * sin(ka) v = rz + i * iz distance = abs(|z2| - |v|) IF (distance < @hypoWidth && iter >= @skip) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], distance / @hypoWidth) colorIndex = indexFactor * distance + rangeNum * @colorsPerRange ENDIF ENDIF elseif (@trapType == "Petals") IF !trapped && (iter >= @skip) float d = 0.0 float zr = real(z2) float zi = imag(z2) bool c1 = (((zr - ro) * (zr - ro) + zi * zi) < r2) bool c2 = ((zr * zr + (zi + ro) * (zi + ro)) < r2) bool c3 = (((zr + ro) * (zr + ro) + zi * zi) < r2) bool c4 = ((zr * zr + (zi - ro) * (zi - ro)) < r2) if (c1 && c4) trapped = true d = (zr - k) * (zr - k) + (zi - k) * (zi - k) elseif (c1 && c2) trapped = true d = (zr - k) * (zr - k) + (zi + k) * (zi + k) elseif (c2 && c3) trapped = true d = (zr + k) * (zr + k) + (zi + k) * (zi + k) elseif (c3 && c4) trapped = true d = (zr + k) * (zr + k) + (zi - k) * (zi - k) endif if (trapped == true) trapIter = iter trappedOnce = true trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif float colorPos = d / plsqd if @petalColoring == "3D" if colorPos > 0.5 trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], (d / plsqd - 0.5) / 0.5) colorIndex = (@colorsPerRange * (d / plsqd - 0.5) / 0.5) + rangeNum * @colorsPerRange else trappedColor = blend (colorMap [rangeNum,1], colorMap [rangeNum,0], d / plsqd / 0.5) colorIndex = (@colorsPerRange * (0.5 - d / plsqd) / 0.5) + rangeNum * @colorsPerRange endif else trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], d / plsqd) colorIndex = indexFactor * d + rangeNum * @colorsPerRange endif endif endif elseif (@trapType == "Rings") size = abs(|z2| - 0.25) if !trapped && size < @ringSize && iter >= @skip trapIter = iter trappedZ = z2 trapped = true trappedOnce = true rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], size / @ringSize) colorIndex = indexFactor * size + rangeNum * @colorsPerRange endif elseif (@trapType == "Ring Segments") if (!trapped && (abs(cabs(z2) - @ringRadius) < @ringThickness) && \ iter >= @skip) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 x = real(z2) y = imag(z2) Xabs = abs(x) Yabs = abs(y) if (Xabs >= Yabs) float WtoPsqd = (Xabs-Px)*(Xabs-Px) + (Yabs-Py)*(Yabs-Py) else WtoPsqd = (Xabs-Py)*(Xabs-Py) + (Yabs-Px)*(Yabs-Px) endif if (x >= 0 && y >= 0) if (Xabs >= Yabs) int segment = 0 else segment = 1 endif elseif (x < 0 && y >= 0) if (Xabs < Yabs) segment = 2 else segment = 3 endif elseif (x < 0 && y < 0) if (Xabs >= Yabs) segment = 4 else segment = 5 endif else if (Xabs < Yabs) segment = 6 else segment = 7 endif endif float ringRatio = sqrt(WtoPsqd/Dsqd) rangeNum = (segment + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], ringRatio) colorIndex = indexFactor * ringRatio + rangeNum * @colorsPerRange endif elseif (@trapType == "Spheres") if (!trapped) && (iter >= @skip) ;**************************************************** ; Compute the ratio and see if it is within limits. ;**************************************************** ratio = |prev_z| / |z2| prev_z = z2 if (ratio < @sphereSize && iter > 0) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], ratio / @sphereSize) colorIndex = indexFactor * ratio + rangeNum * @colorsPerRange endif rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif endif elseif (@trapType == "Spheroids") if (!trapped) && (iter >= @skip) if ((delta = |z2 + (0,-.5)|) < @spheroidSize) distance = @spheroidSize - delta elseif ((delta = |z2 + (0,.5)|) < @spheroidSize) distance = @spheroidSize - delta elseif ((delta = |z2 + (-.5,0)|) < @spheroidSize) distance = @spheroidSize - delta elseif ((delta = |z2 + (.5,0)|) < @spheroidSize) distance = @spheroidSize - delta endif if (distance < @spheroidSize && iter >= 0) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,1], colorMap [rangeNum,0], distance / @spheroidSize) colorIndex = indexFactor * distance + rangeNum * @colorsPerRange endif endif elseif (@trapType == "Squares") Xabs = abs(real(z2) - real(@squaresOffset)) Yabs = abs(imag(z2) - imag(@squaresOffset)) if (!trapped && (Xabs < Px) && (Xabs > Py) && (Yabs < Px) && (Yabs > Py) \ && (iter >= @skip)) float awr5 = abs(Xabs - 0.5) float awi5 = abs(Yabs - 0.5) if (awr5 <= awi5) distance = awr5 else distance = awi5 endif if !trapped && (distance < @squareSize && iter >= @skip) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], distance / @squareSize) colorIndex = indexFactor * distance + rangeNum * @colorsPerRange endif endif elseif (@trapType == "Stalks") if (abs(real(z2)) <= abs(imag(z2))) minDist = abs(real(z2)) else minDist = abs(imag(z2)) endif if !trapped && (minDist < @stalkWidth) && (|z2| < @stalkLength) && (iter >= @skip) trapped = true trappedOnce = true trapIter = iter trappedZ = z2 rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], minDist / @stalkWidth) colorIndex = indexFactor * minDist + rangeNum * @colorsPerRange endif elseif (@trapType == "Star of David") IF !trapped && (iter >= @skip) ;Compute all the distances rz = real(z2) iz = imag(z2) d2 = abs(iz + @starSize) d4 = abs(iz - @starSize) d1 = abs( 0.866025403784439 * rz + 0.5 * iz - @starSize) d3 = abs(-0.866025403784439 * rz + 0.5 * iz - @starSize) d5 = abs( 0.866025403784439 * rz - 0.5 * iz - @starSize) d6 = abs(-0.866025403784439 * rz - 0.5 * iz - @starSize) ;Check line 1 IF (d1 < @starWidth) rangeNum = 0 IF (d2 < @starWidth) trapped = true IF (d1 <= d2) dist = d1 IF (iz <= -@starSize) dist = d2 ENDIF ELSE dist = d2 IF (rz >= halfside) dist = d1 ENDIF ENDIF ELSEIF (d3 < @starWidth) trapped = true IF (d1 <= d3) dist = d1 IF (rz <= 0.0) dist = d3 ENDIF ELSE dist = d3 IF (rz > 0.0) dist = d1 ENDIF ENDIF ELSEIF (d4 < @starWidth) trapped = true IF (d1 <= d4) dist = d1 ELSE dist = d4 rangeNum = 1 ENDIF ELSEIF (d5 < @starWidth) trapped = true IF (d1 <= d5) dist = d1 ELSE dist = d5 rangeNum = 1 ENDIF ELSEIF (rz >= 0.0 && iz >= -@starSize) trapped = true dist = d1 ENDIF ENDIF ;Check line 2 IF (d2 < @starWidth && !trapped) rangeNum = 0 IF (d3 < @starWidth) trapped = true IF (d2 <= d3) dist = d2 IF (rz <= -halfside) dist = d3 ENDIF ELSE dist = d3 IF (iz <= -@starSize) dist = d2 ENDIF ENDIF ELSEIF (d5 < @starWidth) trapped = true IF (d2 <= d5) dist = d2 ELSE dist = d5 rangeNum = 1 ENDIF ELSEIF (d6 < @starWidth) trapped = true IF (d2 <= d6) dist = d2 ELSE dist = d6 rangeNum = 1 ENDIF ELSEIF (abs(rz) <= halfside) trapped = true dist = d2 ENDIF ENDIF ;Check line 3 IF (d3 < @starWidth && !trapped) rangeNum = 0 IF (d4 < @starWidth) trapped = true IF (d3 <= d4) dist = d3 ELSE dist = d4 rangeNum = 1 ENDIF ELSEIF (d6 < @starWidth) trapped = true IF (d3 <= d6) dist = d3 ELSE dist = d6 rangeNum = 1 ENDIF ELSEIF (rz <= 0.0 && iz >= -@starSize) trapped = true dist = d3 ENDIF ENDIF ;Check line 4 IF (d4 < @starWidth && !trapped) rangeNum = 1 IF (d5 < @starWidth) trapped = true IF (d4 <= d5) dist = d4 IF (rz >= halfside) dist = d5 ENDIF ELSE dist = d5 IF (iz >= @starSize) dist = d4 ENDIF ENDIF ELSEIF (d6 < @starWidth) trapped = true IF (d4 <= d6) dist = d4 IF (rz <= -halfside) dist = d6 ENDIF ELSE dist = d6 IF (iz >= @starSize) dist = d4 ENDIF ENDIF ELSEIF (abs(rz) <= halfside) trapped = true dist = d4 ENDIF ENDIF ;Check line 5 IF (d5 < @starWidth && !trapped) rangeNum = 1 IF (d6 < @starWidth) trapped = true IF (d5 <= d6) dist = d5 IF (rz <= 0.0) dist = d6 ENDIF ELSE dist = d6 IF (rz > 0.0) dist = d5 ENDIF ENDIF ELSEIF (rz >= 0.0 && iz <= @starSize) trapped = true dist = d5 ENDIF ENDIF ;Check line 6 IF (d6 < @starWidth && !trapped) rangeNum = 1 IF (rz <= 0.0 && iz <= @starSize) trapped = true dist = d6 ENDIF ENDIF IF (trapped) trappedOnce = true trapIter = iter trappedZ = z2 IF ranges != 2 ; If not, then set range_num to account for more color ranges. rangeNum = (iter + rangeNum + offset) % ranges ENDIF if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], dist / @starWidth) colorIndex = indexFactor * dist / @starWidth + rangeNum * @colorsPerRange ENDIF ENDIF elseif (@trapType == "Tangent Balls") segment = 0 x = real(z2) y = imag(z2) Xabs = abs(x) Yabs = abs(y) if !trapped && iter >= @skip && abs((cabs(z2) - Rm)) < Rc ; Dsqd0 = Xabs^@shapeAdjust + (Yabs - Rm)^@shapeAdjust ; Dsqd1 = (Xabs - Px)^@shapeAdjust + (Yabs - Py)^@shapeAdjust ; Dsqd2 = (Xabs - Rm)^@shapeAdjust + Yabs^@shapeAdjust ; dist = (dx^@shapeAdjust + dy^@shapeAdjust)^(1 / @shapeAdjust) Dsqd0 = Xabs^2 + (Yabs - Rm)^2 Dsqd1 = (Xabs - Px)^2 + (Yabs - Py)^2 Dsqd2 = (Xabs - Rm)^2 + Yabs^2 if Dsqd0 < RcSqd trapped = true ZtoPsqd = Dsqd0 if y > 0 segment = 0 else segment = 4 endif elseif Dsqd1 < RcSqd trapped = true ZtoPsqd= Dsqd1 if y > 0 && x > 0 segment = 1 elseif y < 0 && x > 0 segment = 3 elseif y < 0 && x < 0 segment = 5 else segment = 7 endif elseif Dsqd2 < RcSqd trapped = true ZtoPsqd = Dsqd2 if x > 0 segment = 2 else segment = 6 endif endif if trapped trappedOnce = true trapIter = iter trappedZ = z2 ; ratio = (ZtoPsqd / Rcsqd)^(1 / @shapeAdjust) ratio = sqrt(ZtoPsqd / Rcsqd) rangeNum = (segment + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], ratio) colorIndex = indexFactor * ratio + rangeNum * @colorsPerRange endif endif elseif (@trapType == "Two Ellipses") if (!trapped) angle = atan(imag(z2) / real(z2)) ellipse1 = @majorAxis1 * cos(angle) + i * @minorAxis1 * sin(angle) ellipse2 = @minorAxis2 * cos(angle) + i * @majorAxis2 * sin(angle) distance1 = abs(cabs(z2) - cabs(ellipse1)) distance2 = abs(cabs(z2) - cabs(ellipse2)) if (distance1 < distance2) segment = 0 distance = distance1 else segment = 1 distance = distance2 endif rangeNum = (segment + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif if (distance < @ellipseWidth && iter > @skip) trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], distance / @ellipseWidth) colorIndex = indexFactor * distance + rangeNum * @colorsPerRange trapped = true trappedOnce = true trapIter = iter trappedZ = z2 endif endif endif iter = iter + 1 final: if trappedOnce if (@trapType == "Design Gradient") rangeNum = trunc(#y / trunc (#height / ranges)) trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], #x / #width) endif if (@useFBM) if @mask_type == "Iteration" if @mask != 0 float mask_val = trapIter if @mask_mod != 0 mask_val = trapIter % @mask_mod endif if mask_val < @mask masked = true endif endif elseif @mask_type == "Range" if (trapIter >= @mask) && (trapIter <= @mask_mod) masked = true endif endif if @inverse masked = !masked endif if masked #solid = true else if (@texture_type == "Random") ;Random texture = @rnd * real(#random) else ; fBm if (@rnd != 0) complex rr = (0,1) ^ (@angle / 90.0) complex rr2 = (0,1) ^ (@anglestep / 90.0) if @initial == "Pixel" pat_p = #pixel * rr + @fbmOffset p = #pixel * @fbmscale * rr + @fbmoffset elseif @initial == "Orbit" pat_p = trappedZ * rr + @fbmOffset p = trappedZ * @fbmscale * rr + @fbmoffset ; elseif @initial == "Trap" ; pat_p = trap_p * rr + @fbmOffset ; complex p = trap_p * @fbmscale * rr + @fbmoffset endif float freq = 1.0 int ii = @octaves while (ii > 0) ; determine integer coordinate for corners of square ; surrounding p float bx0 = floor(real(p)) % 256 float by0 = floor(imag(p)) % 256 if (bx0 < 0) bx0 = bx0 + 256 endif if (by0 < 0) by0 = by0 + 256 endif float bx1 = (bx0 + 1) % 256 float by1 = (by0 + 1) % 256 float rx0 = real(p) - floor(real(p)) float ry0 = imag(p) - floor(imag(p)) float rx1 = rx0 - 1 float ry1 = ry0 - 1 float b00 = (bx0^@power % 65536 + by0)^@power % 65536 float b10 = (bx1^@power % 65536 + by0)^@power % 65536 float b01 = (bx0^@power % 65536 + by1)^@power % 65536 float b11 = (bx1^@power % 65536 + by1)^@power % 65536 float g_b00_0 = (b00)^@power*0.25 % 512 - 256 float g_b10_0 = (b10)^@power*0.25 % 512 - 256 float g_b01_0 = (b01)^@power*0.25 % 512 - 256 float g_b11_0 = (b11)^@power*0.25 % 512 - 256 float g_b00_1 = (b00+1)^@power*0.25 % 512 - 256 float g_b10_1 = (b10+1)^@power*0.25 % 512 - 256 float g_b01_1 = (b01+1)^@power*0.25 % 512 - 256 float g_b11_1 = (b11+1)^@power*0.25 % 512 - 256 float d = 0.0; d = 1 / sqrt(sqr(g_b00_0) + sqr(g_b00_1)) g_b00_0 = g_b00_0 * d g_b00_1 = g_b00_1 * d d = 1 / sqrt(sqr(g_b10_0) + sqr(g_b10_1)) g_b10_0 = g_b10_0 * d g_b10_1 = g_b10_1 * d d = 1 / sqrt(sqr(g_b01_0) + sqr(g_b01_1)) g_b01_0 = g_b01_0 * d g_b01_1 = g_b01_1 * d d = 1 / sqrt(sqr(g_b11_0) + sqr(g_b11_1)) g_b11_0 = g_b11_0 * d g_b11_1 = g_b11_1 * d float u1 = rx0 * g_b00_0 + ry0 * g_b00_1 float v1 = rx1 * g_b10_0 + ry0 * g_b10_1 float u2 = rx0 * g_b01_0 + ry1 * g_b01_1 float v2 = rx1 * g_b11_0 + ry1 * g_b11_1 float sx = sqr(rx0) * (3 - rx0*2) float sy = sqr(ry0) * (3 - ry0*2) float a = u1 + sx*(v1 - u1) float b = u2 + sx*(v2 - u2) if @fbmfunc == "Ident" ; Ident sum = sum + (a + sy * (b - a)) * freq elseif @fbmfunc == "Abs" ; Abs sum = sum + sqrt(2) * abs(a + sy * (b - a)) * freq elseif @fbmfunc == "Sqr" ; Sqr sum = sum + 4 * sqr(a + sy * (b - a)) * freq elseif @fbmfunc == "Sqrt" ; Sqrt noise = a + sy * (b - a) if noise < 0 noise = imag(sqrt(noise)) else noise = real(sqrt(noise)) endif sum = sum + noise * freq elseif @fbmfunc == "Ceil" ; Ceil sum = sum + ceil(a + sy * (b - a)) * freq endif freq = freq * @step p = p * rr2 / @step ii = ii - 1 endwhile endif if @pattern == "None" noise = sum elseif @pattern == "Marble" ; Marble noise = real(sin(@pfreq * real(pat_p) + (@turb * sum))) elseif @pattern == "Wood" ; Wood noise = cabs(@pfreq * pat_p) + (@turb * sum) elseif @pattern == "Cells" ; Cells float x = sin(@pfreq * real(pat_p)) float y = cos(@pfreq * imag(pat_p)) noise = cabs(x + flip(y)) + (@turb * sum) elseif @pattern == "Squares" p = round(pat_p * @pfreq) / @pfreq noise = 2 * cabs(@pfreq * pat_p - @pfreq * p) + (@turb * sum) endif if @texture_type == "fBm" ; Original fBm texture = @rnd * noise elseif @texture_type == "Corrected fBm" ; Corrected fBm texture = @rnd * ((noise + 1) * 0.5) endif endif endif endif if (@colorPreset == "Gradient") if (@trapType == "Cones") float angle = abs(atan((imag(#z)-imag(prev_z))/(real(#z)-real(prev_z)))) if ((real(#z) - real(prev_z)) < 0.0) angle = #pi - angle endif colorIndex = indexFactor * angle + rangeNum * @colorsPerRange endif if (@colorMode == "Angle") angle = atan2 (trappedZ) if (angle < 0) angle = angle + 2 * #pi endif angle = 1.0 / (2 * #pi) * angle #color = gradient (angle + texture) elseif (@colorMode == "Iteration") #color = gradient (trapIter * 0.01 + texture) elseif (@colorMode == "Modulated Iter") #color = gradient ((trapIter % 8) / 8 + texture) elseif (@colorMode == "Magnitude") #color = gradient (cabs(trappedZ) + texture) elseif (@colorMode == "Real") #color = gradient (abs(real(trappedZ)) + texture) elseif (@colorMode == "Imag") #color = gradient (abs(imag(trappedZ)) + texture) else #color = gradient ((colorIndex + 1) % 256 / 256 + texture) endif else if (@trapType == "Cones") float angle = abs(atan((imag(#z)-imag(prev_z))/(real(#z)-real(prev_z)))) if ((real(#z) - real(prev_z)) < 0.0) angle = #pi - angle endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], angle / #pi) endif #color = trappedColor print("color = ", trappedColor) endif else if @solid #solid = TRUE print("@solid = ", @solid) else #color = @backColor print("@backColor = ", @backColor) endif endif default: title = "Carlson Orbit Traps" ;-------------------------------------------------------------------- ; Version ;-------------------------------------------------------------------- param trapsVersion caption = "Formula Version" default = 330 hint = "You should never see this parameter; it's used internally to track \ which version of the formula was used to create your image, so that \ if a bug is found which breaks backwards-compatibility, the formula \ can adapt transparently." visible = false endparam ;-------------------------------------------------------------------- ; Trap Selection Parameters ;-------------------------------------------------------------------- heading caption = "Trap Parameters" endheading param trapType caption = "Rendering Method" enum = "Design Gradient" "Angle Function 1" "Angle Function 2" "Atan" \ "Balls" "Blobs" "Bubbles" "Cones" "Curls" \ "Dimpled Spheroids" "Flexballs" "Harlequin" "Hypocycloid" "Petals" \ "Rings" "Ring Segments" "Spheres" "Spheroids" "Squares" "Stalks" \ "Star of David" "Tangent Balls" "Two Ellipses" default = 15 hint = "The rendering method." endparam param trapMode caption = "Trap Mode" enum = "First Iteration" "Last Iteration" default = 0 hint = "Select 'First Iteration' to trap the first point that \ falls in the range. Select 'Last Iteration' to select \ the last point that falls in the range. This has the \ effect of placing larger shapes below smaller ones." endparam ;-------------------------------------------------------------------- ; Angle Function 1 Parameters ;-------------------------------------------------------------------- float param angleFunc1Size caption = "Element Size" default = 0.1 hint = "The size of the elements. Suggested range (0.05 to 2.0)." visible = (@trapType == "Angle Function 1") endparam float param angleFunc1Multiplier caption = "Angle Multiplier" default = 1.0 hint = "The angle multiplier. Suggested range (0.01 to 3.14)." visible = (@trapType == "Angle Function 1") endparam func angleFunc1Function1 caption = "Function 1" default = ident() hint = "Modifier function 1." visible = (@trapType == "Angle Function 1") endfunc func angleFunc1Function2 caption = "Function 2" default = ident() hint = "Modifier function 2." visible = (@trapType == "Angle Function 1") endfunc ;-------------------------------------------------------------------- ; Angle Function 2 Parameters ;-------------------------------------------------------------------- float param angleFunc2Size caption = "Element Size" default = 0.1 hint = "The size of the elements. Suggested range (0.05 to 2.0)." visible = (@trapType == "Angle Function 2") endparam float param angleFunc2Multiplier caption = "Angle Multiplier" default = 1.0 hint = "The angle multiplier. Suggested range (0.01 to 3.14)." visible = (@trapType == "Angle Function 2") endparam complex param juliaSeed caption = "Julia Seed" default = (0.39375, 0.16875) hint = "If a Julia UFM is used, enter the Julia seed. Otherwise, \ this value modifies the trap. Note: This trap is similar \ to, but not exactly the same as the MBF trap." visible = (@trapType == "Angle Function 2") endparam func angleFunc2Function1 caption = "Function 1" default = ident() hint = "Modifier function 1." visible = (@trapType == "Angle Function 2") endfunc ;-------------------------------------------------------------------- ; Atan Parameters ;-------------------------------------------------------------------- float param maxReal caption = "Max Z" default = 4.0 hint = "Max value of real(z). Suggested range (0.3 to 32.0)." visible = (@trapType == "Atan") endparam ;-------------------------------------------------------------------- ; Balls Parameters ;-------------------------------------------------------------------- float param ballSize caption = "Balls Size" default = 0.2 hint = "The size of the balls." visible = (@trapType == "Balls") endparam ;-------------------------------------------------------------------- ; Blobs Parameters ;-------------------------------------------------------------------- float param blobsRadius caption = "Blobs Size" default = 0.25 hint = "The size of the blobs." visible = (@trapType == "Blobs") endparam float param blobsMultiplier caption = "Blobs Multiplier" default = 0.5 hint = "Blob factor multiplier." visible = (@trapType == "Blobs") endparam float param blobsPower caption = "Blobs Power" default = 0.5 hint = "Blob factor exponent." visible = (@trapType == "Blobs") endparam ;-------------------------------------------------------------------- ; Bubbles Parameters ;-------------------------------------------------------------------- float param bubbleSize caption = "Bubble Size" default = 0.1 hint = "The size of the bubbles. Suggested range (0.1 to 0.3)." visible = (@trapType == "Bubbles") endparam float param maxZ caption = "Maximum Z" default = 4.0 hint = "The maximum size of the bubbles." visible = false ; visible = (@trapType == "Bubbles") endparam ;-------------------------------------------------------------------- ; Curls Parameters ;-------------------------------------------------------------------- float param spiralSize caption = "Spiral Size" default = 0.3 hint = "The size of the spiral." visible = (@trapType == "Curls") endparam float param spiralWidth caption = "Spiral Width" default = 0.3 hint = "The width of the spiral." visible = (@trapType == "Curls") endparam int param beadFactor caption = "Bead Factor" default = -1 hint = "Determines if the spiral should be beaded. Subbested range \ (5 to 30)." visible = (@trapType == "Curls") endparam ;-------------------------------------------------------------------- ; Dimpled Sheroids Parameters ;-------------------------------------------------------------------- float param dimpledSpheroidSize caption = "Spheroid Size" default = 0.1 hint = "The size of the spheroids. Suggested range (0.1 to 0.5)." visible = (@trapType == "Dimpled Spheroids") endparam ;-------------------------------------------------------------------- ; Flexballs Parameters ;-------------------------------------------------------------------- float param flexballSize caption = "Flexball Size" default = 0.1 hint = "The size of the balls. Suggested range (0.01 to 2.0)." visible = (@trapType == "Flexballs") endparam float param flexballRadius caption = "Flexball Radius" default = 0.15 hint = "The radius of the balls. Suggested range (0.01 to 2.0)." visible = (@trapType == "Flexballs") endparam ;-------------------------------------------------------------------- ; Harlequin Parameters ;-------------------------------------------------------------------- float param harlequinSize caption = "Harlequin Size" default = 0.1 hint = "The size of the harlequin trap." visible = (@trapType == "Harlequin") endparam float param harlequinMultiplier caption = "Harlequin Multiplier" default = 2.0 hint = "The angle multiplier for the harlequin trap." visible = (@trapType == "Harlequin") endparam complex param harlequinSeed caption = "Harlequin Seed" default = (0.15,1.26875) hint = "The seed for the harlequin trap." visible = (@trapType == "Harlequin") endparam func harlequinFunction caption = "Modifier Function" default = ident() hint = "Modifier function 1." visible = (@trapType == "Harlequin") endfunc ;-------------------------------------------------------------------- ; Hypocycloid Parameters ;-------------------------------------------------------------------- float param hypoWidth caption = "Rolling Radius" default = 0.1 hint = "The rolling radius. Suggested range (less than Fixed Radius)." visible = (@trapType == "Hypocycloid") endparam param hypoFactor caption = "Fixed Radius" default = 0.1 hint = "The fixed radius. Suggested range (0.1 to 1.2)." visible = (@trapType == "Hypocycloid") endparam ;-------------------------------------------------------------------- ; Petals Parameters ;-------------------------------------------------------------------- float param petalSize caption = "Petal Size" default = 0.1 hint = "The size of the petals. Suggested range (0.01 to 2.0)." visible = (@trapType == "Petals") endparam float param petalOffset caption = "Petal Offset" default = 0.1 hint = "The offset of the petals. Suggested range (0.0 to 0.2)." visible = (@trapType == "Petals") endparam param petalColoring caption = "Petal Coloring" default = 0 enum = "3D" "Flat" visible = (@trapType == "Petals") endparam ;-------------------------------------------------------------------- ; Rings Parameters ;-------------------------------------------------------------------- float param ringSize caption = "Ring Size" default = 0.1 hint = "The size of the ring. Suggested range (0.005 to 0.3)." visible = (@trapType == "Rings") endparam ;-------------------------------------------------------------------- ; Ring Segments Parameters ;-------------------------------------------------------------------- float param ringRadius caption = "Ring Radius" default = 1.0 hint = "The radius to the midline of the ring." visible = (@trapType == "Ring Segments") endparam float param ringThickness caption = "Ring Thickness" default = 0.1 hint = "The thickness of the ring." visible = (@trapType == "Ring Segments") endparam ;-------------------------------------------------------------------- ; Spheres Parameters ;-------------------------------------------------------------------- float param sphereSize caption = "Sphere Size" default = 0.1 hint = "The size of the spheres. Suggested range (0.01 \ to 0.3)." visible = (@trapType == "Spheres") endparam ;-------------------------------------------------------------------- ; Spheroids Parameters ;-------------------------------------------------------------------- float param spheroidSize caption = "Sphere Size" default = 0.1 hint = "The size of the spheres. Suggested range (0.01 \ to 1.0)." visible = (@trapType == "Spheroids") endparam ;-------------------------------------------------------------------- ; Squares Parameters ;-------------------------------------------------------------------- float param squareSize caption = "Square Size" default = 0.1 hint = "The size of the squares. Suggested range (0.02 \ to 0.3)." visible = (@trapType == "Squares") endparam complex param squaresOffset caption = "Offset" default = (0.0,0.0) hint = "Offset for the center of the Squares." visible = (@trapType == "Squares") endparam ;-------------------------------------------------------------------- ; Stalks Parameters ;-------------------------------------------------------------------- float param stalkWidth caption = "Stalk Width" default = 0.1 hint = "Width of the stalk. Suggested range (0.01 to 0.5)." visible = (@trapType == "Stalks") endparam float param stalkLength caption = "Stalk Length" default = 0.1 hint = "Length of the stalk. Suggested range (0.01 to 10000.0)." visible = (@trapType == "Stalks") endparam ;-------------------------------------------------------------------- ; Star of David Parameters ;-------------------------------------------------------------------- float param starSize caption = "Star Size" default = 0.1 hint = "The Size of the star. Suggested range (0.05 to 1.0)." visible = (@trapType == "Star of David") endparam float param starWidth caption = "Star Width" default = 0.1 hint = "The width of the star. Suggested range (0.01 to 0.5)." visible = (@trapType == "Star of David") endparam ;-------------------------------------------------------------------- ; Tangent Balls Parameters ;-------------------------------------------------------------------- float param ballRadius caption = "Ball Radius" default = 0.1 hint = "The radius of the Tangent Balls." visible = (@trapType == "Tangent Balls") endparam ; float param shapeAdjust ; caption = "Shape Adjustment" ; default = 2.0 ; hint = "Tangent Ball shape modifier. Use 2.0 for the normal \ ; shape." ; visible = (@trapType == "Tangent Balls") ; endparam ;-------------------------------------------------------------------- ; Two Ellipses Parameters ;-------------------------------------------------------------------- float param ellipseWidth caption = "Elipse Width" default = 0.1 hint = "The width of the ellipses." visible = (@trapType == "Two Ellipses") endparam float param majorAxis1 caption = "Ellipse 1 Major Axis" default = 0.6 hint = "The major axis length of ellipse 1." visible = (@trapType == "Two Ellipses") endparam float param minorAxis1 caption = "Ellipse 1 Minor Axis" default = 0.6 hint = "The minor axis length of ellipse 1." visible = (@trapType == "Two Ellipses") endparam float param majorAxis2 caption = "Ellipse 2 Major Axis" default = 0.2 hint = "The major axis length of ellipse 2." visible = (@trapType == "Two Ellipses") endparam float param minorAxis2 caption = "Ellipse 2 Minor Axis" default = 0.2 hint = "The minor axis length of ellipse 2." visible = (@trapType == "Two Ellipses") endparam ;-------------------------------------------------------------------- ; Common Parameters ;-------------------------------------------------------------------- complex param offset caption = "Offset" default = (0.0, 0.0) hint = "The offset for the center of the trap." endparam param skip caption = "Iterations to Skip" default = 0 hint = "The number of iterations to skip." visible = (@trapType != "Design Gradient") endparam ;-------------------------------------------------------------------- ; Color Settings ;-------------------------------------------------------------------- heading caption = "Color Settings" endheading param colorPreset caption = "Color Preset" enum = "Gradient" "Custom" "Generate" "Default" "Default 12" \ "Default 16" "Default 24" "Color Wheel 12" "Alhambra 8" \ "Belvedere 8" "Bouquet 8" "Color Switch 8" "Evening Sky 8" \ "Fantasia 8" "Flowering Orchard 8" "Morning Sky 8" "Pastel 8" \ "Pastel Rainbow 8" "Showtime 8" "Soleil 8" "Chill 8" \ "Cloud Nine 8" "La Terra 8" "Santa Fe 8" "Spring 8" "Summer 8" \ "Fall 8" "Winter 8" "Mojave 8" "Gold/Green 8" "Gold/Green Alt 8" \ "Gold/Silver 8" "Gold/Silver Alt 8" "Purple/Yellow 8" \ "Purple/Yellow Alt 8" "Silver/Blue 8" "Silver/Blue Alt 8" \ "Fourth of July 3" "Blue/Silver 2" "Blue/White 2" "Cyan/Magenta 2" \ "Cyan/Yellow 2" "Gold/Green 2" "Purple/Yellow 2" "Red/Tan 2" default = 3 hint = "Use 'Gradient' for colors from the gradient. \ Use 'Custom' to set your own color ranges. \ Use 'Default' for the default colors. \ Use 'Generate' to create 3D-like colors from the \ gradient (allows using the gradient randomize function). \ Use any of the other predefined settings for those colors." endparam param customize caption = "Show/Customize" default = false hint = "Check to customize the selected color preset. NOTE: If you \ modify the default values for any of the range(s), you cannot \ get back to the default values for the range(s) you modify \ unless you reload the UCL." visible = (@colorPreset != "Gradient") && (@colorPreset != "Generate") \ && (@colorPreset != "Custom") endparam param colorMode caption = "Coloring Mode" enum = "Normal" "Angle" "Iteration" "Modulated Iter" "Magnitude" \ "Real" "Imag" default = 0 hint = "The type of coloring to use when the orbit is trapped." visible = (@colorPreset == "Gradient") endparam float param luminanceUpper caption = "Lum. Upper Value" default = 0.60 min = 0.0 max = 1.0 hint = "The value of the Luminance component for the upper value \ when generating the ranges from the gradient. This value \ is used with the brighter end of the color range." visible = (@colorPreset == "Generate") endparam float param luminanceLower caption = "Lum. Lower Value" default = 0.10 min = 0.0 max = 1.0 hint = "The value of the Luminance component for the lower value \ when generating the ranges from the gradient. This value \ is used with the darker end of the color range." visible = (@colorPreset == "Generate") endparam int param colorRanges caption = "Number of Ranges" default = 8 min = 1 max = 24 hint = "The number of color ranges (1..24)." visible = (@colorPreset == "Custom") || (@colorPreset == "Gradient") && \ (@colorMode == "Normal") endparam int param numRanges caption = "Number of Ranges" default = 8 min = 1 max = 200 hint = "The number of color ranges." visible = (@colorPreset == "Generate") endparam int param colorsPerRange caption = "Number of Colors" default = 30 hint = "The number of colors per range." visible = (@colorPreset == "Gradient") && (@colorMode == "Normal") endparam param perturbRanges caption = "Perturb Ranges" enum = "None" "Even/Odd" "1st Half / 2nd Half" "8 Range Custom" default = 0 hint = "Modify the way the ranges are assigned to the elements. \ 'None' = Assign in Order (0 1 2 3 4 5 6 7); 'Even Odd' = \ Assign Even Ranges, then Odd Ranges (0 2 4 6 1 3 5 7); \ '1st Half / 2nd Half' = Assign from first half of range, \ then 2nd half (0 4 1 5 2 6 3 7); '8 Range Custom' = Assign \ the ordering by entering digits 1-8. Only works for ranges \ with 8 colors." visible = ((@colorPreset == "Custom" && @colorRanges >= 3) || \ (@colorPreset == "Generate" && @numRanges >= 3) || \ (@colorPreset == "Gradient" && @colorRanges >= 3) || \ (@colorPreset != "Custom" && @colorPreset != "Generate" && \ @colorPreset != "Gradient")) && (@colorMode == "Normal") endparam int param rangeOrder caption = "Range Order" default = 12345678 min = 11111111 max = 88888888 hint = "Specify the color range ordering. Use digits 1-8 to specify \ the order the ranges will be used. For example, to reverse \ the ordering, specify 87654321. To alternate, use 13572468. \ If color map or preset is defined that does not contain exactly \ 8 ranges, then this parameter will not have any effect." visible = (@perturbRanges == "8 Range Custom") endparam heading caption = " " endheading ;-------------------------------------------------------------------- ; Color Defaults for Custom ;-------------------------------------------------------------------- heading caption = " Custom Color Settings" visible = (@colorPreset == "Custom") endheading color param colorMax1 caption = "Color Range 1 High" default = rgb(255/255,0/255,211/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorPreset == "Custom") endparam color param colorMin1 caption = "Color Range 1 Low" default = rgb(104/255,0/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorPreset == "Custom") endparam color param colorMax2 caption = "Color Range 2 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorRanges >= 2) && (@colorPreset == "Custom") endparam color param colorMin2 caption = "Color Range 2 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorRanges >= 2) && (@colorPreset == "Custom") endparam color param colorMax3 caption = "Color Range 3 High" default = rgb(255/255,118/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorRanges >= 3) && (@colorPreset == "Custom") endparam color param colorMin3 caption = "Color Range 3 Low" default = rgb(100/255,36/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorRanges >= 3) && (@colorPreset == "Custom") endparam color param colorMax4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorRanges >= 4) && (@colorPreset == "Custom") endparam color param colorMin4 caption = "Color Range 4 Low" default = rgb(92/255,61/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorRanges >= 4) && (@colorPreset == "Custom") endparam color param colorMax5 caption = "Color Range 5 High" default = rgb(0/255,255/255,55/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorRanges >= 5) && (@colorPreset == "Custom") endparam color param colorMin5 caption = "Color Range 5 Low" default = rgb(0/255,78/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorRanges >= 5) && (@colorPreset == "Custom") endparam color param colorMax6 caption = "Color Range 6 High" default = rgb(0/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorRanges >= 6) && (@colorPreset == "Custom") endparam color param colorMin6 caption = "Color Range 6 Low" default = rgb(0/255,71/255,74/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorRanges >= 6) && (@colorPreset == "Custom") endparam color param colorMax7 caption = "Color Range 7 High" default = rgb(0/255,90/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorRanges >= 7) && (@colorPreset == "Custom") endparam color param colorMin7 caption = "Color Range 7 Low" default = rgb(0/255,0/255,102/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorRanges >= 7) && (@colorPreset == "Custom") endparam color param colorMax8 caption = "Color Range 8 High" default = rgb(175/255,0/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorRanges >= 8) && (@colorPreset == "Custom") endparam color param colorMin8 caption = "Color Range 8 Low" default = rgb(57/255,0/255,86/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorRanges >= 8) && (@colorPreset == "Custom") endparam color param customMax9 caption = "Color Range 9 High" default = rgb(255/255,0/255,134/255) hint = "Specifies the color at the high end of Range #9." visible = (@colorRanges >= 9) && (@colorPreset == "Custom") endparam color param customMin9 caption = "Color Range 9 Low" default = rgb(106/255,0/255,55/255) hint = "Specifies the color at the low end of Range #9." visible = (@colorRanges >= 9) && (@colorPreset == "Custom") endparam color param customMax10 caption = "Color Range 10 High" default = rgb(255/255,54/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@colorRanges >= 10) && (@colorPreset == "Custom") endparam color param customMin10 caption = "Color Range 10 Low" default = rgb(94/255,18/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@colorRanges >= 10) && (@colorPreset == "Custom") endparam color param customMax11 caption = "Color Range 11 High" default = rgb(255/255,157/255,0/255) hint = "Specifies the color at the high end of Range #11." visible = (@colorRanges >= 11) && (@colorPreset == "Custom") endparam color param customMin11 caption = "Color Range 11 Low" default = rgb(90/255,40/255,0/255) hint = "Specifies the color at the low end of Range #11." visible = (@colorRanges >= 11) && (@colorPreset == "Custom") endparam color param customMax12 caption = "Color Range 12 High" default = rgb(229/255,255/255,0/255) hint = "Specifies the color at the high end of Range #12." visible = (@colorRanges >= 12) && (@colorPreset == "Custom") endparam color param customMin12 caption = "Color Range 12 Low" default = rgb(68/255,68/255,0/255) hint = "Specifies the color at the low end of Range #12." visible = (@colorRanges >= 12) && (@colorPreset == "Custom") endparam color param customMax13 caption = "Color Range 13 High" default = rgb(0/255,255/255,136/255) hint = "Specifies the color at the high end of Range #13." visible = (@colorRanges >= 13) && (@colorPreset == "Custom") endparam color param customMin13 caption = "Color Range 13 Low" default = rgb(0/255,66/255,30/255) hint = "Specifies the color at the low end of Range #13." visible = (@colorRanges >= 13) && (@colorPreset == "Custom") endparam color param customMax14 caption = "Color Range 14 High" default = rgb(0/255,212/255,255/255) hint = "Specifies the color at the high end of Range #14." visible = (@colorRanges >= 14) && (@colorPreset == "Custom") endparam color param customMin14 caption = "Color Range 14 Low" default = rgb(0/255,57/255,82/255) hint = "Specifies the color at the low end of Range #14." visible = (@colorRanges >= 14) && (@colorPreset == "Custom") endparam color param customMax15 caption = "Color Range 15 High" default = rgb(92/255,77/255,255/255) hint = "Specifies the color at the high end of Range #15." visible = (@colorRanges >= 15) && (@colorPreset == "Custom") endparam color param customMin15 caption = "Color Range 15 Low" default = rgb(28/255,0/255,94/255) hint = "Specifies the color at the low end of Range #15." visible = (@colorRanges >= 15) && (@colorPreset == "Custom") endparam color param customMax16 caption = "Color Range 16 High" default = rgb(209/255,0/255,255/255) hint = "Specifies the color at the high end of Range #16." visible = (@colorRanges >= 16) && (@colorPreset == "Custom") endparam color param customMin16 caption = "Color Range 16 Low" default = rgb(69/255,0/255,82/255) hint = "Specifies the color at the low end of Range #16." visible = (@colorRanges >= 16) && (@colorPreset == "Custom") endparam color param customMax17 caption = "Color Range 17 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #17." visible = (@colorRanges >= 17) && (@colorPreset == "Custom") endparam color param customMin17 caption = "Color Range 17 Low" default = rgb(84/255,0/255,84/255) hint = "Specifies the color at the low end of Range #17." visible = (@colorRanges >= 17) && (@colorPreset == "Custom") endparam color param customMax18 caption = "Color Range 18 High" default = rgb(255/255,35/255,88/255) hint = "Specifies the color at the high end of Range #18." visible = (@colorRanges >= 18) && (@colorPreset == "Custom") endparam color param customMin18 caption = "Color Range 18 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #18." visible = (@colorRanges >= 18) && (@colorPreset == "Custom") endparam color param customMax19 caption = "Color Range 19 High" default = rgb(255/255,85/255,0/255) hint = "Specifies the color at the high end of Range #19." visible = (@colorRanges >= 19) && (@colorPreset == "Custom") endparam color param customMin19 caption = "Color Range 19 Low" default = rgb(92/255,26/255,0/255) hint = "Specifies the color at the low end of Range #19." visible = (@colorRanges >= 19) && (@colorPreset == "Custom") endparam color param customMax20 caption = "Color Range 20 High" default = rgb(255/255,203/255,0/255) hint = "Specifies the color at the high end of Range #20." visible = (@colorRanges >= 20) && (@colorPreset == "Custom") endparam color param customMin20 caption = "Color Range 20 Low" default = rgb(82/255,54/255,0/255) hint = "Specifies the color at the low end of Range #20." visible = (@colorRanges >= 20) && (@colorPreset == "Custom") endparam color param customMax21 caption = "Color Range 21 High" default = rgb(191/255,255/255,0/255) hint = "Specifies the color at the high end of Range #21." visible = (@colorRanges >= 21) && (@colorPreset == "Custom") endparam color param customMin21 caption = "Color Range 21 Low" default = rgb(32/255,64/255,0/255) hint = "Specifies the color at the low end of Range #21." visible = (@colorRanges >= 21) && (@colorPreset == "Custom") endparam color param customMax22 caption = "Color Range 22 High" default = rgb(0/255,255/255,203/255) hint = "Specifies the color at the high end of Range #22." visible = (@colorRanges >= 22) && (@colorPreset == "Custom") endparam color param customMin22 caption = "Color Range 22 Low" default = rgb(0/255,62/255,48/255) hint = "Specifies the color at the low end of Range #22." visible = (@colorRanges >= 22) && (@colorPreset == "Custom") endparam color param customMax23 caption = "Color Range 23 High" default = rgb(0/255,153/255,255/255) hint = "Specifies the color at the high end of Range #23." visible = (@colorRanges >= 23) && (@colorPreset == "Custom") endparam color param customMin23 caption = "Color Range 23 Low" default = rgb(0/255,37/255,104/255) hint = "Specifies the color at the low end of Range #23." visible = (@colorRanges >= 23) && (@colorPreset == "Custom") endparam color param customMax24 caption = "Color Range 24 High" default = rgb(131/255,67/255,255/255) hint = "Specifies the color at the high end of Range #24." visible = (@colorRanges >= 24) && (@colorPreset == "Custom") endparam color param customMin24 caption = "Color Range 24 Low" default = rgb(57/255,0/255,112/255) hint = "Specifies the color at the low end of Range #24." visible = (@colorRanges >= 24) && (@colorPreset == "Custom") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default ;-------------------------------------------------------------------- heading caption = " Default Settings" visible = (@customize && @colorPreset == "Default") endheading color param defaultMax1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax2 caption = "Color Range 2 High" default = rgb(252/255,0/255,172/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin2 caption = "Color Range 2 Low" default = rgb(96/255,0/255,32/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax3 caption = "Color Range 3 High" default = rgb(252/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin3 caption = "Color Range 3 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax4 caption = "Color Range 4 High" default = rgb(252/255,128/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin4 caption = "Color Range 4 Low" default = rgb(160/255,16/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax5 caption = "Color Range 5 High" default = rgb(252/255,252/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin5 caption = "Color Range 5 Low" default = rgb(152/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax6 caption = "Color Range 6 High" default = rgb(0/255,252/255,128/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin6 caption = "Color Range 6 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax7 caption = "Color Range 7 High" default = rgb(0/255,252/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin7 caption = "Color Range 7 Low" default = rgb(0/255,48/255,48/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax8 caption = "Color Range 8 High" default = rgb(64/255,64/255,252/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 12 ;-------------------------------------------------------------------- heading caption = " Default 12 Color Settings" visible = (@customize && @colorPreset == "Default 12") endheading color param default12Max1 caption = "Color Range 1 High" default = rgb(255/255,85/255,253/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min1 caption = "Color Range 1 Low" default = rgb(98/255,0/255,76/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max2 caption = "Color Range 2 High" default = rgb(252/255,0/255,143/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min2 caption = "Color Range 2 Low" default = rgb(98/255,0/255,54/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max3 caption = "Color Range 3 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min3 caption = "Color Range 3 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max4 caption = "Color Range 4 High" default = rgb(255/255,97/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min4 caption = "Color Range 4 Low" default = rgb(104/255,27/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max5 caption = "Color Range 5 High" default = rgb(255/255,187/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min5 caption = "Color Range 5 Low" default = rgb(110/255,54/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max6 caption = "Color Range 6 High" default = rgb(255/255,248/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min6 caption = "Color Range 6 Low" default = rgb(102/255,60/255,6/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max7 caption = "Color Range 7 High" default = rgb(0/255,255/255,58/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min7 caption = "Color Range 7 Low" default = rgb(0/255,76/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max8 caption = "Color Range 8 High" default = rgb(0/255,255/255,205/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min8 caption = "Color Range 8 Low" default = rgb(0/255,89/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max9 caption = "Color Range 9 High" default = rgb(0/255,194/255,255/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min9 caption = "Color Range 9 Low" default = rgb(0/255,80/255,92/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max10 caption = "Color Range 10 High" default = rgb(35/255,109/255,255/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min10 caption = "Color Range 10 Low" default = rgb(0/255,4/255,102/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max11 caption = "Color Range 11 High" default = rgb(149/255,53/255,255/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min11 caption = "Color Range 11 Low" default = rgb(53/255,0/255,96/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max12 caption = "Color Range 12 High" default = rgb(195/255,0/255,252/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min12 caption = "Color Range 12 Low" default = rgb(58/255,0/255,84/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 12") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 16 ;-------------------------------------------------------------------- heading caption = " Default 16 Color Settings" visible = (@customize && @colorPreset == "Default 16") endheading color param default16Max1 caption = "Color Range 1 High" default = rgb(255/255,31/255,114/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min1 caption = "Color Range 1 Low" default = rgb(94/255,0/255,40/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max2 caption = "Color Range 2 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min2 caption = "Color Range 2 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max3 caption = "Color Range 3 High" default = rgb(255/255,78/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min3 caption = "Color Range 3 Low" default = rgb(88/255,27/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max4 caption = "Color Range 4 High" default = rgb(255/255,110/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min4 caption = "Color Range 4 Low" default = rgb(90/255,30/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max5 caption = "Color Range 5 High" default = rgb(255/255,187/255,31/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min5 caption = "Color Range 5 Low" default = rgb(88/255,38/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min6 caption = "Color Range 6 Low" default = rgb(96/255,57/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max7 caption = "Color Range 7 High" default = rgb(170/255,255/255,37/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min7 caption = "Color Range 7 Low" default = rgb(41/255,68/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max8 caption = "Color Range 8 High" default = rgb(0/255,255/255,94/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min8 caption = "Color Range 8 Low" default = rgb(0/255,62/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max9 caption = "Color Range 9 High" default = rgb(0/255,238/255,203/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min9 caption = "Color Range 9 Low" default = rgb(0/255,64/255,54/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max10 caption = "Color Range 10 High" default = rgb(11/255,166/255,255/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min10 caption = "Color Range 10 Low" default = rgb(0/255,38/255,78/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max11 caption = "Color Range 11 High" default = rgb(0/255,68/255,255/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min11 caption = "Color Range 11 Low" default = rgb(0/255,20/255,88/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max12 caption = "Color Range 12 High" default = rgb(99/255,0/255,255/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min12 caption = "Color Range 12 Low" default = rgb(47/255,0/255,94/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max13 caption = "Color Range 13 High" default = rgb(145/255,0/255,255/255) hint = "Specifies the color at the high end of Range #13." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min13 caption = "Color Range 13 Low" default = rgb(69/255,0/255,102/255) hint = "Specifies the color at the low end of Range #13." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max14 caption = "Color Range 14 High" default = rgb(221/255,0/255,255/255) hint = "Specifies the color at the high end of Range #14." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min14 caption = "Color Range 14 Low" default = rgb(86/255,0/255,100/255) hint = "Specifies the color at the low end of Range #14." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max15 caption = "Color Range 15 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #15." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min15 caption = "Color Range 15 Low" default = rgb(90/255,0/255,75/255) hint = "Specifies the color at the low end of Range #15." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max16 caption = "Color Range 16 High" default = rgb(255/255,0/255,140/255) hint = "Specifies the color at the high end of Range #16." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min16 caption = "Color Range 16 Low" default = rgb(96/255,0/255,60/255) hint = "Specifies the color at the low end of Range #16." visible = (@customize && @colorPreset == "Default 16") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 24 ;-------------------------------------------------------------------- heading caption = " Default 24 Color Settings" visible = (@customize && @colorPreset == "Default 24") endheading color param default24Max1 caption = "Color Range 1 High" default = rgb(255/255,0/255,211/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min1 caption = "Color Range 1 Low" default = rgb(104/255,0/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max2 caption = "Color Range 2 High" default = rgb(255/255,0/255,134/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min2 caption = "Color Range 2 Low" default = rgb(106/255,0/255,55/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max3 caption = "Color Range 3 High" default = rgb(255/255,35/255,88/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min3 caption = "Color Range 3 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max4 caption = "Color Range 4 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min4 caption = "Color Range 4 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max5 caption = "Color Range 5 High" default = rgb(255/255,54/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min5 caption = "Color Range 5 Low" default = rgb(92/255,26/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max6 caption = "Color Range 6 High" default = rgb(255/255,85/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min6 caption = "Color Range 6 Low" default = rgb(96/255,27/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max7 caption = "Color Range 7 High" default = rgb(255/255,118/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min7 caption = "Color Range 7 Low" default = rgb(100/255,38/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max8 caption = "Color Range 8 High" default = rgb(255/255,157/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min8 caption = "Color Range 8 Low" default = rgb(90/255,40/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max9 caption = "Color Range 9 High" default = rgb(255/255,203/255,0/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min9 caption = "Color Range 9 Low" default = rgb(82/255,54/255,0/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max10 caption = "Color Range 10 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min10 caption = "Color Range 10 Low" default = rgb(92/255,61/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max11 caption = "Color Range 11 High" default = rgb(229/255,255/255,0/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min11 caption = "Color Range 11 Low" default = rgb(68/255,68/255,0/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max12 caption = "Color Range 12 High" default = rgb(191/255,255/255,0/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min12 caption = "Color Range 12 Low" default = rgb(32/255,64/255,0/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max13 caption = "Color Range 13 High" default = rgb(0/255,255/255,55/255) hint = "Specifies the color at the high end of Range #13." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min13 caption = "Color Range 13 Low" default = rgb(0/255,78/255,0/255) hint = "Specifies the color at the low end of Range #13." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max14 caption = "Color Range 14 High" default = rgb(0/255,255/255,136/255) hint = "Specifies the color at the high end of Range #14." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min14 caption = "Color Range 14 Low" default = rgb(0/255,66/255,30/255) hint = "Specifies the color at the low end of Range #14." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max15 caption = "Color Range 15 High" default = rgb(0/255,255/255,203/255) hint = "Specifies the color at the high end of Range #15." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min15 caption = "Color Range 15 Low" default = rgb(0/255,62/255,48/255) hint = "Specifies the color at the low end of Range #15." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max16 caption = "Color Range 16 High" default = rgb(0/255,255/255,255/255) hint = "Specifies the color at the high end of Range #16." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min16 caption = "Color Range 16 Low" default = rgb(0/255,71/255,74/255) hint = "Specifies the color at the low end of Range #16." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max17 caption = "Color Range 17 High" default = rgb(0/255,212/255,255/255) hint = "Specifies the color at the high end of Range #17." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min17 caption = "Color Range 17 Low" default = rgb(0/255,57/255,82/255) hint = "Specifies the color at the low end of Range #17." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max18 caption = "Color Range 18 High" default = rgb(0/255,153/255,255/255) hint = "Specifies the color at the high end of Range #18." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min18 caption = "Color Range 18 Low" default = rgb(0/255,37/255,104/255) hint = "Specifies the color at the low end of Range #18." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max19 caption = "Color Range 19 High" default = rgb(0/255,90/255,255/255) hint = "Specifies the color at the high end of Range #19." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min19 caption = "Color Range 19 Low" default = rgb(0/255,0/255,102/255) hint = "Specifies the color at the low end of Range #19." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max20 caption = "Color Range 20 High" default = rgb(92/255,77/255,255/255) hint = "Specifies the color at the high end of Range #20." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min20 caption = "Color Range 20 Low" default = rgb(28/255,0/255,94/255) hint = "Specifies the color at the low end of Range #20." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max21 caption = "Color Range 21 High" default = rgb(131/255,67/255,255/255) hint = "Specifies the color at the high end of Range #21." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min21 caption = "Color Range 21 Low" default = rgb(57/255,0/255,112/255) hint = "Specifies the color at the low end of Range #21." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max22 caption = "Color Range 22 High" default = rgb(175/255,0/255,255/255) hint = "Specifies the color at the high end of Range #22." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min22 caption = "Color Range 22 Low" default = rgb(57/255,0/255,86/255) hint = "Specifies the color at the low end of Range #22." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max23 caption = "Color Range 23 High" default = rgb(209/255,0/255,255/255) hint = "Specifies the color at the high end of Range #23." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min23 caption = "Color Range 23 Low" default = rgb(64/255,0/255,76/255) hint = "Specifies the color at the low end of Range #23." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max24 caption = "Color Range 24 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #24." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min24 caption = "Color Range 24 Low" default = rgb(84/255,0/255,84/255) hint = "Specifies the color at the low end of Range #24." visible = (@customize && @colorPreset == "Default 24") endparam ;-------------------------------------------------------------------- ; Color Defaults for Color Wheel 12 ;-------------------------------------------------------------------- heading caption = " Color Wheel 12 Settings" visible = (@customize && @colorPreset == "Color Wheel 12") endheading color param colorWheel12Max1 caption = "Color Range 1 High" default = rgb(142/255,117/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min1 caption = "Color Range 1 Low" default = rgb(52/255,0/255,100/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max2 caption = "Color Range 2 High" default = rgb(224/255,9/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min2 caption = "Color Range 2 Low" default = rgb(86/255,0/255,84/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max3 caption = "Color Range 3 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min3 caption = "Color Range 3 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max4 caption = "Color Range 4 High" default = rgb(252/255,167/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min4 caption = "Color Range 4 Low" default = rgb(95/255,54/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max5 caption = "Color Range 5 High" default = rgb(190/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min5 caption = "Color Range 5 Low" default = rgb(63/255,84/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max6 caption = "Color Range 6 High" default = rgb(0/255,231/255,213/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min6 caption = "Color Range 6 Low" default = rgb(4/255,62/255,62/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max7 caption = "Color Range 7 High" default = rgb(182/255,27/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min7 caption = "Color Range 7 Low" default = rgb(53/255,0/255,92/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max8 caption = "Color Range 8 High" default = rgb(255/255,33/255,146/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min8 caption = "Color Range 8 Low" default = rgb(80/255,0/255,53/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max9 caption = "Color Range 9 High" default = rgb(255/255,110/255,0/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min9 caption = "Color Range 9 Low" default = rgb(101/255,25/255,21/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max10 caption = "Color Range 10 High" default = rgb(255/255,241/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min10 caption = "Color Range 10 Low" default = rgb(88/255,69/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max11 caption = "Color Range 11 High" default = rgb(0/255,248/255,103/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min11 caption = "Color Range 11 Low" default = rgb(0/255,83/255,15/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max12 caption = "Color Range 12 High" default = rgb(27/255,119/255,255/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min12 caption = "Color Range 12 Low" default = rgb(0/255,31/255,92/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Color Wheel 12") endparam ;-------------------------------------------------------------------- ; Color Defaults for Alhambra 8 ;-------------------------------------------------------------------- heading caption = " Alhambra 8 Settings" visible = (@customize && @colorPreset == "Alhambra 8") endheading color param alhambra8Max1 caption = "Color Range 1 High" default = rgb(15/255,222/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min1 caption = "Color Range 1 Low" default = rgb(0/255,43/255,52/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max2 caption = "Color Range 2 High" default = rgb(255/255,204/255,75/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min2 caption = "Color Range 2 Low" default = rgb(92/255,58/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max3 caption = "Color Range 3 High" default = rgb(188/255,152/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min3 caption = "Color Range 3 Low" default = rgb(41/255,0/255,70/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max4 caption = "Color Range 4 High" default = rgb(255/255,155/255,109/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min4 caption = "Color Range 4 Low" default = rgb(95/255,36/255,14/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max5 caption = "Color Range 5 High" default = rgb(121/255,180/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min5 caption = "Color Range 5 Low" default = rgb(0/255,47/255,91/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max6 caption = "Color Range 6 High" default = rgb(255/255,131/255,126/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min6 caption = "Color Range 6 Low" default = rgb(104/255,20/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max7 caption = "Color Range 7 High" default = rgb(33/255,255/255,220/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min7 caption = "Color Range 7 Low" default = rgb(0/255,67/255,49/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max8 caption = "Color Range 8 High" default = rgb(255/255,177/255,93/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min8 caption = "Color Range 8 Low" default = rgb(100/255,44/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Alhambra 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Belvedere 8 ;-------------------------------------------------------------------- heading caption = " Belvedere 8 Settings" visible = (@customize && @colorPreset == "Belvedere 8") endheading color param belvedere8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min1 caption = "Color Range 1 Low" default = rgb(92/255,92/255,122/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min2 caption = "Color Range 2 Low" default = rgb(92/255,92/255,122/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max3 caption = "Color Range 3 High" default = rgb(123/255,201/255,254/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min3 caption = "Color Range 3 Low" default = rgb(0/255,45/255,68/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max4 caption = "Color Range 4 High" default = rgb(255/255,230/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min4 caption = "Color Range 4 Low" default = rgb(162/255,28/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max5 caption = "Color Range 5 High" default = rgb(255/255,230/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min5 caption = "Color Range 5 Low" default = rgb(162/255,28/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max6 caption = "Color Range 6 High" default = rgb(0/255,255/255,217/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min6 caption = "Color Range 6 Low" default = rgb(0/255,54/255,46/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max7 caption = "Color Range 7 High" default = rgb(255/255,20/255,70/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min7 caption = "Color Range 7 Low" default = rgb(100/255,0/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max8 caption = "Color Range 8 High" default = rgb(95/255,84/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,89/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Belvedere 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Bouquet 8 ;-------------------------------------------------------------------- heading caption = " Bouquet 8 Settings" visible = (@customize && @colorPreset == "Bouquet 8") endheading color param bouquet8Max1 caption = "Color Range 1 High" default = rgb(0/255,255/255,131/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min1 caption = "Color Range 1 Low" default = rgb(0/255,84/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max2 caption = "Color Range 2 High" default = rgb(52/255,255/255,198/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min2 caption = "Color Range 2 Low" default = rgb(0/255,82/255,60/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max3 caption = "Color Range 3 High" default = rgb(0/255,244/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min3 caption = "Color Range 3 Low" default = rgb(0/255,64/255,74/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max4 caption = "Color Range 4 High" default = rgb(180/255,169/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min4 caption = "Color Range 4 Low" default = rgb(40/255,12/255,64/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max5 caption = "Color Range 5 High" default = rgb(251/255,148/255,230/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min5 caption = "Color Range 5 Low" default = rgb(100/255,20/255,67/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max6 caption = "Color Range 6 High" default = rgb(255/255,101/255,140/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min6 caption = "Color Range 6 Low" default = rgb(84/255,15/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max7 caption = "Color Range 7 High" default = rgb(255/255,149/255,111/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min7 caption = "Color Range 7 Low" default = rgb(77/255,36/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max8 caption = "Color Range 8 High" default = rgb(255/255,252/255,125/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min8 caption = "Color Range 8 Low" default = rgb(95/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Bouquet 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Color Switch 8 ;-------------------------------------------------------------------- heading caption = " Color Switch 8 Settings" visible = (@customize && @colorPreset == "Color Switch 8") endheading color param colorSwitch8Max1 caption = "Color Range 1 High" default = rgb(255/255,33/255,52/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min1 caption = "Color Range 1 Low" default = rgb(90/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max2 caption = "Color Range 2 High" default = rgb(61/255,136/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,82/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max3 caption = "Color Range 3 High" default = rgb(0/255,255/255,44/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min3 caption = "Color Range 3 Low" default = rgb(0/255,70/255,7/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max4 caption = "Color Range 4 High" default = rgb(255/255,131/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min4 caption = "Color Range 4 Low" default = rgb(105/255,40/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max5 caption = "Color Range 5 High" default = rgb(255/255,27/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min5 caption = "Color Range 5 Low" default = rgb(104/255,0/255,78/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max6 caption = "Color Range 6 High" default = rgb(168/255,87/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min6 caption = "Color Range 6 Low" default = rgb(35/255,0/255,58/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max7 caption = "Color Range 7 High" default = rgb(0/255,252/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min7 caption = "Color Range 7 Low" default = rgb(0/255,60/255,60/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,38/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min8 caption = "Color Range 8 Low" default = rgb(90/255,90/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Color Switch 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Evening Sky 8 ;-------------------------------------------------------------------- heading caption = " Evening Sky 8 Settings" visible = (@customize && @colorPreset == "Evening Sky 8") endheading color param eveningSky8Max1 caption = "Color Range 1 High" default = rgb(255/255,238/255,222/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min1 caption = "Color Range 1 Low" default = rgb(50/255,35/255,35/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max2 caption = "Color Range 2 High" default = rgb(255/255,226/255,85/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min2 caption = "Color Range 2 Low" default = rgb(85/255,54/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max3 caption = "Color Range 3 High" default = rgb(249/255,148/255,216/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min3 caption = "Color Range 3 Low" default = rgb(79/255,20/255,57/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max4 caption = "Color Range 4 High" default = rgb(159/255,159/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min4 caption = "Color Range 4 Low" default = rgb(22/255,16/255,54/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max5 caption = "Color Range 5 High" default = rgb(255/255,175/255,79/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min5 caption = "Color Range 5 Low" default = rgb(62/255,42/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max6 caption = "Color Range 6 High" default = rgb(124/255,190/255,251/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min6 caption = "Color Range 6 Low" default = rgb(13/255,40/255,62/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max7 caption = "Color Range 7 High" default = rgb(255/255,111/255,123/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min7 caption = "Color Range 7 Low" default = rgb(57/255,24/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max8 caption = "Color Range 8 High" default = rgb(111/255,255/255,245/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min8 caption = "Color Range 8 Low" default = rgb(0/255,60/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Evening Sky 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fantasia 8 ;-------------------------------------------------------------------- heading caption = " Fantasia 8 Settings" visible = (@customize && @colorPreset == "Fantasia 8") endheading color param fantasia8Max1 caption = "Color Range 1 High" default = rgb(255/255,230/255,103/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min1 caption = "Color Range 1 Low" default = rgb(102/255,81/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max2 caption = "Color Range 2 High" default = rgb(230/255,78/255,208/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min2 caption = "Color Range 2 Low" default = rgb(104/255,0/255,52/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max3 caption = "Color Range 3 High" default = rgb(180/255,119/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min3 caption = "Color Range 3 Low" default = rgb(56/255,0/255,82/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max4 caption = "Color Range 4 High" default = rgb(0/255,228/255,150/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min4 caption = "Color Range 4 Low" default = rgb(0/255,50/255,30/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max5 caption = "Color Range 5 High" default = rgb(131/255,148/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min5 caption = "Color Range 5 Low" default = rgb(38/255,31/255,85/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max6 caption = "Color Range 6 High" default = rgb(255/255,182/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min6 caption = "Color Range 6 Low" default = rgb(76/255,40/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max7 caption = "Color Range 7 High" default = rgb(252/255,0/255,113/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min7 caption = "Color Range 7 Low" default = rgb(84/255,0/255,34/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max8 caption = "Color Range 8 High" default = rgb(0/255,232/255,249/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min8 caption = "Color Range 8 Low" default = rgb(0/255,64/255,78/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Fantasia 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Flowering Orchard 8 ;-------------------------------------------------------------------- heading caption = " Flowering Orchard 8 Settings" visible = (@customize && @colorPreset == "Flowering Orchard 8") endheading color param floweringOrchard8Max1 caption = "Color Range 1 High" default = rgb(255/255,188/255,213/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min1 caption = "Color Range 1 Low" default = rgb(132/255,30/255,66/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max2 caption = "Color Range 2 High" default = rgb(240/255,135/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min2 caption = "Color Range 2 Low" default = rgb(70/255,0/255,59/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max3 caption = "Color Range 3 High" default = rgb(255/255,75/255,153/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min3 caption = "Color Range 3 Low" default = rgb(104/255,15/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max4 caption = "Color Range 4 High" default = rgb(71/255,213/255,119/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min4 caption = "Color Range 4 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max5 caption = "Color Range 5 High" default = rgb(255/255,102/255,209/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min5 caption = "Color Range 5 Low" default = rgb(116/255,10/255,86/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max6 caption = "Color Range 6 High" default = rgb(154/255,199/255,51/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min6 caption = "Color Range 6 Low" default = rgb(28/255,44/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max7 caption = "Color Range 7 High" default = rgb(255/255,162/255,228/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min7 caption = "Color Range 7 Low" default = rgb(110/255,0/255,55/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max8 caption = "Color Range 8 High" default = rgb(255/255,201/255,237/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min8 caption = "Color Range 8 Low" default = rgb(145/255,20/255,54/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Morning Sky 8 ;-------------------------------------------------------------------- heading caption = " Morning Sky 8 Settings" visible = (@customize && @colorPreset == "Morning Sky 8") endheading color param morningSky8Max1 caption = "Color Range 1 High" default = rgb(255/255,178/255,217/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min1 caption = "Color Range 1 Low" default = rgb(79/255,29/255,57/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max2 caption = "Color Range 2 High" default = rgb(107/255,246/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min2 caption = "Color Range 2 Low" default = rgb(13/255,70/255,75/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max3 caption = "Color Range 3 High" default = rgb(255/255,199/255,137/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min3 caption = "Color Range 3 Low" default = rgb(62/255,42/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max4 caption = "Color Range 4 High" default = rgb(241/255,245/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min4 caption = "Color Range 4 Low" default = rgb(16/255,24/255,46/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max5 caption = "Color Range 5 High" default = rgb(255/255,177/255,188/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min5 caption = "Color Range 5 Low" default = rgb(54/255,14/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max6 caption = "Color Range 6 High" default = rgb(248/255,236/255,236/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min6 caption = "Color Range 6 Low" default = rgb(49/255,38/255,35/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max7 caption = "Color Range 7 High" default = rgb(129/255,201/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min7 caption = "Color Range 7 Low" default = rgb(0/255,56/255,70/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,146/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min8 caption = "Color Range 8 Low" default = rgb(89/255,76/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Morning Sky 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Pastel 8 ;-------------------------------------------------------------------- heading caption = " Pastel 8 Settings" visible = (@customize && @colorPreset == "Pastel 8") endheading color param pastel8Max1 caption = "Color Range 1 High" default = rgb(147/255,255/255,193/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min1 caption = "Color Range 1 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max2 caption = "Color Range 2 High" default = rgb(147/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min2 caption = "Color Range 2 Low" default = rgb(0/255,48/255,48/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max3 caption = "Color Range 3 High" default = rgb(148/255,148/255,253/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min3 caption = "Color Range 3 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max4 caption = "Color Range 4 High" default = rgb(199/255,149/255,253/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min4 caption = "Color Range 4 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max5 caption = "Color Range 5 High" default = rgb(255/255,147/255,221/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min5 caption = "Color Range 5 Low" default = rgb(96/255,0/255,32/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max6 caption = "Color Range 6 High" default = rgb(254/255,148/255,148/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min6 caption = "Color Range 6 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max7 caption = "Color Range 7 High" default = rgb(255/255,202/255,147/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min7 caption = "Color Range 7 Low" default = rgb(160/255,16/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,147/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min8 caption = "Color Range 8 Low" default = rgb(152/255,64/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Pastel 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Pastel Rainbow 8 ;-------------------------------------------------------------------- heading caption = " Pastel Rainbow 8 Settings" visible = (@customize && @colorPreset == "Pastel Rainbow 8") endheading color param pastelRainbow8Max1 caption = "Color Range 1 High" default = rgb(242/255,246/255,174/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min1 caption = "Color Range 1 Low" default = rgb(20/255,48/255,12/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max2 caption = "Color Range 2 High" default = rgb(182/255,242/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min2 caption = "Color Range 2 Low" default = rgb(20/255,44/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max3 caption = "Color Range 3 High" default = rgb(202/255,202/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min3 caption = "Color Range 3 Low" default = rgb(36/255,36/255,48/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max4 caption = "Color Range 4 High" default = rgb(255/255,170/255,170/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min4 caption = "Color Range 4 Low" default = rgb(89/255,0/255,24/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max5 caption = "Color Range 5 High" default = rgb(255/255,246/255,178/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min5 caption = "Color Range 5 Low" default = rgb(40/255,0/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max6 caption = "Color Range 6 High" default = rgb(255/255,238/255,206/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min6 caption = "Color Range 6 Low" default = rgb(52/255,16/255,40/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max7 caption = "Color Range 7 High" default = rgb(214/255,222/255,161/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min7 caption = "Color Range 7 Low" default = rgb(4/255,32/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max8 caption = "Color Range 8 High" default = rgb(255/255,230/255,246/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min8 caption = "Color Range 8 Low" default = rgb(70/255,50/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Showtime 8 ;-------------------------------------------------------------------- heading caption = " Showtime 8 Settings" visible = (@customize && @colorPreset == "Showtime 8") endheading color param showtime8Max1 caption = "Color Range 1 High" default = rgb(241/255,53/255,82/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min1 caption = "Color Range 1 Low" default = rgb(88/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max2 caption = "Color Range 2 High" default = rgb(255/255,121/255,52/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min2 caption = "Color Range 2 Low" default = rgb(107/255,29/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max3 caption = "Color Range 3 High" default = rgb(253/255,168/255,67/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min3 caption = "Color Range 3 Low" default = rgb(97/255,42/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max4 caption = "Color Range 4 High" default = rgb(255/255,231/255,21/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min4 caption = "Color Range 4 Low" default = rgb(140/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max5 caption = "Color Range 5 High" default = rgb(58/255,219/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min5 caption = "Color Range 5 Low" default = rgb(0/255,36/255,83/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max6 caption = "Color Range 6 High" default = rgb(9/255,116/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min6 caption = "Color Range 6 Low" default = rgb(33/255,30/255,81/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max7 caption = "Color Range 7 High" default = rgb(105/255,71/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min7 caption = "Color Range 7 Low" default = rgb(36/255,0/255,76/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max8 caption = "Color Range 8 High" default = rgb(187/255,32/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min8 caption = "Color Range 8 Low" default = rgb(50/255,0/255,56/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Showtime 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Soleil 8 ;-------------------------------------------------------------------- heading caption = " Soleil 8 Settings" visible = (@customize && @colorPreset == "Soleil 8") endheading color param soleil8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,35/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min1 caption = "Color Range 1 Low" default = rgb(76/255,44/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max2 caption = "Color Range 2 High" default = rgb(255/255,209/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min2 caption = "Color Range 2 Low" default = rgb(59/255,24/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max3 caption = "Color Range 3 High" default = rgb(231/255,237/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min3 caption = "Color Range 3 Low" default = rgb(54/255,29/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max4 caption = "Color Range 4 High" default = rgb(255/255,141/255,49/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min4 caption = "Color Range 4 Low" default = rgb(92/255,32/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,156/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min5 caption = "Color Range 5 Low" default = rgb(76/255,44/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max6 caption = "Color Range 6 High" default = rgb(255/255,158/255,17/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min6 caption = "Color Range 6 Low" default = rgb(59/255,24/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,217/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min7 caption = "Color Range 7 Low" default = rgb(76/255,41/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max8 caption = "Color Range 8 High" default = rgb(255/255,184/255,53/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min8 caption = "Color Range 8 Low" default = rgb(76/255,29/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Soleil 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Chill 8 ;-------------------------------------------------------------------- heading caption = " Chill 8 Settings" visible = (@customize && @colorPreset == "Chill 8") endheading color param chillMax1 caption = "Color Range 1 High" default = rgb(233/255,245/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin1 caption = "Color Range 1 Low" default = rgb(0/255,21/255,60/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax2 caption = "Color Range 2 High" default = rgb(182/255,201/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,76/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax3 caption = "Color Range 3 High" default = rgb(0/255,34/255,136/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin3 caption = "Color Range 3 Low" default = rgb(9/255,9/255,59/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax4 caption = "Color Range 4 High" default = rgb(0/255,75/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,25/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax5 caption = "Color Range 5 High" default = rgb(233/255,245/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin5 caption = "Color Range 5 Low" default = rgb(0/255,21/255,60/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax6 caption = "Color Range 6 High" default = rgb(182/255,201/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,76/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax7 caption = "Color Range 7 High" default = rgb(0/255,34/255,136/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin7 caption = "Color Range 7 Low" default = rgb(9/255,9/255,59/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax8 caption = "Color Range 8 High" default = rgb(0/255,75/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,25/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Chill 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cloud Nine 8 ;-------------------------------------------------------------------- heading caption = " Cloud Nine 8 Settings" visible = (@customize && @colorPreset == "Cloud Nine 8") endheading color param cloudNineMax1 caption = "Color Range 1 High" default = rgb(255/255,255/255,173/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin1 caption = "Color Range 1 Low" default = rgb(143/255,60/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax2 caption = "Color Range 2 High" default = rgb(247/255,214/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin2 caption = "Color Range 2 Low" default = rgb(139/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax3 caption = "Color Range 3 High" default = rgb(212/255,255/255,249/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin3 caption = "Color Range 3 Low" default = rgb(0/255,53/255,20/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax4 caption = "Color Range 4 High" default = rgb(255/255,221/255,217/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin4 caption = "Color Range 4 Low" default = rgb(115/255,21/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax5 caption = "Color Range 5 High" default = rgb(255/255,255/255,173/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin5 caption = "Color Range 5 Low" default = rgb(140/255,63/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax6 caption = "Color Range 6 High" default = rgb(247/255,214/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin6 caption = "Color Range 6 Low" default = rgb(139/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax7 caption = "Color Range 7 High" default = rgb(212/255,255/255,249/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin7 caption = "Color Range 7 Low" default = rgb(0/255,53/255,20/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax8 caption = "Color Range 8 High" default = rgb(255/255,221/255,217/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin8 caption = "Color Range 8 Low" default = rgb(115/255,21/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for La Terra 8 ;-------------------------------------------------------------------- heading caption = " La Terra 8 Settings" visible = (@customize && @colorPreset == "La Terra 8") endheading color param laTerraMax1 caption = "Color Range 1 High" default = rgb(255/255,174/255,103/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin1 caption = "Color Range 1 Low" default = rgb(102/255,47/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax2 caption = "Color Range 2 High" default = rgb(255/255,242/255,39/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin2 caption = "Color Range 2 Low" default = rgb(100/255,58/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax3 caption = "Color Range 3 High" default = rgb(170/255,86/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin3 caption = "Color Range 3 Low" default = rgb(92/255,29/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax4 caption = "Color Range 4 High" default = rgb(190/255,118/255,13/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin4 caption = "Color Range 4 Low" default = rgb(84/255,41/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax5 caption = "Color Range 5 High" default = rgb(255/255,174/255,103/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin5 caption = "Color Range 5 Low" default = rgb(102/255,47/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax6 caption = "Color Range 6 High" default = rgb(255/255,242/255,39/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin6 caption = "Color Range 6 Low" default = rgb(100/255,58/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax7 caption = "Color Range 7 High" default = rgb(170/255,86/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin7 caption = "Color Range 7 Low" default = rgb(92/255,29/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax8 caption = "Color Range 8 High" default = rgb(190/255,118/255,13/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin8 caption = "Color Range 8 Low" default = rgb(84/255,41/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "La Terra 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Santa Fe 8 ;-------------------------------------------------------------------- heading caption = " Santa Fe 8 Settings" visible = (@customize && @colorPreset == "Santa Fe 8") endheading color param santaFe8Max1 caption = "Color Range 1 High" default = rgb(255/255,235/255,76/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min1 caption = "Color Range 1 Low" default = rgb(122/255,52/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max2 caption = "Color Range 2 High" default = rgb(0/255,229/255,222/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min2 caption = "Color Range 2 Low" default = rgb(0/255,48/255,51/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max3 caption = "Color Range 3 High" default = rgb(255/255,200/255,140/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min3 caption = "Color Range 3 Low" default = rgb(82/255,21/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max4 caption = "Color Range 4 High" default = rgb(255/255,157/255,82/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min4 caption = "Color Range 4 Low" default = rgb(130/255,0/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max5 caption = "Color Range 5 High" default = rgb(255/255,235/255,76/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min5 caption = "Color Range 5 Low" default = rgb(122/255,52/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max6 caption = "Color Range 6 High" default = rgb(0/255,229/255,222/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min6 caption = "Color Range 6 Low" default = rgb(0/255,48/255,51/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max7 caption = "Color Range 7 High" default = rgb(255/255,200/255,140/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min7 caption = "Color Range 7 Low" default = rgb(82/255,21/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max8 caption = "Color Range 8 High" default = rgb(255/255,157/255,82/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min8 caption = "Color Range 8 Low" default = rgb(130/255,0/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Santa Fe 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Spring 8 ;-------------------------------------------------------------------- heading caption = " Spring 8 Settings" visible = (@customize && @colorPreset == "Spring 8") endheading color param spring8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,145/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min1 caption = "Color Range 1 Low" default = rgb(110/255,65/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max2 caption = "Color Range 2 High" default = rgb(215/255,182/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min2 caption = "Color Range 2 Low" default = rgb(86/255,0/255,110/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max3 caption = "Color Range 3 High" default = rgb(189/255,246/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min3 caption = "Color Range 3 Low" default = rgb(0/255,51/255,54/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max4 caption = "Color Range 4 High" default = rgb(255/255,181/255,237/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min4 caption = "Color Range 4 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,145/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min5 caption = "Color Range 5 Low" default = rgb(110/255,65/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max6 caption = "Color Range 6 High" default = rgb(215/255,182/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min6 caption = "Color Range 6 Low" default = rgb(86/255,0/255,110/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max7 caption = "Color Range 7 High" default = rgb(189/255,246/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min7 caption = "Color Range 7 Low" default = rgb(0/255,51/255,54/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max8 caption = "Color Range 8 High" default = rgb(255/255,181/255,237/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min8 caption = "Color Range 8 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Spring 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Summer 8 ;-------------------------------------------------------------------- heading caption = " Summer 8 Settings" visible = (@customize && @colorPreset == "Summer 8") endheading color param summer8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min1 caption = "Color Range 1 Low" default = rgb(64/255,32/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max2 caption = "Color Range 2 High" default = rgb(255/255,64/255,64/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min2 caption = "Color Range 2 Low" default = rgb(64/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max3 caption = "Color Range 3 High" default = rgb(0/255,255/255,101/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min3 caption = "Color Range 3 Low" default = rgb(0/255,62/255,22/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max4 caption = "Color Range 4 High" default = rgb(64/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,64/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min5 caption = "Color Range 5 Low" default = rgb(64/255,32/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max6 caption = "Color Range 6 High" default = rgb(255/255,64/255,64/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min6 caption = "Color Range 6 Low" default = rgb(64/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max7 caption = "Color Range 7 High" default = rgb(0/255,255/255,101/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min7 caption = "Color Range 7 Low" default = rgb(0/255,62/255,22/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max8 caption = "Color Range 8 High" default = rgb(64/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Summer 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fall 8 ;-------------------------------------------------------------------- heading caption = " Fall 8 Settings" visible = (@customize && @colorPreset == "Fall 8") endheading color param fall8Max1 caption = "Color Range 1 High" default = rgb(255/255,235/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min1 caption = "Color Range 1 Low" default = rgb(136/255,46/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max2 caption = "Color Range 2 High" default = rgb(255/255,61/255,32/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min2 caption = "Color Range 2 Low" default = rgb(96/255,26/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max3 caption = "Color Range 3 High" default = rgb(255/255,184/255,26/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min3 caption = "Color Range 3 Low" default = rgb(86/255,24/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max4 caption = "Color Range 4 High" default = rgb(255/255,107/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min4 caption = "Color Range 4 Low" default = rgb(112/255,29/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max5 caption = "Color Range 5 High" default = rgb(255/255,235/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min5 caption = "Color Range 5 Low" default = rgb(136/255,46/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max6 caption = "Color Range 6 High" default = rgb(255/255,61/255,32/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min6 caption = "Color Range 6 Low" default = rgb(96/255,26/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max7 caption = "Color Range 7 High" default = rgb(255/255,184/255,26/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min7 caption = "Color Range 7 Low" default = rgb(86/255,24/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max8 caption = "Color Range 8 High" default = rgb(255/255,107/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min8 caption = "Color Range 8 Low" default = rgb(112/255,29/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Fall 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Winter 8 ;-------------------------------------------------------------------- heading caption = " Winter 8 Settings" visible = (@customize && @colorPreset == "Winter 8") endheading color param winter8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min1 caption = "Color Range 1 Low" default = rgb(65/255,65/255,87/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max2 caption = "Color Range 2 High" default = rgb(163/255,186/255,209/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min2 caption = "Color Range 2 Low" default = rgb(35/255,35/255,61/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max3 caption = "Color Range 3 High" default = rgb(173/255,166/255,157/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min3 caption = "Color Range 3 Low" default = rgb(78/255,65/255,52/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max4 caption = "Color Range 4 High" default = rgb(113/255,118/255,140/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min4 caption = "Color Range 4 Low" default = rgb(20/255,32/255,68/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min5 caption = "Color Range 5 Low" default = rgb(65/255,65/255,87/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max6 caption = "Color Range 6 High" default = rgb(163/255,186/255,209/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min6 caption = "Color Range 6 Low" default = rgb(35/255,35/255,61/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max7 caption = "Color Range 7 High" default = rgb(173/255,166/255,157/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min7 caption = "Color Range 7 Low" default = rgb(78/255,65/255,52/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max8 caption = "Color Range 8 High" default = rgb(113/255,118/255,140/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min8 caption = "Color Range 8 Low" default = rgb(20/255,32/255,68/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Winter 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Mojave 8 ;-------------------------------------------------------------------- heading caption = " Mojave 8 Settings" visible = (@customize && @colorPreset == "Mojave 8") endheading color param mojave8Max1 caption = "Color Range 1 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min1 caption = "Color Range 1 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max2 caption = "Color Range 2 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min2 caption = "Color Range 2 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max3 caption = "Color Range 3 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min3 caption = "Color Range 3 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max4 caption = "Color Range 4 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min4 caption = "Color Range 4 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max5 caption = "Color Range 5 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min5 caption = "Color Range 5 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max6 caption = "Color Range 6 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min6 caption = "Color Range 6 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max7 caption = "Color Range 7 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min7 caption = "Color Range 7 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max8 caption = "Color Range 8 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min8 caption = "Color Range 8 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Mojave 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green 8 ;-------------------------------------------------------------------- heading caption = " Gold/Green 8 Settings" visible = (@customize && @colorPreset == "Gold/Green 8") endheading color param goldGreen8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min2 caption = "Color Range 2 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min4 caption = "Color Range 4 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max5 caption = "Color Range 5 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min5 caption = "Color Range 5 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max6 caption = "Color Range 6 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min6 caption = "Color Range 6 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max7 caption = "Color Range 7 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min7 caption = "Color Range 7 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max8 caption = "Color Range 8 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min8 caption = "Color Range 8 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Green 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green Alt 8 ;-------------------------------------------------------------------- heading caption = " Gold/Green Alt 8 Settings" visible = (@customize && @colorPreset == "Gold/Green Alt 8") endheading color param goldGreenAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max2 caption = "Color Range 2 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min2 caption = "Color Range 2 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max4 caption = "Color Range 4 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min4 caption = "Color Range 4 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min5 caption = "Color Range 5 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max6 caption = "Color Range 6 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min6 caption = "Color Range 6 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min7 caption = "Color Range 7 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max8 caption = "Color Range 8 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min8 caption = "Color Range 8 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Silver 8 ;-------------------------------------------------------------------- heading caption = " Gold/Silver 8 Settings" visible = (@customize && @colorPreset == "Gold/Silver 8") endheading color param goldSilver8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min2 caption = "Color Range 2 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min4 caption = "Color Range 4 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min5 caption = "Color Range 5 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min6 caption = "Color Range 6 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min7 caption = "Color Range 7 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min8 caption = "Color Range 8 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Silver Alt 8 ;-------------------------------------------------------------------- heading caption = " Gold/Silver Alt 8 Settings" visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endheading color param goldSilverAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min2 caption = "Color Range 2 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min4 caption = "Color Range 4 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min5 caption = "Color Range 5 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min6 caption = "Color Range 6 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min7 caption = "Color Range 7 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min8 caption = "Color Range 8 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow 8 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow 8 Settings" visible = (@customize && @colorPreset == "Purple/Yellow 8") endheading color param purpleYellow8Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max2 caption = "Color Range 2 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min2 caption = "Color Range 2 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max3 caption = "Color Range 3 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min3 caption = "Color Range 3 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max4 caption = "Color Range 4 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min4 caption = "Color Range 4 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min5 caption = "Color Range 5 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min6 caption = "Color Range 6 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min7 caption = "Color Range 7 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min8 caption = "Color Range 8 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow Alt 8 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow Alt 8 Settings" visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endheading color param purpleYellowAlt8Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max3 caption = "Color Range 3 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min3 caption = "Color Range 3 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min4 caption = "Color Range 4 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max5 caption = "Color Range 5 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min5 caption = "Color Range 5 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min6 caption = "Color Range 6 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max7 caption = "Color Range 7 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min7 caption = "Color Range 7 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min8 caption = "Color Range 8 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Silver/Blue 8 ;-------------------------------------------------------------------- heading caption = " Silver/Blue 8 Settings" visible = (@customize && @colorPreset == "Silver/Blue 8") endheading color param silverBlue8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min1 caption = "Color Range 1 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min2 caption = "Color Range 2 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min3 caption = "Color Range 3 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min4 caption = "Color Range 4 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max5 caption = "Color Range 5 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min5 caption = "Color Range 5 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max6 caption = "Color Range 6 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max7 caption = "Color Range 7 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min7 caption = "Color Range 7 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max8 caption = "Color Range 8 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Silver/Blue Alt 8 ;-------------------------------------------------------------------- heading caption = " Silver/Blue Alt 8 Settings" visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endheading color param silverBlueAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min1 caption = "Color Range 1 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max2 caption = "Color Range 2 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min3 caption = "Color Range 3 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max4 caption = "Color Range 4 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min5 caption = "Color Range 5 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max6 caption = "Color Range 6 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min7 caption = "Color Range 7 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max8 caption = "Color Range 8 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fourth of July 3 ;-------------------------------------------------------------------- heading caption = " Fourth of July 3 Settings" visible = (@customize && @colorPreset == "Fourth of July 3") endheading color param fourthOfJuly3Max1 caption = "Color Range 1 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min1 caption = "Color Range 1 Low" default = rgb(128/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Max2 caption = "Color Range 2 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,128/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min3 caption = "Color Range 3 Low" default = rgb(128/255,128/255,128/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam ;-------------------------------------------------------------------- ; Color Defaults for Blue/Silver 2 ;-------------------------------------------------------------------- heading caption = " Blue/Silver 2 Settings" visible = (@customize && @colorPreset == "Blue/Silver 2") endheading color param blueSilver2Max1 caption = "Color Range 1 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Min1 caption = "Color Range 1 Low" default = rgb(0/255,0/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Min2 caption = "Color Range 2 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Blue/White 2 ;-------------------------------------------------------------------- heading caption = " Blue/White 2 Settings" visible = (@customize && @colorPreset == "Blue/White 2") endheading color param blueWhite2Max1 caption = "Color Range 1 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Min1 caption = "Color Range 1 Low" default = rgb(0/255,0/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Min2 caption = "Color Range 2 Low" default = rgb(124/255,124/255,124/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Blue/White 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cyan/Magenta 2 ;-------------------------------------------------------------------- heading caption = " Cyan/Magenta 2 Settings" visible = (@customize && @colorPreset == "Cyan/Magenta 2") endheading color param cyanMagenta2Max1 caption = "Color Range 1 High" default = rgb(128/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Min1 caption = "Color Range 1 Low" default = rgb(0/255,64/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Max2 caption = "Color Range 2 High" default = rgb(255/255,128/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Min2 caption = "Color Range 2 Low" default = rgb(64/255,0/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cyan/Yellow 2 ;-------------------------------------------------------------------- heading caption = " Cyan/Yellow 2 Settings" visible = (@customize && @colorPreset == "Cyan/Yellow 2") endheading color param cyanYellow2Max1 caption = "Color Range 1 High" default = rgb(128/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Min1 caption = "Color Range 1 Low" default = rgb(0/255,64/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green 2 ;-------------------------------------------------------------------- heading caption = " Gold/Green 2 Settings" visible = (@customize && @colorPreset == "Gold/Green 2") endheading color param goldGreen2Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Max2 caption = "Color Range 2 High" default = rgb(0/255,129/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Min2 caption = "Color Range 2 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow 2 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow 2 Settings" visible = (@customize && @colorPreset == "Purple/Yellow 2") endheading color param purpleYellow2Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Red/Tan 2 ;-------------------------------------------------------------------- heading caption = " Red/Tan 2 Settings" visible = (@customize && @colorPreset == "Red/Tan 2") endheading color param redTan2Max1 caption = "Color Range 1 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Min1 caption = "Color Range 1 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Max2 caption = "Color Range 2 High" default = rgb(255/255,208/255,152/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Min2 caption = "Color Range 2 Low" default = rgb(128/255,108/255,60/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Red/Tan 2") endparam ;-------------------------------------------------------------------- ; General Color Parameters ;-------------------------------------------------------------------- heading caption = " General Color Parameters" endheading color param maxColor caption = "Max Iter Color" default = rgb(0,0,0) hint = "Specifies the color assigned when the Maximum Iterations \ is reached before the orbit is trapped." endparam color param backColor caption = "Background Color" default = rgb(0,0,0) hint = "Specifies the color assigned to the background of the image." visible = (@solid == false) endparam int param colorOffset caption = "Range Offset" default = 0 min = 0 max = 23 hint = "This is used to rotate the color ranges. The offset can \ range from 0 to 23, where 23 is the maximum number of ranges \ that can be specified using the 'Generate' Color Preset." visible = (@colorPreset != "Gradient") endparam bool param solid caption = "Solid Background" hint = "If this is enabled orbits that aren't trapped become solid. \ This is used to make the background transparent for use in \ multi-layer images." default = false endparam ;-------------------------------------------------------------------- ; Texture Settings ;-------------------------------------------------------------------- heading caption = "Texture Settings" visible = (@colorPreset == "Gradient") endheading param useFBM caption = "Use fBm" hint = "Check this box to enable use of FBM texturing on the areas \ that are trapped." default = false visible = (@colorPreset == "Gradient") endparam param mask_type caption = "Mask Type" enum = "Iteration" "Range" visible = (@useFBM && @colorPreset == "Gradient") endparam param mask caption = "Mask Threshold" default = 0.0 min = 0.0 hint = "With the Distance Mask Type orbits that don't come at least \ this close to the trap are made solid. A value of zero means \ that no pixels are made solid." visible = (@useFBM && @colorPreset == "Gradient") endparam param mask_mod caption = "Mask Modulation" default = 0 hint = "With the Modulation Mask Type the iteration that the orbit \ was caught by the trap is modulated by this value, and if \ the Mask Threshold is smaller the pixel is made solid." visible = (@useFBM && @colorPreset == "Gradient") endparam param inverse caption = "Mask Reversed" default = false visible = (@useFBM && @colorPreset == "Gradient") endparam param texture_type caption = "Texture Type" enum = "Random" "fBm" "Corrected fBm" hint = "This is the type of texture to add to the coloring. The \ Texture Amount parameter must be non-zero for texture to be added." visible = (@useFBM && @colorPreset == "Gradient") endparam param rnd caption = "Texture Amount" default = 0.0 hint = "This is the amount of texturing to add to the coloring." visible = (@useFBM && @colorPreset == "Gradient") endparam param initial caption = "fBm Initialisation" enum = "Pixel" "Orbit" ;"Trap" hint = "Different ways of starting the fBm formula. With \ Orbit and Trap the texture will follow the orbit trap \ elements in some way." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmfunc caption = "fBm Function" enum = "Ident" "Abs" "Sqr" "Sqrt" "Ceil" hint = "This is a function that is added to the fBm to chnage \ the way that it looks." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmscale caption = "fBm Scale" default = 1.0 hint = "This is the overall scale of the noise." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmoffset caption = "fBm Offset" default = (0,0) hint = "This is the offset of the pattern. You can use this to shift \ the pattern around on the complex plane." visible = (@useFBM && @colorPreset == "Gradient") endparam param angle caption = "fBm Rotation" default = 0.0 hint = "This is the angle, in degrees, of the noise." visible = (@useFBM && @colorPreset == "Gradient") endparam param step caption = "fBm Scale Step" default = 0.5 hint = "This is the step in scale between noise iterations." visible = (@useFBM && @colorPreset == "Gradient") endparam param anglestep caption = "fBm Rotation Step" default = 37.0 hint = "This is the angle, in degrees, to rotate between noise \ iterations." visible = (@useFBM && @colorPreset == "Gradient") endparam param octaves caption = "fBm Octaves" default = 7 min = 1 hint = "This is the number of iterations of the noise formula." visible = (@useFBM && @colorPreset == "Gradient") endparam param power caption = "fBm Exponent" default = 2.0 hint = "This is the exponent used to scramble numbers." visible = (@useFBM && @colorPreset == "Gradient") endparam param pattern caption = "fBm Pattern" enum = "None" "Marble" "Wood" "Cells" "Squares" hint = "This creates a repeating pattern to be disturbed by the fBm." visible = (@useFBM && @colorPreset == "Gradient") endparam param pfreq caption = "fBm Frequency" default = 1.0 hint = "This controls the frequency of the Pattern." visible = (@useFBM && @colorPreset == "Gradient") endparam param turb caption = "fBm Turbulence" default = 1.0 hint = "With a Pattern other than None this effects how \ the pattern will be by the fBm." visible = (@useFBM && @colorPreset == "Gradient") endparam } kcc-PlaneCurveTraps { ; ; Many of the orbit traps used in this formula were taken from Samuel ; Monnier's "Thin Orbit Traps" formula. ; global: color colorMap [24, 2] int ranges = 24 int offset = 0 if (@colorPreset == "Gradient") ; Use the gradient for the color ranges. ranges = @colorRanges offset = 0 elseif (@colorPreset == "Custom") ; User specified custom range. ; Initial values by Toby Marshall. colorMap [0,0] = @colorMax1, colorMap [0,1] = @colorMin1 colorMap [1,0] = @colorMax2, colorMap [1,1] = @colorMin2 colorMap [2,0] = @colorMax3, colorMap [2,1] = @colorMin3 colorMap [3,0] = @colorMax4, colorMap [3,1] = @colorMin4 colorMap [4,0] = @colorMax5, colorMap [4,1] = @colorMin5 colorMap [5,0] = @colorMax6, colorMap [5,1] = @colorMin6 colorMap [6,0] = @colorMax7, colorMap [6,1] = @colorMin7 colorMap [7,0] = @colorMax8, colorMap [7,1] = @colorMin8 colorMap [8,0] = @customMax9, colorMap [8,1] = @customMin9 colorMap [9,0] = @customMax10, colorMap [9,1] = @customMin10 colorMap [10,0] = @customMax11, colorMap [10,1] = @customMin11 colorMap [11,0] = @customMax12, colorMap [11,1] = @customMin12 colorMap [12,0] = @customMax13, colorMap [12,1] = @customMin13 colorMap [13,0] = @customMax14, colorMap [13,1] = @customMin14 colorMap [14,0] = @customMax15, colorMap [14,1] = @customMin15 colorMap [15,0] = @customMax16, colorMap [15,1] = @customMin16 colorMap [16,0] = @customMax17, colorMap [16,1] = @customMin17 colorMap [17,0] = @customMax18, colorMap [17,1] = @customMin18 colorMap [18,0] = @customMax19, colorMap [18,1] = @customMin19 colorMap [19,0] = @customMax20, colorMap [19,1] = @customMin20 colorMap [20,0] = @customMax21, colorMap [20,1] = @customMin21 colorMap [21,0] = @customMax22, colorMap [21,1] = @customMin22 colorMap [22,0] = @customMax23, colorMap [22,1] = @customMin23 colorMap [23,0] = @customMax24, colorMap [23,1] = @customMin24 ranges = @colorRanges offset = @colorOffset elseif (@colorPreset == "Generate") ; Compute the color ranges using the gradient. ranges = 0 offset = @colorOffset while ranges < @numRanges color gradientColor = gradient(ranges/@numRanges) colorMap [ranges,0] = hsl(hue(gradientColor), sat(gradientColor), @luminanceUpper) colorMap [ranges,1] = hsl(hue(gradientColor), sat(gradientColor), @luminanceLower) ranges = ranges + 1 endwhile elseif (@colorPreset == "Default") ; colorMap [0,0] = @defaultMax1, colorMap [0,1] = @defaultMin1 colorMap [1,0] = @defaultMax2, colorMap [1,1] = @defaultMin2 colorMap [2,0] = @defaultMax3, colorMap [2,1] = @defaultMin3 colorMap [3,0] = @defaultMax4, colorMap [3,1] = @defaultMin4 colorMap [4,0] = @defaultMax5, colorMap [4,1] = @defaultMin5 colorMap [5,0] = @defaultMax6, colorMap [5,1] = @defaultMin6 colorMap [6,0] = @defaultMax7, colorMap [6,1] = @defaultMin7 colorMap [7,0] = @defaultMax8, colorMap [7,1] = @defaultMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Default 12") ; Created by Toby Marshall. colorMap [0,0] = @default12Max1, colorMap [0,1] = @default12Min1 colorMap [1,0] = @default12Max2, colorMap [1,1] = @default12Min2 colorMap [2,0] = @default12Max3, colorMap [2,1] = @default12Min3 colorMap [3,0] = @default12Max4, colorMap [3,1] = @default12Min4 colorMap [4,0] = @default12Max5, colorMap [4,1] = @default12Min5 colorMap [5,0] = @default12Max6, colorMap [5,1] = @default12Min6 colorMap [6,0] = @default12Max7, colorMap [6,1] = @default12Min7 colorMap [7,0] = @default12Max8, colorMap [7,1] = @default12Min8 colorMap [8,0] = @default12Max9, colorMap [8,1] = @default12Min9 colorMap [9,0] = @default12Max10, colorMap [9,1] = @default12Min10 colorMap [10,0] = @default12Max11, colorMap [10,1] = @default12Min11 colorMap [11,0] = @default12Max12, colorMap [11,1] = @default12Min12 ranges = 12 offset = @colorOffset elseif (@colorPreset == "Default 16") ; Created by Toby Marshall. colorMap [0,0] = @default16Max1, colorMap [0,1] = @default16Min1 colorMap [1,0] = @default16Max2, colorMap [1,1] = @default16Min2 colorMap [2,0] = @default16Max3, colorMap [2,1] = @default16Min3 colorMap [3,0] = @default16Max4, colorMap [3,1] = @default16Min4 colorMap [4,0] = @default16Max5, colorMap [4,1] = @default16Min5 colorMap [5,0] = @default16Max6, colorMap [5,1] = @default16Min6 colorMap [6,0] = @default16Max7, colorMap [6,1] = @default16Min7 colorMap [7,0] = @default16Max8, colorMap [7,1] = @default16Min8 colorMap [8,0] = @default16Max9, colorMap [8,1] = @default16Min9 colorMap [9,0] = @default16Max10, colorMap [9,1] = @default16Min10 colorMap [10,0] = @default16Max11, colorMap [10,1] = @default16Min11 colorMap [11,0] = @default16Max12, colorMap [11,1] = @default16Min12 colorMap [12,0] = @default16Max13, colorMap [12,1] = @default16Min13 colorMap [13,0] = @default16Max14, colorMap [13,1] = @default16Min14 colorMap [14,0] = @default16Max15, colorMap [14,1] = @default16Min15 colorMap [15,0] = @default16Max16, colorMap [15,1] = @default16Min16 ranges = 16 offset = @colorOffset elseif (@colorPreset == "Default 24") ; Created by Toby Marshall. colorMap [0,0] = @default24Max1, colorMap [0,1] = @default24Min1 colorMap [1,0] = @default24Max2, colorMap [1,1] = @default24Min2 colorMap [2,0] = @default24Max3, colorMap [2,1] = @default24Min3 colorMap [3,0] = @default24Max4, colorMap [3,1] = @default24Min4 colorMap [4,0] = @default24Max5, colorMap [4,1] = @default24Min5 colorMap [5,0] = @default24Max6, colorMap [5,1] = @default24Min6 colorMap [6,0] = @default24Max7, colorMap [6,1] = @default24Min7 colorMap [7,0] = @default24Max8, colorMap [7,1] = @default24Min8 colorMap [8,0] = @default24Max9, colorMap [8,1] = @default24Min9 colorMap [9,0] = @default24Max10, colorMap [9,1] = @default24Min10 colorMap [10,0] = @default24Max11, colorMap [10,1] = @default24Min11 colorMap [11,0] = @default24Max12, colorMap [11,1] = @default24Min12 colorMap [12,0] = @default24Max13, colorMap [12,1] = @default24Min13 colorMap [13,0] = @default24Max14, colorMap [13,1] = @default24Min14 colorMap [14,0] = @default24Max15, colorMap [14,1] = @default24Min15 colorMap [15,0] = @default24Max16, colorMap [15,1] = @default24Min16 colorMap [16,0] = @default24Max17, colorMap [16,1] = @default24Min17 colorMap [17,0] = @default24Max18, colorMap [17,1] = @default24Min18 colorMap [18,0] = @default24Max19, colorMap [18,1] = @default24Min19 colorMap [19,0] = @default24Max20, colorMap [19,1] = @default24Min20 colorMap [20,0] = @default24Max21, colorMap [20,1] = @default24Min21 colorMap [21,0] = @default24Max22, colorMap [21,1] = @default24Min22 colorMap [22,0] = @default24Max23, colorMap [22,1] = @default24Min23 colorMap [23,0] = @default24Max24, colorMap [23,1] = @default24Min24 ranges = 24 offset = @colorOffset elseif (@colorPreset == "Color Wheel 12") ; Created by Toby Marshall. colorMap [0,0] = @colorWheel12Max1, colorMap [0,1] = @colorWheel12Min1 colorMap [1,0] = @colorWheel12Max2, colorMap [1,1] = @colorWheel12Min2 colorMap [2,0] = @colorWheel12Max3, colorMap [2,1] = @colorWheel12Min3 colorMap [3,0] = @colorWheel12Max4, colorMap [3,1] = @colorWheel12Min4 colorMap [4,0] = @colorWheel12Max5, colorMap [4,1] = @colorWheel12Min5 colorMap [5,0] = @colorWheel12Max6, colorMap [5,1] = @colorWheel12Min6 colorMap [6,0] = @colorWheel12Max7, colorMap [6,1] = @colorWheel12Min7 colorMap [7,0] = @colorWheel12Max8, colorMap [7,1] = @colorWheel12Min8 colorMap [8,0] = @colorWheel12Max9, colorMap [8,1] = @colorWheel12Min9 colorMap [9,0] = @colorWheel12Max10, colorMap [9,1] = @colorWheel12Min10 colorMap [10,0] = @colorWheel12Max11, colorMap [10,1] = @colorWheel12Min11 colorMap [11,0] = @colorWheel12Max12, colorMap [11,1] = @colorWheel12Min12 ranges = 12 offset = @colorOffset elseif (@colorPreset == "Alhambra 8") ; Created by Toby Marshall. colorMap [0,0] = @alhambra8Max1, colorMap [0,1] = @alhambra8Min1 colorMap [1,0] = @alhambra8Max2, colorMap [1,1] = @alhambra8Min2 colorMap [2,0] = @alhambra8Max3, colorMap [2,1] = @alhambra8Min3 colorMap [3,0] = @alhambra8Max4, colorMap [3,1] = @alhambra8Min4 colorMap [4,0] = @alhambra8Max5, colorMap [4,1] = @alhambra8Min5 colorMap [5,0] = @alhambra8Max6, colorMap [5,1] = @alhambra8Min6 colorMap [6,0] = @alhambra8Max7, colorMap [6,1] = @alhambra8Min7 colorMap [7,0] = @alhambra8Max8, colorMap [7,1] = @alhambra8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Belvedere 8") ; Created by Toby Marshall. colorMap [0,0] = @belvedere8Max1, colorMap [0,1] = @belvedere8Min1 colorMap [1,0] = @belvedere8Max2, colorMap [1,1] = @belvedere8Min2 colorMap [2,0] = @belvedere8Max3, colorMap [2,1] = @belvedere8Min3 colorMap [3,0] = @belvedere8Max4, colorMap [3,1] = @belvedere8Min4 colorMap [4,0] = @belvedere8Max5, colorMap [4,1] = @belvedere8Min5 colorMap [5,0] = @belvedere8Max6, colorMap [5,1] = @belvedere8Min6 colorMap [6,0] = @belvedere8Max7, colorMap [6,1] = @belvedere8Min7 colorMap [7,0] = @belvedere8Max8, colorMap [7,1] = @belvedere8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Bouquet 8") ; Created by Toby Marshall. colorMap [0,0] = @bouquet8Max1, colorMap [0,1] = @bouquet8Min1 colorMap [1,0] = @bouquet8Max2, colorMap [1,1] = @bouquet8Min2 colorMap [2,0] = @bouquet8Max3, colorMap [2,1] = @bouquet8Min3 colorMap [3,0] = @bouquet8Max4, colorMap [3,1] = @bouquet8Min4 colorMap [4,0] = @bouquet8Max5, colorMap [4,1] = @bouquet8Min5 colorMap [5,0] = @bouquet8Max6, colorMap [5,1] = @bouquet8Min6 colorMap [6,0] = @bouquet8Max7, colorMap [6,1] = @bouquet8Min7 colorMap [7,0] = @bouquet8Max8, colorMap [7,1] = @bouquet8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Color Switch 8") ; Created by Toby Marshall. colorMap [0,0] = @colorSwitch8Max1, colorMap [0,1] = @colorSwitch8Min1 colorMap [1,0] = @colorSwitch8Max2, colorMap [1,1] = @colorSwitch8Min2 colorMap [2,0] = @colorSwitch8Max3, colorMap [2,1] = @colorSwitch8Min3 colorMap [3,0] = @colorSwitch8Max4, colorMap [3,1] = @colorSwitch8Min4 colorMap [4,0] = @colorSwitch8Max5, colorMap [4,1] = @colorSwitch8Min5 colorMap [5,0] = @colorSwitch8Max6, colorMap [5,1] = @colorSwitch8Min6 colorMap [6,0] = @colorSwitch8Max7, colorMap [6,1] = @colorSwitch8Min7 colorMap [7,0] = @colorSwitch8Max8, colorMap [7,1] = @colorSwitch8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Evening Sky 8") ; Created by Toby Marshall. colorMap [0,0] = @eveningSky8Max1, colorMap [0,1] = @eveningSky8Min1 colorMap [1,0] = @eveningSky8Max2, colorMap [1,1] = @eveningSky8Min2 colorMap [2,0] = @eveningSky8Max3, colorMap [2,1] = @eveningSky8Min3 colorMap [3,0] = @eveningSky8Max4, colorMap [3,1] = @eveningSky8Min4 colorMap [4,0] = @eveningSky8Max5, colorMap [4,1] = @eveningSky8Min5 colorMap [5,0] = @eveningSky8Max6, colorMap [5,1] = @eveningSky8Min6 colorMap [6,0] = @eveningSky8Max7, colorMap [6,1] = @eveningSky8Min7 colorMap [7,0] = @eveningSky8Max8, colorMap [7,1] = @eveningSky8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fantasia 8") ; Created by Toby Marshall. colorMap [0,0] = @fantasia8Max1, colorMap [0,1] = @fantasia8Min1 colorMap [1,0] = @fantasia8Max2, colorMap [1,1] = @fantasia8Min2 colorMap [2,0] = @fantasia8Max3, colorMap [2,1] = @fantasia8Min3 colorMap [3,0] = @fantasia8Max4, colorMap [3,1] = @fantasia8Min4 colorMap [4,0] = @fantasia8Max5, colorMap [4,1] = @fantasia8Min5 colorMap [5,0] = @fantasia8Max6, colorMap [5,1] = @fantasia8Min6 colorMap [6,0] = @fantasia8Max7, colorMap [6,1] = @fantasia8Min7 colorMap [7,0] = @fantasia8Max8, colorMap [7,1] = @fantasia8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Flowering Orchard 8") ; Created by Toby Marshall. colorMap [0,0] = @floweringOrchard8Max1, colorMap [0,1] = @floweringOrchard8Min1 colorMap [1,0] = @floweringOrchard8Max2, colorMap [1,1] = @floweringOrchard8Min2 colorMap [2,0] = @floweringOrchard8Max3, colorMap [2,1] = @floweringOrchard8Min3 colorMap [3,0] = @floweringOrchard8Max4, colorMap [3,1] = @floweringOrchard8Min4 colorMap [4,0] = @floweringOrchard8Max5, colorMap [4,1] = @floweringOrchard8Min5 colorMap [5,0] = @floweringOrchard8Max6, colorMap [5,1] = @floweringOrchard8Min6 colorMap [6,0] = @floweringOrchard8Max7, colorMap [6,1] = @floweringOrchard8Min7 colorMap [7,0] = @floweringOrchard8Max8, colorMap [7,1] = @floweringOrchard8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Morning Sky 8") ; Created by Toby Marshall. colorMap [0,0] = @morningSky8Max1, colorMap [0,1] = @morningSky8Min1 colorMap [1,0] = @morningSky8Max2, colorMap [1,1] = @morningSky8Min2 colorMap [2,0] = @morningSky8Max3, colorMap [2,1] = @morningSky8Min3 colorMap [3,0] = @morningSky8Max4, colorMap [3,1] = @morningSky8Min4 colorMap [4,0] = @morningSky8Max5, colorMap [4,1] = @morningSky8Min5 colorMap [5,0] = @morningSky8Max6, colorMap [5,1] = @morningSky8Min6 colorMap [6,0] = @morningSky8Max7, colorMap [6,1] = @morningSky8Min7 colorMap [7,0] = @morningSky8Max8, colorMap [7,1] = @morningSky8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Pastel 8") ; colorMap [0,0] = @pastel8Max1, colorMap [0,1] = @pastel8Min1 colorMap [1,0] = @pastel8Max2, colorMap [1,1] = @pastel8Min2 colorMap [2,0] = @pastel8Max3, colorMap [2,1] = @pastel8Min3 colorMap [3,0] = @pastel8Max4, colorMap [3,1] = @pastel8Min4 colorMap [4,0] = @pastel8Max5, colorMap [4,1] = @pastel8Min5 colorMap [5,0] = @pastel8Max6, colorMap [5,1] = @pastel8Min6 colorMap [6,0] = @pastel8Max7, colorMap [6,1] = @pastel8Min7 colorMap [7,0] = @pastel8Max8, colorMap [7,1] = @pastel8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Pastel Rainbow 8") ; Created by Angela Wilczynski. colorMap [0,0] = @pastelRainbow8Max1, colorMap [0,1] = @pastelRainbow8Min1 colorMap [1,0] = @pastelRainbow8Max2, colorMap [1,1] = @pastelRainbow8Min2 colorMap [2,0] = @pastelRainbow8Max3, colorMap [2,1] = @pastelRainbow8Min3 colorMap [3,0] = @pastelRainbow8Max4, colorMap [3,1] = @pastelRainbow8Min4 colorMap [4,0] = @pastelRainbow8Max5, colorMap [4,1] = @pastelRainbow8Min5 colorMap [5,0] = @pastelRainbow8Max6, colorMap [5,1] = @pastelRainbow8Min6 colorMap [6,0] = @pastelRainbow8Max7, colorMap [6,1] = @pastelRainbow8Min7 colorMap [7,0] = @pastelRainbow8Max8, colorMap [7,1] = @pastelRainbow8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Showtime 8") ; Created by Toby Marshall. colorMap [0,0] = @showtime8Max1, colorMap [0,1] = @showtime8Min1 colorMap [1,0] = @showtime8Max2, colorMap [1,1] = @showtime8Min2 colorMap [2,0] = @showtime8Max3, colorMap [2,1] = @showtime8Min3 colorMap [3,0] = @showtime8Max4, colorMap [3,1] = @showtime8Min4 colorMap [4,0] = @showtime8Max5, colorMap [4,1] = @showtime8Min5 colorMap [5,0] = @showtime8Max6, colorMap [5,1] = @showtime8Min6 colorMap [6,0] = @showtime8Max7, colorMap [6,1] = @showtime8Min7 colorMap [7,0] = @showtime8Max8, colorMap [7,1] = @showtime8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Soleil 8") ; Created by Toby Marshall. colorMap [0,0] = @soleil8Max1, colorMap [0,1] = @soleil8Min1 colorMap [1,0] = @soleil8Max2, colorMap [1,1] = @soleil8Min2 colorMap [2,0] = @soleil8Max3, colorMap [2,1] = @soleil8Min3 colorMap [3,0] = @soleil8Max4, colorMap [3,1] = @soleil8Min4 colorMap [4,0] = @soleil8Max5, colorMap [4,1] = @soleil8Min5 colorMap [5,0] = @soleil8Max6, colorMap [5,1] = @soleil8Min6 colorMap [6,0] = @soleil8Max7, colorMap [6,1] = @soleil8Min7 colorMap [7,0] = @soleil8Max8, colorMap [7,1] = @soleil8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Chill 8") ; Created by Toby Marshall. colorMap [0,0] = @chillMax1, colorMap [0,1] = @chillMin1 colorMap [1,0] = @chillMax2, colorMap [1,1] = @chillMin2 colorMap [2,0] = @chillMax3, colorMap [2,1] = @chillMin3 colorMap [3,0] = @chillMax4, colorMap [3,1] = @chillMin4 colorMap [4,0] = @chillMax5, colorMap [4,1] = @chillMin5 colorMap [5,0] = @chillMax6, colorMap [5,1] = @chillMin6 colorMap [6,0] = @chillMax7, colorMap [6,1] = @chillMin7 colorMap [7,0] = @chillMax8, colorMap [7,1] = @chillMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Cloud Nine 8") ; Created by Toby Marshall. colorMap [0,0] = @cloudNineMax1, colorMap [0,1] = @cloudNineMin1 colorMap [1,0] = @cloudNineMax2, colorMap [1,1] = @cloudNineMin2 colorMap [2,0] = @cloudNineMax3, colorMap [2,1] = @cloudNineMin3 colorMap [3,0] = @cloudNineMax4, colorMap [3,1] = @cloudNineMin4 colorMap [4,0] = @cloudNineMax5, colorMap [4,1] = @cloudNineMin5 colorMap [5,0] = @cloudNineMax6, colorMap [5,1] = @cloudNineMin6 colorMap [6,0] = @cloudNineMax7, colorMap [6,1] = @cloudNineMin7 colorMap [7,0] = @cloudNineMax8, colorMap [7,1] = @cloudNineMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "La Terra 8") ; Created by Toby Marshall. colorMap [0,0] = @laTerraMax1, colorMap [0,1] = @laTerraMin1 colorMap [1,0] = @laTerraMax2, colorMap [1,1] = @laTerraMin2 colorMap [2,0] = @laTerraMax3, colorMap [2,1] = @laTerraMin3 colorMap [3,0] = @laTerraMax4, colorMap [3,1] = @laTerraMin4 colorMap [4,0] = @laTerraMax5, colorMap [4,1] = @laTerraMin5 colorMap [5,0] = @laTerraMax6, colorMap [5,1] = @laTerraMin6 colorMap [6,0] = @laTerraMax7, colorMap [6,1] = @laTerraMin7 colorMap [7,0] = @laTerraMax8, colorMap [7,1] = @laTerraMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Santa Fe 8") ; Created by Toby Marshall. colorMap [0,0] = @santaFe8Max1, colorMap [0,1] = @santaFe8Min1 colorMap [1,0] = @santaFe8Max2, colorMap [1,1] = @santaFe8Min2 colorMap [2,0] = @santaFe8Max3, colorMap [2,1] = @santaFe8Min3 colorMap [3,0] = @santaFe8Max4, colorMap [3,1] = @santaFe8Min4 colorMap [4,0] = @santaFe8Max5, colorMap [4,1] = @santaFe8Min5 colorMap [5,0] = @santaFe8Max6, colorMap [5,1] = @santaFe8Min6 colorMap [6,0] = @santaFe8Max7, colorMap [6,1] = @santaFe8Min7 colorMap [7,0] = @santaFe8Max8, colorMap [7,1] = @santaFe8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Spring 8") ; Created by Toby Marshall. colorMap [0,0] = @spring8Max1, colorMap [0,1] = @spring8Min1 colorMap [1,0] = @spring8Max2, colorMap [1,1] = @spring8Min2 colorMap [2,0] = @spring8Max3, colorMap [2,1] = @spring8Min3 colorMap [3,0] = @spring8Max4, colorMap [3,1] = @spring8Min4 colorMap [4,0] = @spring8Max5, colorMap [4,1] = @spring8Min5 colorMap [5,0] = @spring8Max6, colorMap [5,1] = @spring8Min6 colorMap [6,0] = @spring8Max7, colorMap [6,1] = @spring8Min7 colorMap [7,0] = @spring8Max8, colorMap [7,1] = @spring8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Summer 8") ; Created by Toby Marshall. colorMap [0,0] = @summer8Max1, colorMap [0,1] = @summer8Min1 colorMap [1,0] = @summer8Max2, colorMap [1,1] = @summer8Min2 colorMap [2,0] = @summer8Max3, colorMap [2,1] = @summer8Min3 colorMap [3,0] = @summer8Max4, colorMap [3,1] = @summer8Min4 colorMap [4,0] = @summer8Max5, colorMap [4,1] = @summer8Min5 colorMap [5,0] = @summer8Max6, colorMap [5,1] = @summer8Min6 colorMap [6,0] = @summer8Max7, colorMap [6,1] = @summer8Min7 colorMap [7,0] = @summer8Max8, colorMap [7,1] = @summer8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fall 8") ; Created by Toby Marshall. colorMap [0,0] = @fall8Max1, colorMap [0,1] = @fall8Min1 colorMap [1,0] = @fall8Max2, colorMap [1,1] = @fall8Min2 colorMap [2,0] = @fall8Max3, colorMap [2,1] = @fall8Min3 colorMap [3,0] = @fall8Max4, colorMap [3,1] = @fall8Min4 colorMap [4,0] = @fall8Max5, colorMap [4,1] = @fall8Min5 colorMap [5,0] = @fall8Max6, colorMap [5,1] = @fall8Min6 colorMap [6,0] = @fall8Max7, colorMap [6,1] = @fall8Min7 colorMap [7,0] = @fall8Max8, colorMap [7,1] = @fall8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Winter 8") ; Created by Toby Marshall. colorMap [0,0] = @winter8Max1, colorMap [0,1] = @winter8Min1 colorMap [1,0] = @winter8Max2, colorMap [1,1] = @winter8Min2 colorMap [2,0] = @winter8Max3, colorMap [2,1] = @winter8Min3 colorMap [3,0] = @winter8Max4, colorMap [3,1] = @winter8Min4 colorMap [4,0] = @winter8Max5, colorMap [4,1] = @winter8Min5 colorMap [5,0] = @winter8Max6, colorMap [5,1] = @winter8Min6 colorMap [6,0] = @winter8Max7, colorMap [6,1] = @winter8Min7 colorMap [7,0] = @winter8Max8, colorMap [7,1] = @winter8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Mojave 8") ; Created by Toby Marshall. colorMap [0,0] = @mojave8Max1, colorMap [0,1] = @mojave8Min1 colorMap [1,0] = @mojave8Max2, colorMap [1,1] = @mojave8Min2 colorMap [2,0] = @mojave8Max3, colorMap [2,1] = @mojave8Min3 colorMap [3,0] = @mojave8Max4, colorMap [3,1] = @mojave8Min4 colorMap [4,0] = @mojave8Max5, colorMap [4,1] = @mojave8Min5 colorMap [5,0] = @mojave8Max6, colorMap [5,1] = @mojave8Min6 colorMap [6,0] = @mojave8Max7, colorMap [6,1] = @mojave8Min7 colorMap [7,0] = @mojave8Max8, colorMap [7,1] = @mojave8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Green 8") ; colorMap [0,0] = @goldGreen8Max1, colorMap [0,1] = @goldGreen8Min1 colorMap [1,0] = @goldGreen8Max2, colorMap [1,1] = @goldGreen8Min2 colorMap [2,0] = @goldGreen8Max3, colorMap [2,1] = @goldGreen8Min3 colorMap [3,0] = @goldGreen8Max4, colorMap [3,1] = @goldGreen8Min4 colorMap [4,0] = @goldGreen8Max5, colorMap [4,1] = @goldGreen8Min5 colorMap [5,0] = @goldGreen8Max6, colorMap [5,1] = @goldGreen8Min6 colorMap [6,0] = @goldGreen8Max7, colorMap [6,1] = @goldGreen8Min7 colorMap [7,0] = @goldGreen8Max8, colorMap [7,1] = @goldGreen8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Green Alt 8") ; colorMap [0,0] = @goldGreenAlt8Max1, colorMap [0,1] = @goldGreenAlt8Min1 colorMap [1,0] = @goldGreenAlt8Max2, colorMap [1,1] = @goldGreenAlt8Min2 colorMap [2,0] = @goldGreenAlt8Max3, colorMap [2,1] = @goldGreenAlt8Min3 colorMap [3,0] = @goldGreenAlt8Max4, colorMap [3,1] = @goldGreenAlt8Min4 colorMap [4,0] = @goldGreenAlt8Max5, colorMap [4,1] = @goldGreenAlt8Min5 colorMap [5,0] = @goldGreenAlt8Max6, colorMap [5,1] = @goldGreenAlt8Min6 colorMap [6,0] = @goldGreenAlt8Max7, colorMap [6,1] = @goldGreenAlt8Min7 colorMap [7,0] = @goldGreenAlt8Max8, colorMap [7,1] = @goldGreenAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Silver 8") ; colorMap [0,0] = @goldSilver8Max1, colorMap [0,1] = @goldSilver8Min1 colorMap [1,0] = @goldSilver8Max2, colorMap [1,1] = @goldSilver8Min2 colorMap [2,0] = @goldSilver8Max3, colorMap [2,1] = @goldSilver8Min3 colorMap [3,0] = @goldSilver8Max4, colorMap [3,1] = @goldSilver8Min4 colorMap [4,0] = @goldSilver8Max5, colorMap [4,1] = @goldSilver8Min5 colorMap [5,0] = @goldSilver8Max6, colorMap [5,1] = @goldSilver8Min6 colorMap [6,0] = @goldSilver8Max7, colorMap [6,1] = @goldSilver8Min7 colorMap [7,0] = @goldSilver8Max8, colorMap [7,1] = @goldSilver8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Silver/Blue 8") ; colorMap [0,0] = @silverBlue8Max1, colorMap [0,1] = @silverBlue8Min1 colorMap [1,0] = @silverBlue8Max2, colorMap [1,1] = @silverBlue8Min2 colorMap [2,0] = @silverBlue8Max3, colorMap [2,1] = @silverBlue8Min3 colorMap [3,0] = @silverBlue8Max4, colorMap [3,1] = @silverBlue8Min4 colorMap [4,0] = @silverBlue8Max5, colorMap [4,1] = @silverBlue8Min5 colorMap [5,0] = @silverBlue8Max6, colorMap [5,1] = @silverBlue8Min6 colorMap [6,0] = @silverBlue8Max7, colorMap [6,1] = @silverBlue8Min7 colorMap [7,0] = @silverBlue8Max8, colorMap [7,1] = @silverBlue8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Silver/Blue Alt 8") ; colorMap [0,0] = @silverBlueAlt8Max1, colorMap [0,1] = @silverBlueAlt8Min1 colorMap [1,0] = @silverBlueAlt8Max2, colorMap [1,1] = @silverBlueAlt8Min2 colorMap [2,0] = @silverBlueAlt8Max3, colorMap [2,1] = @silverBlueAlt8Min3 colorMap [3,0] = @silverBlueAlt8Max4, colorMap [3,1] = @silverBlueAlt8Min4 colorMap [4,0] = @silverBlueAlt8Max5, colorMap [4,1] = @silverBlueAlt8Min5 colorMap [5,0] = @silverBlueAlt8Max6, colorMap [5,1] = @silverBlueAlt8Min6 colorMap [6,0] = @silverBlueAlt8Max7, colorMap [6,1] = @silverBlueAlt8Min7 colorMap [7,0] = @silverBlueAlt8Max8, colorMap [7,1] = @silverBlueAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Silver Alt 8") ; colorMap [0,0] = @goldSilverAlt8Max1, colorMap [0,1] = @goldSilverAlt8Min1 colorMap [1,0] = @goldSilverAlt8Max2, colorMap [1,1] = @goldSilverAlt8Min2 colorMap [2,0] = @goldSilverAlt8Max3, colorMap [2,1] = @goldSilverAlt8Min3 colorMap [3,0] = @goldSilverAlt8Max4, colorMap [3,1] = @goldSilverAlt8Min4 colorMap [4,0] = @goldSilverAlt8Max5, colorMap [4,1] = @goldSilverAlt8Min5 colorMap [5,0] = @goldSilverAlt8Max6, colorMap [5,1] = @goldSilverAlt8Min6 colorMap [6,0] = @goldSilverAlt8Max7, colorMap [6,1] = @goldSilverAlt8Min7 colorMap [7,0] = @goldSilverAlt8Max8, colorMap [7,1] = @goldSilverAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow 8") ; colorMap [0,0] = @purpleYellow8Max1, colorMap [0,1] = @purpleYellow8Min1 colorMap [1,0] = @purpleYellow8Max2, colorMap [1,1] = @purpleYellow8Min2 colorMap [2,0] = @purpleYellow8Max3, colorMap [2,1] = @purpleYellow8Min3 colorMap [3,0] = @purpleYellow8Max4, colorMap [3,1] = @purpleYellow8Min4 colorMap [4,0] = @purpleYellow8Max5, colorMap [4,1] = @purpleYellow8Min5 colorMap [5,0] = @purpleYellow8Max6, colorMap [5,1] = @purpleYellow8Min6 colorMap [6,0] = @purpleYellow8Max7, colorMap [6,1] = @purpleYellow8Min7 colorMap [7,0] = @purpleYellow8Max8, colorMap [7,1] = @purpleYellow8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow Alt 8") ; colorMap [0,0] = @purpleYellowAlt8Max1, colorMap [0,1] = @purpleYellowAlt8Min1 colorMap [1,0] = @purpleYellowAlt8Max2, colorMap [1,1] = @purpleYellowAlt8Min2 colorMap [2,0] = @purpleYellowAlt8Max3, colorMap [2,1] = @purpleYellowAlt8Min3 colorMap [3,0] = @purpleYellowAlt8Max4, colorMap [3,1] = @purpleYellowAlt8Min4 colorMap [4,0] = @purpleYellowAlt8Max5, colorMap [4,1] = @purpleYellowAlt8Min5 colorMap [5,0] = @purpleYellowAlt8Max6, colorMap [5,1] = @purpleYellowAlt8Min6 colorMap [6,0] = @purpleYellowAlt8Max7, colorMap [6,1] = @purpleYellowAlt8Min7 colorMap [7,0] = @purpleYellowAlt8Max8, colorMap [7,1] = @purpleYellowAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fourth of July 3") ; colorMap [0,0] = @fourthOfJuly3Max1, colorMap [0,1] = @fourthOfJuly3Min1 colorMap [1,0] = @fourthOfJuly3Max2, colorMap [1,1] = @fourthOfJuly3Min2 colorMap [2,0] = @fourthOfJuly3Max3, colorMap [2,1] = @fourthOfJuly3Min3 ranges = 3 offset = @colorOffset elseif (@colorPreset == "Blue/Silver 2") ; colorMap [0,0] = @blueSilver2Max1, colorMap [0,1] = @blueSilver2Min1 colorMap [1,0] = @blueSilver2Max2, colorMap [1,1] = @blueSilver2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Blue/White 2") ; colorMap [0,0] = @blueWhite2Max1, colorMap [0,1] = @blueWhite2Min1 colorMap [1,0] = @blueWhite2Max2, colorMap [1,1] = @blueWhite2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Cyan/Magenta 2") ; colorMap [0,0] = @cyanMagenta2Max1, colorMap [0,1] = @cyanMagenta2Min1 colorMap [1,0] = @cyanMagenta2Max2, colorMap [1,1] = @cyanMagenta2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Cyan/Yellow 2") ; colorMap [0,0] = @cyanYellow2Max1, colorMap [0,1] = @cyanYellow2Min1 colorMap [1,0] = @cyanYellow2Max2, colorMap [1,1] = @cyanYellow2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Gold/Green 2") ; colorMap [0,0] = @goldGreen2Max1, colorMap [0,1] = @goldGreen2Min1 colorMap [1,0] = @goldGreen2Max2, colorMap [1,1] = @goldGreen2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow 2") ; colorMap [0,0] = @purpleYellow2Max1, colorMap [0,1] = @purpleYellow2Min1 colorMap [1,0] = @purpleYellow2Max2, colorMap [1,1] = @purpleYellow2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Red/Tan 2") ; colorMap [0,0] = @redTan2Max1, colorMap [0,1] = @redTan2Min1 colorMap [1,0] = @redTan2Max2, colorMap [1,1] = @redTan2Min2 ranges = 2 offset = @colorOffset endif if (@perturbRanges == "8 Range Custom" && ranges == 8) ; If we are using 8 ranges, then take into account ; the rangeOrdering parameter. int range[8] ; Convert range ordering from 12345678 to .12345678 float ordering = @rangeOrder / 100000000 ; Convert .12345678 to 1.2345678 ordering = ordering * 10 ; Get the first digit int range[0] = trunc (ordering) ; Subract the first digit, i.e. 1.2345678 becomes .2345678 ordering = ordering - range[0] ; Get the second digit ordering = ordering * 10 int range[1] = trunc (ordering) ordering = ordering - range[1] ; Get the third digit ordering = ordering * 10 int range[2] = trunc (ordering) ordering = ordering - range[2] ; Get the fourth digit ordering = ordering * 10 int range[3] = trunc (ordering) ordering = ordering - range[3] ; Get the fifth digit ordering = ordering * 10 int range[4] = trunc (ordering) ordering = ordering - range[4] ; Get the sixth digit ordering = ordering * 10 int range[5] = trunc (ordering) ordering = ordering - range[5] ; Get the seventh digit ordering = ordering * 10 int range[6] = trunc (ordering) ordering = ordering - range[6] ; Get the eighth digit ordering = ordering * 10 int range[7] = round (ordering) ordering = ordering - range[7] ; Save the original order of the maps. color tempMap[8,2] tempMap[0,0] = colorMap[0,0], tempMap[0,1] = colorMap[0,1] tempMap[1,0] = colorMap[1,0], tempMap[1,1] = colorMap[1,1] tempMap[2,0] = colorMap[2,0], tempMap[2,1] = colorMap[2,1] tempMap[3,0] = colorMap[3,0], tempMap[3,1] = colorMap[3,1] tempMap[4,0] = colorMap[4,0], tempMap[4,1] = colorMap[4,1] tempMap[5,0] = colorMap[5,0], tempMap[5,1] = colorMap[5,1] tempMap[6,0] = colorMap[6,0], tempMap[6,1] = colorMap[6,1] tempMap[7,0] = colorMap[7,0], tempMap[7,1] = colorMap[7,1] ; Reorder the maps according to the rangeOrder parameter. colorMap[0,0] = tempMap[range[0]-1,0], colorMap[0,1] = tempMap[range[0]-1,1] colorMap[1,0] = tempMap[range[1]-1,0], colorMap[1,1] = tempMap[range[1]-1,1] colorMap[2,0] = tempMap[range[2]-1,0], colorMap[2,1] = tempMap[range[2]-1,1] colorMap[3,0] = tempMap[range[3]-1,0], colorMap[3,1] = tempMap[range[3]-1,1] colorMap[4,0] = tempMap[range[4]-1,0], colorMap[4,1] = tempMap[range[4]-1,1] colorMap[5,0] = tempMap[range[5]-1,0], colorMap[5,1] = tempMap[range[5]-1,1] colorMap[6,0] = tempMap[range[6]-1,0], colorMap[6,1] = tempMap[range[6]-1,1] colorMap[7,0] = tempMap[range[7]-1,0], colorMap[7,1] = tempMap[range[7]-1,1] endif init: int rangeNum = 0 int iter = 0 int trapIter = 0 float minDist = 0.0 float dist = 0.0 float dist2 = 0.0 float x = 0.0 float y = 0.0 float angle = 0.0 float texture = 0.0 float colorIndex = 0.0 float indexFactor = 0.0 float trapWidth = 0.0 float bwidth = 0.0 float noise = 0.0 float sum = 0.0 complex p = 0 complex pat_p = 0.0 color trappedColor = rgb (0,0,0) bool trapped = false bool trappedOnce = false bool useBorder = false bool masked = false complex trappedZ = (0.0,0.0) complex ztest = (0.0,0.0) complex ztest2 = (0.0,0.0) loop: if (@borderWidth > 0.0) && (@colorPreset == "Gradient") && \ (@colorMode != "Normal") bwidth = @borderWidth else bwidth = 0.0 endif ztest = #z - @offset ztest = ztest*exp(1i*pi/180*@rotation)/@size x = sqrt(@ratio)*real(ztest) y = 1/sqrt(@ratio)*imag(ztest) ; Check the trap mode. If trapMode == "First Iteration", then ; everything is normal. If trapMode == "Last Iteration", then ; we need to keep looping so that we can capture the "Last" ; value that falls in the trap range. This will put larger ; shapes below smaller ones. if @trapMode == "Last Iteration" trapped = false endif if !trapped && iter >= @skip if @trapType == "Ampersand Curve" ztest2 = @fn1((@fn2(y^(2*@shapeAdjust3))-@fn3(x^2+(1-@shapeAdjust4)))* \ @fn4((x^@shapeAdjust5)-1)*(@shapeAdjust1*@fn5(x)-@shapeAdjust2)- \ 4*(@fn6(x^2*@shapeAdjust6)+@fn7(y^(2*@shapeAdjust7))-2* \ @fn8(x^@shapeAdjust8))^2)-@distort elseif @trapType == "ArcTangent" ztest2 = @fn1(atan(@fn2(x^@shapeAdjust1*@shapeAdjust3))- \ @fn3(y^@shapeAdjust2))-@distort elseif @trapType == "Bean Curve" ztest2 = @fn1(@fn2(x^4*@shapeAdjust1)+@fn3(x^(2*@shapeAdjust2))* \ @fn4(y^(2*@shapeAdjust3))+@fn5(y^4*@shapeAdjust4)- \ @fn6(x^@shapeAdjust5)*@fn7(x^(2*@shapeAdjust6)+ \ @fn8(y^2+(1-@shapeAdjust7))))-@distort elseif @trapType == "Bicorn Curve" ztest2 = @fn1(@fn2(y^2*@shapeAdjust2)*(@shapeAdjust1^2-@fn3(x^2)))- \ (@fn4(x^(2*@shapeAdjust3))+2*@shapeAdjust1* \ @fn5(y^@shapeAdjust4)-@shapeAdjust1^2)^2-@distort elseif @trapType == "Bicuspid Curve" ztest2 = @fn1(@fn2(x^(2*@shapeAdjust2)-@shapeAdjust1^2)* \ @fn3(x^@shapeAdjust3-@shapeAdjust1)^2+ \ @fn4(y^(2*@shapeAdjust4)-@shapeAdjust1^2)^2)-@distort elseif @trapType == "Bifoliate" ztest2 = @fn1(@fn2(x^4*@shapeAdjust2)+@fn3(y^4*@shapeAdjust3)- \ 2*@shapeAdjust1*@fn4(abs(x^@shapeAdjust4)* \ @fn5(y^(2*@shapeAdjust5))))-@distort elseif @trapType == "Bifolium" ztest2 = @fn1(@fn2(x^(1+@shapeAdjust2))+@fn3(y^2+(1-@shapeAdjust3)))^2- \ 4*@shapeAdjust1*@fn4(abs(x^@shapeAdjust4)* \ @fn5(y^(3-@shapeAdjust5)))-@distort elseif @trapType == "Bow" ztest2 = @fn1(@fn2(x^4*@shapeAdjust1)-@fn3(x^2+(1-@shapeAdjust2))* \ @fn4(y^@shapeAdjust3)+@fn5(y^3*@shapeAdjust4))-@distort elseif @trapType == "Butterfly Curve" ztest2 = @fn1(@fn2(y^(6*@shapeAdjust1))-(@fn3(x^2+(1-@shapeAdjust2))- \ @fn4(x^6+(1-@shapeAdjust3))))-@distort elseif @trapType == "Cassini Ovals" ztest2 = @fn1((@fn2(x^2*@shapeAdjust3)+@fn3(y^2*@shapeAdjust4)+ \ @shapeAdjust1^2)^2-4*@shapeAdjust1^2* \ @fn4(x^(3-@shapeAdjust5))-@shapeAdjust2^4)-@distort elseif @trapType == "Circle" ztest2 = @fn1(@fn2((x*@shapeAdjust1)^(3-@shapeAdjust2))+ \ @fn3((y*@shapeAdjust3)^(3-@shapeAdjust4))-1)-@distort elseif @trapType == "Cissoid of Diocles" ztest2 = @fn1(@fn2(x^@shapeAdjust2)*@fn3(x^2+(1-@shapeAdjust3)+ \ @fn4(y^2*@shapeAdjust4))-2*@shapeAdjust1* \ @fn5(y^2+(1-@shapeAdjust5)))-@distort elseif @trapType == "Cochleoid" ztest2 = @fn1((@fn2(x^2*@shapeAdjust2)+@fn3(y^2*@shapeAdjust3))* \ atan(@fn4(y^@shapeAdjust4)/@fn5(x^@shapeAdjust5))- \ @shapeAdjust1*abs(@fn6(y^@shapeAdjust6)))-@distort elseif @trapType == "Cocked Hat" ztest2 = @fn1(@fn2(x^2*@shapeAdjust3)+2*@shapeAdjust1*@fn3(y^@shapeAdjust4)- \ @shapeAdjust1^2)^2-@fn4(y^(3-@shapeAdjust5))* \ (@shapeAdjust2^2-@fn5(x^2*@shapeAdjust6))-@distort elseif @trapType == "Conchoid of Nicomedes" ztest2 = @fn1((@fn2(x-@shapeAdjust1))^2*(@fn3(x^(2*@shapeAdjust3))+ \ @fn4(y^2*@shapeAdjust4))-@shapeAdjust2^2* \ @fn5(x^2*@shapeAdjust5))-@distort elseif @trapType == "Cruciform" ztest2 = @fn1(@fn2(x^2*@shapeAdjust3)*@fn3(y^(1+@shapeAdjust4))- \ @shapeAdjust1^2*@fn4(x^(1+@shapeAdjust5))-@shapeAdjust2^2* \ @fn5(y^(3-@shapeAdjust6)))-@distort elseif @trapType == "Devil's Curve" ztest2 = @fn1(@fn2(y^(3+@shapeAdjust4))-@shapeAdjust1^2* \ @fn3(y^2+(1-@shapeAdjust5))-@fn4(x^4*@shapeAdjust3)+ \ @shapeAdjust2^2*@fn5(x^(1+@shapeAdjust6)))-@distort elseif @trapType == "Diamond" ztest2 = @fn1(abs(@fn2(x*@shapeAdjust1))+abs(@fn3(y^@shapeAdjust2))-1)- \ @distort elseif @trapType == "Dumbbell Curve" ztest2 = @fn1(@fn2(y^2*@shapeAdjust2)-@shapeAdjust1^2* \ (@fn3(x^(5-@shapeAdjust3))-@fn4(x^(7-@shapeAdjust4))))-@distort elseif @trapType == "Dürer's Conchoid" ztest2 = @fn1(2*@fn2(y^(1+@shapeAdjust3))*(@fn3(x^(1+@shapeAdjust4))+ \ @fn4(y^2*@shapeAdjust5))-2*@shapeAdjust2* \ @fn5(y^2+(1-@shapeAdjust6))*(@fn6(x^@shapeAdjust7)+ \ @fn7(y+(1-@shapeAdjust8)))+(@shapeAdjust2^2-3*@shapeAdjust1^2)* \ @fn8(y^(1+@shapeAdjust9))-@shapeAdjust1^2* \ @fn9(x^2*@shapeAdjust10)+2*@shapeAdjust1^2*@shapeAdjust2* \ (@fn10(x^@shapeAdjust11)+@fn11(y^@shapeAdjust12))+ \ @shapeAdjust1^2*(@shapeAdjust1^2-@shapeAdjust2^2))-@distort elseif @trapType == "Eight Curve" ztest2 = @fn1(@fn2(x^(3+@shapeAdjust2))-@shapeAdjust1^2* \ (@fn3(x^2*@shapeAdjust3)-@fn4(y^2*@shapeAdjust4)))-@distort elseif @trapType == "Happy Accident" ztest2 = @fn1((@fn2((x*@shapeAdjust4)^(1+@shapeAdjust2))+ \ @fn3(y^2*@shapeAdjust3))*atan2(@fn4(y^@shapeAdjust7)* \ @fn5(x^@shapeAdjust5))-@shapeAdjust1*@fn6 \ (y^@shapeAdjust6))-@distort elseif @trapType == "Hyperbola" ztest2 = @fn1(@fn2((x*@shapeAdjust1)^(1+@shapeAdjust2))- \ @fn3((y*@shapeAdjust3)^(1+@shapeAdjust4)) + 1)-@distort elseif @trapType == "Kappa Curve" ztest2 = @fn1((@fn2(x^(3-@shapeAdjust2))+@fn3(y^2*@shapeAdjust3))* \ @fn4(y^(1+@shapeAdjust4))-@shapeAdjust1^2* \ @fn5(x^2*@shapeAdjust5))-@distort elseif @trapType == "Keppler's Folium" ztest2 = @fn1(((@fn2(x^@shapeAdjust3)-@shapeAdjust2)^2+ \ @fn3(y^2+(1-@shapeAdjust4)))*(@fn4(x+(1-@shapeAdjust5))* \ (@fn5(x-(@shapeAdjust6-1))-@shapeAdjust2)+@fn6 \ (y^(1+@shapeAdjust7)))-4*@shapeAdjust1* \ (abs(@fn7(x+(@shapeAdjust8-1)))-@shapeAdjust2)* \ @fn8(y^(2*@shapeAdjust9)))-@distort elseif @trapType == "Keratoid Cusp" ztest2 = @fn1(@fn2(x^(2*@shapeAdjust1))*@fn3(y^@shapeAdjust2)+ \ @fn4(x^(5*@shapeAdjust3))-@fn5(y^(3-@shapeAdjust4)))-@distort elseif @trapType == "Knot Curve" ztest2 = @fn1((@fn2(x^(1+@shapeAdjust1)-1)^2)-@fn3(y^2*@shapeAdjust2)* \ (3+2*@fn4(y*@shapeAdjust3)))-@distort elseif @trapType == "Lemniscate" ztest2 = @fn1((@fn2(x^2+(1-@shapeAdjust2))+@fn3(y^(1+@shapeAdjust3)))^2- \ 2*@shapeAdjust1*(@fn4(x^(2*@shapeAdjust4))- \ @fn5(y^2*@shapeAdjust5)))-@distort elseif @trapType == "Lemniscate Corrected" ztest2 = @fn1(@fn2(x^4+(1-@shapeAdjust2))+@fn3(y^4+(3-@shapeAdjust3))* \ @fn4(x^2*@shapeAdjust4)*@fn5(y^(2*@shapeAdjust5))-2* \ @shapeAdjust1^2*(@fn6(x^(2*@shapeAdjust6))- \ @fn7(y^(1+@shapeAdjust7))))-@distort elseif @trapType == "Limacon" ztest2 = @fn1((@fn2(x^(2*@shapeAdjust3))+@fn3(y^2+(1-@shapeAdjust4))-2* \ @shapeAdjust1*@fn4(x^@shapeAdjust5))^2-@shapeAdjust2^2* \ (@fn5(x^2*@shapeAdjust6)+@fn6(y^2*@shapeAdjust7)))-@distort elseif @trapType == "Line" ztest2 = @fn1(y^@shapeAdjust1)-@distort elseif @trapType == "Links Curve" ztest2 = @fn1((@fn2(x^2*@shapeAdjust1)+@fn3(y^(2*@shapeAdjust2))-3* \ @fn4(x^@shapeAdjust3))^2-4*@fn5(x^(2*@shapeAdjust4))* \ (2-abs(@fn6(x^@shapeAdjust5))))-@distort elseif @trapType == "Maltese Cross Curve" ztest2 = @fn1(@fn2(x^2*@shapeAdjust1)+@fn3(y^(2*@shapeAdjust2))-abs \ (@fn4(x^@shapeAdjust3))*abs(@fn5(y+(1-@shapeAdjust4)))* \ (@fn6(x^(2+(1-@shapeAdjust5))-@fn7(y^(2*@shapeAdjust6)))))- \ @distort elseif @trapType == "Parabola" ztest2 = @fn1(@fn2(x^(2*@shapeAdjust1))-@fn3(y^@shapeAdjust2))-@distort elseif @trapType == "Pear-Shaped Curve" ztest2 = @fn1(@fn2(x^(4-@shapeAdjust3))* \ (@shapeAdjust1-@fn3(x^@shapeAdjust4))-@shapeAdjust2^2* \ @fn4(y^(2*@shapeAdjust5)))-@distort elseif @trapType == "Piriform" ztest2 = @fn1(@shapeAdjust1^4*@fn2(y^(2*@shapeAdjust3))-@shapeAdjust2^2* \ @fn3(x^(3*@shapeAdjust4))*(2*@shapeAdjust1-@fn4(x/@shapeAdjust5)))- \ @distort elseif @trapType == "Quadrifolium" ztest2 = @fn1((@fn2(x^(2*@shapeAdjust2))+@fn3(y^2*@shapeAdjust3))^3-4* \ @fn4(x^2+(1-@shapeAdjust4))*@fn5(y^(3-@shapeAdjust5))* \ @shapeAdjust1^2)-@distort elseif @trapType == "Rose Curve" complex tz = atan2(x + flip(y)) ztest2 = @fn1(@shapeAdjust1*cos(@fn2(tz^@shapeAdjust3)) + \ @shapeAdjust2*sin(@fn3(tz^@shapeAdjust4)))-@distort elseif @trapType == "Serpentine Curve" ztest2 = @fn1(@shapeAdjust1*@shapeAdjust2*@fn2(x^@shapeAdjust3)/ \ @fn3((x+1-@shapeAdjust3)^2+@shapeAdjust1^2)- \ @fn4(y^@shapeAdjust4))-@distort elseif @trapType == "sin(x)/x" ztest2 = @fn1(10*@fn2(sin(x^@shapeAdjust1))/@fn3(x*@shapeAdjust2)- \ @fn4(y^@shapeAdjust3))-@distort elseif @trapType == "Sinus + Cosinus" ztest2 = @fn1(sin(@shapeAdjust1*@fn2(x^@shapeAdjust3))+ \ cos(@shapeAdjust2*@fn3(x+(1-@shapeAdjust4)))+ \ @fn4(y^@shapeAdjust5))-@distort elseif @trapType == "Spiral" dist = abs((x^(2*@shapeAdjust2)+y^(2*@shapeAdjust3))^ \ @shapeAdjust1%1-.5+atan2(x*@shapeAdjust4+ \ (flip(y^@shapeAdjust5)))/(2*pi)) dist2 = abs((x^(2*@shapeAdjust6)+y^2)^@shapeAdjust1%1-.5+ \ atan2(x+flip(y))/(2*pi)+1) if dist2 < dist dist = dist2 endif dist2 = abs((x^(2*@shapeAdjust6)+y^2)^@shapeAdjust1%1-.5+atan2(x+flip(y))/(2*pi)-1) if dist2 < dist dist = dist2 endif ztest2 = dist elseif @trapType == "Square" if abs(x) > abs(y) ztest2 = @fn1(@fn2(abs(x^@shapeAdjust1))-1)-@distort else ztest2 = @fn3(@fn4(abs(y^@shapeAdjust2))-1)-@distort2 endif elseif @trapType == "Stirrup Curve" ztest2 = @fn1(@fn2((x^2-1)^2)-@fn3(y^2)*@fn4(y-1)*@fn5(y-2)* \ @fn6(y+5))-@distort elseif @trapType == "Strange Shape" ztest2 = @fn1((@fn2(x^(2*@shapeAdjust2))+@fn3((y*@shapeAdjust8)^ \ (2*@shapeAdjust3)))*atan2(@fn4(x*@shapeAdjust4)^ \ @shapeAdjust7+flip(@fn5(y^@shapeAdjust5)))- \ @shapeAdjust1*@fn6(y^@shapeAdjust6))-@distort elseif @trapType == "Swastika Curve" ztest2 = @fn1(@fn2(y^(4*@shapeAdjust1))-@fn3(x^4*@shapeAdjust2)- \ @fn4(x^@shapeAdjust3)*@fn5(y+(1-@shapeAdjust4)))-@distort elseif @trapType == "Tangent" ztest2 = @fn1(tan(@fn2((x*@shapeAdjust1)^@shapeAdjust2))- \ @fn3(y*@shapeAdjust3)^@shapeAdjust4)-@distort elseif @trapType == "Trefoil" ztest2 = @fn1(@fn2(x^(5-@shapeAdjust1))+@fn3(x^(2*@shapeAdjust2))* \ @fn4(y^2*@shapeAdjust3)+@fn5(y^(4*@shapeAdjust4))- \ @fn6(x^@shapeAdjust5)*(@fn7(x^2*@shapeAdjust6)- \ @fn8(y^2+(1-@shapeAdjust7))))-@distort elseif @trapType == "Trident" ztest2 = @fn1(@fn2(x^3*@shapeAdjust2)-@shapeAdjust1^3- \ @fn3(x^@shapeAdjust3)*@fn4(y*@shapeAdjust4))-@distort elseif @trapType == "Trident of Descartes" ztest2 = @fn1((@shapeAdjust1+@fn2(x^@shapeAdjust2))* \ (@shapeAdjust1-@fn3(x*@shapeAdjust3))* \ (2*@shapeAdjust1-@fn4(x^@shapeAdjust4))/ \ (@shapeAdjust1*@fn5(x+(1-@shapeAdjust5)))- \ @fn6(y^@shapeAdjust6))-@distort elseif @trapType == "Trifolium" ztest2 = @fn1((@fn2(x^2*@shapeAdjust3)+@fn3(y^(2*@shapeAdjust4)))* \ (@fn4(y^(2*@shapeAdjust5))+@fn5(x^@shapeAdjust6)* \ @fn6(x+@shapeAdjust1))-4*@shapeAdjust2* \ @fn7(x^@shapeAdjust7)*@fn8(y^2+(1-@shapeAdjust8)))-@distort elseif @trapType == "Trisectrix of Maclaurin" ztest2 = @fn1(@fn2(y^2*@shapeAdjust2)*(@shapeAdjust1+ \ @fn3(x^@shapeAdjust3))-@fn4(x^(2*@shapeAdjust4))* \ (3*@shapeAdjust1-@fn5(x*@shapeAdjust5)))-@distort elseif @trapType == "Twisted Cross" ztest2 = @fn1(@fn2(y^(5-@shapeAdjust1))-@fn3(x^(5-@shapeAdjust2))- \ @fn4(x^@shapeAdjust3)*@fn5(y+(1-@shapeAdjust4)))-@distort elseif @trapType == "Witch of Agnesi" ztest2 = @fn1(8*@shapeAdjust2*@shapeAdjust1^3/ \ @fn2(x^(2*@shapeAdjust3)+4*@shapeAdjust1^2)- \ @fn3(y^@shapeAdjust4))-@distort endif minDist = abs(real(ztest2)) trapWidth = @width indexFactor = (@colorsPerRange - 1) / trapWidth if minDist < trapWidth && !trapped trapped = true trappedOnce = true trappedZ = #z trapIter = iter if minDist < (trapWidth - bWidth) rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], minDist/@width) colorIndex = indexFactor * minDist + rangeNum * @colorsPerRange else useBorder = true endif endif endif iter = iter + 1 final: if trappedOnce if (@trapType == "Design Gradient") ; rangeNum = trunc(#y / trunc (#height / ranges)) rangeNum = (trunc(#y / trunc (#height / ranges)) + offset) % ranges trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], #x / #width) endif ; Skip FBM if we are in shape border area. if (@useFBM) && !useBorder if @mask_type == "Distance" if minDist > @mask masked = true endif elseif @mask_type == "Iteration" if @mask != 0 float mask_val = trapIter if @mask_mod != 0 mask_val = trapIter % @mask_mod endif if mask_val < @mask masked = true endif endif elseif @mask_type == "Range" if (trapIter >= @mask) && (trapIter <= @mask_mod) masked = true endif endif if @inverse masked = !masked endif if masked #solid = true else if (@texture_type == "Random") ;Random texture = @rnd * real(#random) else ; fBm if (@rnd != 0) complex rr = (0,1) ^ (@angle / 90.0) complex rr2 = (0,1) ^ (@anglestep / 90.0) if @initial == "Pixel" pat_p = #pixel * rr + @fbmOffset p = #pixel * @fbmscale * rr + @fbmoffset elseif @initial == "Orbit" pat_p = trappedZ * rr + @fbmOffset p = trappedZ * @fbmscale * rr + @fbmoffset ; elseif @initial == "Trap" ; pat_p = trap_p * rr + @fbmOffset ; complex p = trap_p * @fbmscale * rr + @fbmoffset endif float freq = 1.0 int ii = @octaves while (ii > 0) ; determine integer coordinate for corners of square ; surrounding p float bx0 = floor(real(p)) % 256 float by0 = floor(imag(p)) % 256 if (bx0 < 0) bx0 = bx0 + 256 endif if (by0 < 0) by0 = by0 + 256 endif float bx1 = (bx0 + 1) % 256 float by1 = (by0 + 1) % 256 float rx0 = real(p) - floor(real(p)) float ry0 = imag(p) - floor(imag(p)) float rx1 = rx0 - 1 float ry1 = ry0 - 1 float b00 = (bx0^@power % 65536 + by0)^@power % 65536 float b10 = (bx1^@power % 65536 + by0)^@power % 65536 float b01 = (bx0^@power % 65536 + by1)^@power % 65536 float b11 = (bx1^@power % 65536 + by1)^@power % 65536 float g_b00_0 = (b00)^@power*0.25 % 512 - 256 float g_b10_0 = (b10)^@power*0.25 % 512 - 256 float g_b01_0 = (b01)^@power*0.25 % 512 - 256 float g_b11_0 = (b11)^@power*0.25 % 512 - 256 float g_b00_1 = (b00+1)^@power*0.25 % 512 - 256 float g_b10_1 = (b10+1)^@power*0.25 % 512 - 256 float g_b01_1 = (b01+1)^@power*0.25 % 512 - 256 float g_b11_1 = (b11+1)^@power*0.25 % 512 - 256 float d = 0.0; d = 1 / sqrt(sqr(g_b00_0) + sqr(g_b00_1)) g_b00_0 = g_b00_0 * d g_b00_1 = g_b00_1 * d d = 1 / sqrt(sqr(g_b10_0) + sqr(g_b10_1)) g_b10_0 = g_b10_0 * d g_b10_1 = g_b10_1 * d d = 1 / sqrt(sqr(g_b01_0) + sqr(g_b01_1)) g_b01_0 = g_b01_0 * d g_b01_1 = g_b01_1 * d d = 1 / sqrt(sqr(g_b11_0) + sqr(g_b11_1)) g_b11_0 = g_b11_0 * d g_b11_1 = g_b11_1 * d float u1 = rx0 * g_b00_0 + ry0 * g_b00_1 float v1 = rx1 * g_b10_0 + ry0 * g_b10_1 float u2 = rx0 * g_b01_0 + ry1 * g_b01_1 float v2 = rx1 * g_b11_0 + ry1 * g_b11_1 float sx = sqr(rx0) * (3 - rx0*2) float sy = sqr(ry0) * (3 - ry0*2) float a = u1 + sx*(v1 - u1) float b = u2 + sx*(v2 - u2) if @fbmfunc == "Ident" ; Ident sum = sum + (a + sy * (b - a)) * freq elseif @fbmfunc == "Abs" ; Abs sum = sum + sqrt(2) * abs(a + sy * (b - a)) * freq elseif @fbmfunc == "Sqr" ; Sqr sum = sum + 4 * sqr(a + sy * (b - a)) * freq elseif @fbmfunc == "Sqrt" ; Sqrt noise = a + sy * (b - a) if noise < 0 noise = imag(sqrt(noise)) else noise = real(sqrt(noise)) endif sum = sum + noise * freq elseif @fbmfunc == "Ceil" ; Ceil sum = sum + ceil(a + sy * (b - a)) * freq endif freq = freq * @step p = p * rr2 / @step ii = ii - 1 endwhile endif if @pattern == "None" noise = sum elseif @pattern == "Marble" ; Marble noise = real(sin(@pfreq * real(pat_p) + (@turb * sum))) elseif @pattern == "Wood" ; Wood noise = cabs(@pfreq * pat_p) + (@turb * sum) elseif @pattern == "Cells" ; Cells float x = sin(@pfreq * real(pat_p)) float y = cos(@pfreq * imag(pat_p)) noise = cabs(x + flip(y)) + (@turb * sum) elseif @pattern == "Squares" p = round(pat_p * @pfreq) / @pfreq noise = 2 * cabs(@pfreq * pat_p - @pfreq * p) + (@turb * sum) endif if @texture_type == "fBm" ; Original fBm texture = @rnd * noise elseif @texture_type == "Corrected fBm" ; Corrected fBm texture = @rnd * ((noise + 1) * 0.5) endif endif endif endif if (@colorPreset == "Gradient") if (useBorder) if (@solidBorder) #solid = true else #color = @borderColor endif elseif (@colorMode == "Angle") angle = atan2 (trappedZ) if (angle < 0) angle = angle + 2 * #pi endif angle = 1.0 / (2 * #pi) * angle #color = gradient (angle + texture) elseif (@colorMode == "Iteration") #color = gradient (trapIter * 0.01 + texture) elseif (@colorMode == "Modulated Iter") #color = gradient ((trapIter % 8) / 8 + texture) elseif (@colorMode == "Magnitude") #color = gradient (cabs(trappedZ) + texture) elseif (@colorMode == "Real") #color = gradient (abs(real(trappedZ)) + texture) elseif (@colorMode == "Imag") #color = gradient (abs(imag(trappedZ)) + texture) else #color = gradient ((colorIndex + 1) % 256 / 256 + texture) endif else #color = trappedColor endif else if @solid #solid = TRUE else #color = @backColor endif endif default: title = "Plane Curve Traps" ; Version param trapsVersion caption = "Formula Version" default = 320 hint = "You should never see this parameter; it's used internally to track \ which version of the formula was used to create your image, so that \ if a bug is found which breaks backwards-compatibility, the formula \ can adapt transparently." visible = false endparam ; Trap Selection Parameters heading caption = "Trap Parameters" endheading param trapType caption = "Trap Type" enum = "Design Gradient" "Ampersand Curve" "ArcTangent" "Bean Curve" \ "Bicorn Curve" "Bicuspid Curve" "Bifoliate" "Bifolium" "Bow" \ "Butterfly Curve" "Cassini Ovals" "Circle" "Cissoid of Diocles" \ "Cochleoid" "Cocked Hat" "Conchoid of Nicomedes" "Cruciform" \ "Devil's Curve" "Diamond" "Dumbbell Curve" "Dürer's Conchoid" \ "Eight Curve" "Happy Accident" "Hyperbola" "Kappa Curve" \ "Keppler's Folium" "Keratoid Cusp" "Knot Curve" "Lemniscate" \ "Lemniscate Corrected" "Limacon" "Line" "Links Curve" \ "Maltese Cross Curve" "Parabola" "Pear-Shaped Curve" "Piriform" \ "Quadrifolium" "Rose Curve" "Serpentine Curve" "sin(x)/x" \ "Sinus + Cosinus" "Spiral" "Square" "Strange Shape" "Stirrup Curve"\ "Swastika Curve" "Tangent" "Trefoil" "Trident" \ "Trident of Descartes" "Trifolium" "Trisectrix of Maclaurin" \ "Twisted Cross" "Witch of Agnesi" default = 12 hint = "The trap type." endparam param trapMode caption = "Trap Mode" enum = "First Iteration" "Last Iteration" default = 0 hint = "Select 'First Iteration' to trap the first point that \ falls in the range. Select 'Last Iteration' to select \ the last point that falls in the range. This has the \ effect of placing larger shapes below smaller ones." endparam complex param offset caption = "Offset" default = (0.0,0.0) hint = "Offset for the center of the trap." endparam float param size caption = "Size" default = 1.0 hint = "The size of the trap shape." endparam float param width caption = "Width" default = 0.1 hint = "The width of the trap." endparam float param borderWidth caption = "Shape Border Width" default = 0.0 hint = "The width of the border around each shape." visible = (@colorPreset == "Gradient") && (@colorMode != "Normal") endparam float param rotation caption = "Rotation" default = 0.0 hint = "The amount to rotate the trap shape about its origin." endparam float param ratio caption = "Height/Width Ratio" default = 1.0 hint = "The ration of height to width." endparam float param shapeAdjust1 caption = "Shape Adj. I" default = 1.0 hint = "Shape adjustment parameter I." visible = \ (@trapType == "Ampersand Curve") || (@trapType == "ArcTangent") || \ (@trapType == "Bean Curve") || (@trapType == "Bicorn Curve") || \ (@trapType == "Bicuspid Curve") || (@trapType == "Bifoliate") || \ (@trapType == "Bifolium") || (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || (@trapType == "Cassini Ovals") || \ (@trapType == "Circle") || (@trapType == "Cissoid of Diocles") || \ (@trapType == "Cochleoid") || (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || (@trapType == "Diamond") || \ (@trapType == "Dumbbell Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || \ (@trapType == "Hyperbola") || \ (@trapType == "Kappa Curve") || (@trapType == "Keppler's Folium") || \ (@trapType == "Keratoid Cusp") || (@trapType == "Knot Curve") || \ (@trapType == "Lemniscate") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Limacon") || \ (@trapType == "Line") || (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || \ (@trapType == "Parabola") || (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || \ (@trapType == "Rose Curve") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "sin(x)/x") || \ (@trapType == "Sinus + Cosinus") || \ (@trapType == "Spiral") || (@trapType == "Square") || \ (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || (@trapType == "Tangent") || \ (@trapType == "Trefoil") || \ (@trapType == "Trident") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium") || (@trapType == "Trisectrix of Maclaurin") || \ (@trapType == "Twisted Cross") || \ (@trapType == "Witch of Agnesi") endparam float param shapeAdjust2 caption = "Shape Adj. II" default = 1.0 hint = "Shape adjustment parameter II." visible = \ (@trapType == "Ampersand Curve") || (@trapType == "ArcTangent") || \ (@trapType == "Bean Curve") || (@trapType == "Bicorn Curve") || \ (@trapType == "Bicuspid Curve") || (@trapType == "Bifoliate") || \ (@trapType == "Bifolium") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || \ (@trapType == "Cassini Ovals") || \ (@trapType == "Circle") || \ (@trapType == "Cissoid of Diocles") || (@trapType == "Cochleoid") || \ (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || (@trapType == "Diamond") || \ (@trapType == "Dumbbell Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || \ (@trapType == "Hyperbola") || \ (@trapType == "Kappa Curve") || (@trapType == "Keppler's Folium") || \ (@trapType == "Keratoid Cusp") || (@trapType == "Knot Curve") || \ (@trapType == "Lemniscate") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Limacon") || \ (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || \ (@trapType == "Parabola") || (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || \ (@trapType == "Rose Curve") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "sin(x)/x") || \ (@trapType == "Sinus + Cosinus") || \ (@trapType == "Spiral") || (@trapType == "Square") || \ (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || (@trapType == "Tangent") || \ (@trapType == "Trefoil") || \ (@trapType == "Trident") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium") || (@trapType == "Trisectrix of Maclaurin") || \ (@trapType == "Twisted Cross") || \ (@trapType == "Witch of Agnesi") endparam float param shapeAdjust3 caption = "Shape Adj. III" default = 1.0 hint = "Shape adjustment parameter III." visible = @adv && \ ((@trapType == "Ampersand Curve") || \ (@trapType == "Bean Curve") || (@trapType == "Bicorn Curve") || \ (@trapType == "Bicuspid Curve") || (@trapType == "Bifoliate") || \ (@trapType == "Bifolium") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || \ (@trapType == "Cassini Ovals") || \ (@trapType == "Circle") || \ (@trapType == "Cissoid of Diocles") || (@trapType == "Cochleoid") || \ (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || \ (@trapType == "Dumbbell Curve") || (@trapType == "Dürer's Conchoid") || \ (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || \ (@trapType == "Hyperbola") || (@trapType == "Kappa Curve") || \ (@trapType == "Keppler's Folium") || (@trapType == "Keratoid Cusp") || \ (@trapType == "Knot Curve") || \ (@trapType == "Lemniscate") || (@trapType == "Lemniscate Corrected") || \ (@trapType == "Limacon") || (@trapType == "Line") || \ (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || \ (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || \ (@trapType == "Rose Curve") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "sin(x)/x") || \ (@trapType == "Sinus + Cosinus") || \ (@trapType == "Spiral") || (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || \ (@trapType == "Tangent") || \ (@trapType == "Trefoil") || (@trapType == "Trident") || \ (@trapType == "Trident of Descartes") || (@trapType == "Trifolium") || \ (@trapType == "Trisectrix of Maclaurin") || (@trapType == "Twisted Cross") || \ (@trapType == "Witch of Agnesi")) endparam float param shapeAdjust4 caption = "Shape Adj. IV" default = 1.0 hint = "Shape adjustment parameter IV." visible = @adv && \ ((@trapType == "Ampersand Curve") || \ (@trapType == "Bean Curve") || \ (@trapType == "Bicorn Curve") || (@trapType == "Bicuspid Curve") || \ (@trapType == "Bifoliate") || (@trapType == "Bifolium") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || \ (@trapType == "Cassini Ovals") || \ (@trapType == "Circle") || \ (@trapType == "Cissoid of Diocles") || (@trapType == "Cochleoid") || \ (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || (@trapType == "Devil's Curve") || \ (@trapType == "Dumbbell Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || \ (@trapType == "Hyperbola") || (@trapType == "Kappa Curve") || \ (@trapType == "Keppler's Folium") || (@trapType == "Keratoid Cusp") || \ (@trapType == "Lemniscate") || (@trapType == "Lemniscate Corrected") || \ (@trapType == "Limacon") || (@trapType == "Line") || \ (@trapType == "Links Curve") || (@trapType == "Maltese Cross Curve") || \ (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || (@trapType == "Rose Curve") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "Sinus + Cosinus") || \ (@trapType == "Spiral") || \ (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || (@trapType == "Tangent") || \ (@trapType == "Trefoil") || \ (@trapType == "Trident") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium") || (@trapType == "Trisectrix of Maclaurin") || \ (@trapType == "Twisted Cross") || \ (@trapType == "Witch of Agnesi")) endparam float param shapeAdjust5 caption = "Shape Adj. V" default = 1.0 hint = "Shape adjustment parameter V." visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "Bean Curve") || \ (@trapType == "Bifoliate") || (@trapType == "Bifolium") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || (@trapType == "Cassini Ovals") || \ (@trapType == "Cissoid of Diocles") || (@trapType == "Cochleoid") || \ (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || (@trapType == "Devil's Curve") || \ (@trapType == "Dürer's Conchoid") || \ (@trapType == "Happy Accident") || \ (@trapType == "Kappa Curve") || (@trapType == "Keppler's Folium") || \ (@trapType == "Lemniscate") || (@trapType == "Lemniscate Corrected") || \ (@trapType == "Limacon") || (@trapType == "Line") || \ (@trapType == "Links Curve") || (@trapType == "Maltese Cross Curve") || \ (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || \ (@trapType == "Sinus + Cosinus") || \ (@trapType == "Spiral") || (@trapType == "Strange Shape") || \ (@trapType == "Trefoil") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium") || (@trapType == "Trisectrix of Maclaurin")) endparam float param shapeAdjust6 caption = "Shape Adj. VI" default = 1.0 hint = "Shape adjustment parameter VI." visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "Bean Curve") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || \ (@trapType == "Cochleoid") || (@trapType == "Cocked Hat") || \ (@trapType == "Cruciform") || (@trapType == "Devil's Curve") || \ (@trapType == "Dürer's Conchoid") || \ (@trapType == "Happy Accident") || \ (@trapType == "Keppler's Folium") || (@trapType == "Lemniscate Corrected") || \ (@trapType == "Limacon") || (@trapType == "Line") || \ (@trapType == "Maltese Cross Curve") || \ (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Sinus + Cosinus") || (@trapType == "Spiral") || \ (@trapType == "Strange Shape") || \ (@trapType == "Trefoil") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium")) endparam float param shapeAdjust7 caption = "Shape Adj. VII" default = 1.0 hint = "Shape adjustment parameter VII." visible = @adv && \ ((@trapType == "Ampersand Curve") || \ (@trapType == "Bean Curve") || \ (@trapType == "Bow") || (@trapType == "Butterfly Curve") || \ (@trapType == "Dürer's Conchoid") || \ (@trapType == "Happy Accident") || \ (@trapType == "Keppler's Folium") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Limacon") || \ (@trapType == "Line") || \ (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Sinus + Cosinus") || (@trapType == "Strange Shape") || \ (@trapType == "Trefoil") || \ (@trapType == "Trifolium")) endparam float param shapeAdjust8 caption = "Shape Adj. VIII" default = 1.0 hint = "Shape adjustment parameter VIII." visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "Dürer's Conchoid") || \ (@trapType == "Keppler's Folium") || \ (@trapType == "Strange Shape") || (@trapType == "Trifolium")) endparam float param shapeAdjust9 caption = "Shape Adj. IX" default = 1.0 hint = "Shape adjustment parameter IX." visible = @adv && ((@trapType == "Dürer's Conchoid") || \ (@trapType == "Keppler's Folium")) endparam float param shapeAdjust10 caption = "Shape Adj. X" default = 1.0 hint = "Shape adjustment parameter X." visible = @adv && ((@trapType == "Dürer's Conchoid")) endparam float param shapeAdjust11 caption = "Shape Adj. XI" default = 1.0 hint = "Shape adjustment parameter XI." visible = @adv && (@trapType == "Dürer's Conchoid") endparam float param shapeAdjust12 caption = "Shape Adj. XII" default = 1.0 hint = "Shape adjustment parameter XII." visible = @adv && (@trapType == "Dürer's Conchoid") endparam float param distort caption = "Fission" hint = "Generally stretches and splits the elements" default = 0 visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "ArcTangent") || \ (@trapType == "Bean Curve") || (@trapType == "Bicorn Curve") || \ (@trapType == "Bicuspid Curve") || (@trapType == "Bifoliate") || \ (@trapType == "Bifolium") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || \ (@trapType == "Cassini Ovals") || \ (@trapType == "Circle") || \ (@trapType == "Cissoid of Diocles") || (@trapType == "Cochleoid") || \ (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || (@trapType == "Diamond") || \ (@trapType == "Dumbbell Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || \ (@trapType == "Hyperbola") || \ (@trapType == "Kappa Curve") || (@trapType == "Keppler's Folium") || \ (@trapType == "Keratoid Cusp") || (@trapType == "Knot Curve") || \ (@trapType == "Lemniscate") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Limacon") || \ (@trapType == "Line") || (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || \ (@trapType == "Parabola") || (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || \ (@trapType == "Rose Curve") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "sin(x)/x") || \ (@trapType == "Sinus + Cosinus") || \ (@trapType == "Square") || (@trapType == "Stirrup Curve") || \ (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || \ (@trapType == "Tangent") || \ (@trapType == "Trefoil") || (@trapType == "Trident") || \ (@trapType == "Trident of Descartes") || (@trapType == "Trifolium") || \ (@trapType == "Trisectrix of Maclaurin") || (@trapType == "Twisted Cross") || \ (@trapType == "Witch of Agnesi")) endparam float param distort2 caption = "Fission 2" hint = "Shifts some of the lines in 'Square'" default = 0 visible = @adv && (@trapType == "Square") endparam ;-------------------------------------------------------------------- ; Adjustment Functions applied to the formulas. ;-------------------------------------------------------------------- func fn1 default = abs () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "ArcTangent") || \ (@trapType == "Bean Curve") || (@trapType == "Bicorn Curve") || \ (@trapType == "Bicuspid Curve") || (@trapType == "Bifoliate") || \ (@trapType == "Bifolium") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || \ (@trapType == "Cassini Ovals") || \ (@trapType == "Circle") || \ (@trapType == "Cissoid of Diocles") || (@trapType == "Cochleoid") || \ (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || (@trapType == "Diamond") || \ (@trapType == "Dumbbell Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || \ (@trapType == "Hyperbola") || \ (@trapType == "Kappa Curve") || (@trapType == "Keppler's Folium") || \ (@trapType == "Keratoid Cusp") || (@trapType == "Knot Curve") || \ (@trapType == "Lemniscate") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Limacon") || \ (@trapType == "Line") || (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || \ (@trapType == "Parabola") || (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || \ (@trapType == "Rose Curve") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "sin(x)/x") || \ (@trapType == "Sinus + Cosinus") || \ (@trapType == "Square") || (@trapType == "Stirrup Curve") || \ (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || \ (@trapType == "Tangent") || \ (@trapType == "Trefoil") || (@trapType == "Trident") || \ (@trapType == "Trident of Descartes") || (@trapType == "Trifolium") || \ (@trapType == "Trisectrix of Maclaurin") || (@trapType == "Twisted Cross") || \ (@trapType == "Witch of Agnesi")) endfunc func fn2 default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "ArcTangent") || \ (@trapType == "Bean Curve") || (@trapType == "Bicorn Curve") || \ (@trapType == "Bicuspid Curve") || (@trapType == "Bifoliate") || \ (@trapType == "Bifolium") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || \ (@trapType == "Cassini Ovals") || \ (@trapType == "Circle") || \ (@trapType == "Cissoid of Diocles") || (@trapType == "Cochleoid") || \ (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || (@trapType == "Diamond") || \ (@trapType == "Dumbbell Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || \ (@trapType == "Hyperbola") || \ (@trapType == "Kappa Curve") || (@trapType == "Keppler's Folium") || \ (@trapType == "Keratoid Cusp") || (@trapType == "Knot Curve") || \ (@trapType == "Lemniscate") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Limacon") || \ (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || \ (@trapType == "Parabola") || \ (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || (@trapType == "Rose Curve") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "sin(x)/x") || (@trapType == "Sinus + Cosinus") || \ (@trapType == "Square") || \ (@trapType == "Stirrup Curve") || (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || (@trapType == "Tangent") || \ (@trapType == "Trefoil") || \ (@trapType == "Trident") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium") || (@trapType == "Trisectrix of Maclaurin") || \ (@trapType == "Twisted Cross") || \ (@trapType == "Witch of Agnesi")) endfunc func fn3 default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "ArcTangent") || \ (@trapType == "Bean Curve") || (@trapType == "Bicorn Curve") || \ (@trapType == "Bicuspid Curve") || (@trapType == "Bifoliate") || \ (@trapType == "Bifolium") || \ (@trapType == "Bow") || \ (@trapType == "Butterfly Curve") || \ (@trapType == "Cassini Ovals") || \ (@trapType == "Circle") || \ (@trapType == "Cissoid of Diocles") || (@trapType == "Cochleoid") || \ (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || \ (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || (@trapType == "Diamond") || \ (@trapType == "Dumbbell Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || \ (@trapType == "Hyperbola") || \ (@trapType == "Kappa Curve") || (@trapType == "Keppler's Folium") || \ (@trapType == "Keratoid Cusp") || (@trapType == "Knot Curve") || \ (@trapType == "Lemniscate") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Limacon") || \ (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || \ (@trapType == "Parabola") || \ (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || (@trapType == "Rose Curve") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "sin(x)/x") || (@trapType == "Sinus + Cosinus") || \ (@trapType == "Square") || \ (@trapType == "Stirrup Curve") || (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || (@trapType == "Tangent") || \ (@trapType == "Trefoil") || \ (@trapType == "Trident") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium") || (@trapType == "Trisectrix of Maclaurin") || \ (@trapType == "Twisted Cross") || \ (@trapType == "Witch of Agnesi")) endfunc func fn4 default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv &&\ ((@trapType == "Ampersand Curve") || (@trapType == "Bean Curve") || \ (@trapType == "Bicorn Curve") || (@trapType == "Bicuspid Curve") || \ (@trapType == "Bifoliate") || (@trapType == "Bifolium") || \ (@trapType == "Bow") || (@trapType == "Butterfly Curve") || \ (@trapType == "Cassini Ovals") || (@trapType == "Cissoid of Diocles") || \ (@trapType == "Cochleoid") || (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || (@trapType == "Dumbbell Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Eight Curve") || \ (@trapType == "Happy Accident") || (@trapType == "Kappa Curve") || \ (@trapType == "Keppler's Folium") || \ (@trapType == "Keratoid Cusp") || (@trapType == "Knot Curve") || \ (@trapType == "Lemniscate") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Limacon") || \ (@trapType == "Links Curve") || (@trapType == "Maltese Cross Curve") || \ (@trapType == "Pear-Shaped Curve") || \ (@trapType == "Piriform") || \ (@trapType == "Quadrifolium") || \ (@trapType == "Serpentine Curve") || \ (@trapType == "sin(x)/x") || \ (@trapType == "Sinus + Cosinus") || \ (@trapType == "Square") || (@trapType == "Stirrup Curve") || \ (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || \ (@trapType == "Trefoil") || \ (@trapType == "Trident") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium") || (@trapType == "Trisectrix of Maclaurin") || \ (@trapType == "Twisted Cross")) endfunc func fn5 caption = "Function 5" default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && \ ((@trapType == "Ampersand Curve") || \ (@trapType == "Bean Curve") || (@trapType == "Bicorn Curve") || \ (@trapType == "Bifoliate") || (@trapType == "Bifolium") || \ (@trapType == "Bow") || (@trapType == "Cissoid of Diocles") || \ (@trapType == "Cochleoid") || (@trapType == "Cocked Hat") || \ (@trapType == "Conchoid of Nicomedes") || (@trapType == "Cruciform") || \ (@trapType == "Devil's Curve") || (@trapType == "Dürer's Conchoid") || \ (@trapType == "Happy Accident") || (@trapType == "Kappa Curve") || \ (@trapType == "Keppler's Folium") || (@trapType == "Keratoid Cusp") || \ (@trapType == "Lemniscate") || (@trapType == "Lemniscate Corrected") || \ (@trapType == "Limacon") || (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || (@trapType == "Quadrifolium") || \ (@trapType == "Stirrup Curve") || (@trapType == "Strange Shape") || \ (@trapType == "Swastika Curve") || \ (@trapType == "Trefoil") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium") || (@trapType == "Trisectrix of Maclaurin") || \ (@trapType == "Twisted Cross")) endfunc func fn6 caption = "Function 6" default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && \ ((@trapType == "Ampersand Curve") ||(@trapType == "Bean Curve") || \ (@trapType == "Cochleoid") || (@trapType == "Dürer's Conchoid") || \ (@trapType == "Happy Accident") || (@trapType == "Keppler's Folium") || (@trapType == "Lemniscate Corrected") || \ (@trapType == "Limacon") || (@trapType == "Links Curve") || \ (@trapType == "Maltese Cross Curve") || (@trapType == "Stirrup Curve") || \ (@trapType == "Strange Shape") || \ (@trapType == "Trefoil") || (@trapType == "Trident of Descartes") || \ (@trapType == "Trifolium")) endfunc func fn7 caption = "Function 7" default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "Bean Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Keppler's Folium") || \ (@trapType == "Lemniscate Corrected") || (@trapType == "Maltese Cross Curve") || \ (@trapType == "Trefoil") || (@trapType == "Trifolium")) endfunc func fn8 caption = "Function 8" default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && \ ((@trapType == "Ampersand Curve") || (@trapType == "Bean Curve") || \ (@trapType == "Dürer's Conchoid") || (@trapType == "Keppler's Folium") || \ (@trapType == "Trefoil") || (@trapType == "Trifolium")) endfunc func fn9 caption = "Function 9" default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && (@trapType == "Dürer's Conchoid") endfunc func fn10 caption = "Function 10" default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && (@trapType == "Dürer's Conchoid") endfunc func fn11 caption = "Function 11" default = ident () hint = "Changes the shapes of the elements and their relations to each other" visible = @adv && (@trapType == "Dürer's Conchoid") endfunc ;-------------------------------------------------------------------- ; Common Parameters ;-------------------------------------------------------------------- param skip caption = "Iterations to Skip" default = 0 hint = "The number of iterations to skip." endparam param adv caption = "Advanced Options" hint = "Additional shaping parameters and functions." default = false endparam ;-------------------------------------------------------------------- ; Color Settings ;-------------------------------------------------------------------- heading caption = "Color Settings" endheading param colorPreset caption = "Color Preset" enum = "Gradient" "Custom" "Generate" "Default" "Default 12" \ "Default 16" "Default 24" "Color Wheel 12" "Alhambra 8" \ "Belvedere 8" "Bouquet 8" "Color Switch 8" "Evening Sky 8" \ "Fantasia 8" "Flowering Orchard 8" "Morning Sky 8" "Pastel 8" \ "Pastel Rainbow 8" "Showtime 8" "Soleil 8" "Chill 8" \ "Cloud Nine 8" "La Terra 8" "Santa Fe 8" "Spring 8" "Summer 8" \ "Fall 8" "Winter 8" "Mojave 8" "Gold/Green 8" "Gold/Green Alt 8" \ "Gold/Silver 8" "Gold/Silver Alt 8" "Purple/Yellow 8" \ "Purple/Yellow Alt 8" "Silver/Blue 8" "Silver/Blue Alt 8" \ "Fourth of July 3" "Blue/Silver 2" "Blue/White 2" "Cyan/Magenta 2" \ "Cyan/Yellow 2" "Gold/Green 2" "Purple/Yellow 2" "Red/Tan 2" default = 3 hint = "Use 'Gradient' for colors from the gradient. \ Use 'Custom' to set your own color ranges. \ Use 'Default' for the default colors. \ Use 'Generate' to create 3D-like colors from the \ gradient (allows using the gradient randomize function). \ Use any of the other predefined settings for those colors." endparam param customize caption = "Show/Customize" default = false hint = "Check to customize the selected color preset. NOTE: If you \ modify the default values for any of the range(s), you cannot \ get back to the default values for the range(s) you modify \ unless you reload the UCL." visible = (@colorPreset != "Gradient") && (@colorPreset != "Generate") \ && (@colorPreset != "Custom") endparam param colorMode caption = "Coloring Mode" enum = "Normal" "Angle" "Iteration" "Modulated Iter" "Magnitude" \ "Real" "Imag" default = 0 hint = "The type of coloring to use when the orbit is trapped." visible = (@colorPreset == "Gradient") endparam float param luminanceUpper caption = "Lum. Upper Value" default = 0.60 min = 0.0 max = 1.0 hint = "The value of the Luminance component for the upper value \ when generating the ranges from the gradient. This value \ is used with the brighter end of the color range." visible = (@colorPreset == "Generate") endparam float param luminanceLower caption = "Lum. Lower Value" default = 0.10 min = 0.0 max = 1.0 hint = "The value of the Luminance component for the lower value \ when generating the ranges from the gradient. This value \ is used with the darker end of the color range." visible = (@colorPreset == "Generate") endparam int param colorRanges caption = "Number of Ranges" default = 8 min = 1 max = 24 hint = "The number of color ranges (1..24)." visible = (@colorPreset == "Custom") || (@colorPreset == "Gradient") && \ (@colorMode == "Normal") endparam int param numRanges caption = "Number of Ranges" default = 8 min = 1 max = 200 hint = "The number of color ranges." visible = (@colorPreset == "Generate") endparam int param colorsPerRange caption = "Number of Colors" default = 30 hint = "The number of colors per range." visible = (@colorPreset == "Gradient") && (@colorMode == "Normal") endparam param perturbRanges caption = "Perturb Ranges" enum = "None" "Even/Odd" "1st Half / 2nd Half" "8 Range Custom" default = 0 hint = "Modify the way the ranges are assigned to the elements. \ 'None' = Assign in Order (0 1 2 3 4 5 6 7); 'Even Odd' = \ Assign Even Ranges, then Odd Ranges (0 2 4 6 1 3 5 7); \ '1st Half / 2nd Half' = Assign from first half of range, \ then 2nd half (0 4 1 5 2 6 3 7); '8 Range Custom' = Assign \ the ordering by entering digits 1-8. Only works for ranges \ with 8 colors." visible = ((@colorPreset == "Custom" && @colorRanges >= 3) || \ (@colorPreset == "Generate" && @numRanges >= 3) || \ (@colorPreset == "Gradient" && @colorRanges >= 3) || \ (@colorPreset != "Custom" && @colorPreset != "Generate" && \ @colorPreset != "Gradient")) && (@colorMode == "Normal") endparam int param rangeOrder caption = "Range Order" default = 12345678 min = 11111111 max = 88888888 hint = "Specify the color range ordering. Use digits 1-8 to specify \ the order the ranges will be used. For example, to reverse \ the ordering, specify 87654321. To alternate, use 13572468. \ If color map or preset is defined that does not contain exactly \ 8 ranges, then this parameter will not have any effect." visible = (@perturbRanges == "8 Range Custom") endparam heading caption = " " endheading ;-------------------------------------------------------------------- ; Color Defaults for Custom ;-------------------------------------------------------------------- heading caption = " Custom Color Settings" visible = (@colorPreset == "Custom") endheading color param colorMax1 caption = "Color Range 1 High" default = rgb(255/255,0/255,211/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorPreset == "Custom") endparam color param colorMin1 caption = "Color Range 1 Low" default = rgb(104/255,0/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorPreset == "Custom") endparam color param colorMax2 caption = "Color Range 2 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorRanges >= 2) && (@colorPreset == "Custom") endparam color param colorMin2 caption = "Color Range 2 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorRanges >= 2) && (@colorPreset == "Custom") endparam color param colorMax3 caption = "Color Range 3 High" default = rgb(255/255,118/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorRanges >= 3) && (@colorPreset == "Custom") endparam color param colorMin3 caption = "Color Range 3 Low" default = rgb(100/255,36/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorRanges >= 3) && (@colorPreset == "Custom") endparam color param colorMax4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorRanges >= 4) && (@colorPreset == "Custom") endparam color param colorMin4 caption = "Color Range 4 Low" default = rgb(92/255,61/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorRanges >= 4) && (@colorPreset == "Custom") endparam color param colorMax5 caption = "Color Range 5 High" default = rgb(0/255,255/255,55/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorRanges >= 5) && (@colorPreset == "Custom") endparam color param colorMin5 caption = "Color Range 5 Low" default = rgb(0/255,78/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorRanges >= 5) && (@colorPreset == "Custom") endparam color param colorMax6 caption = "Color Range 6 High" default = rgb(0/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorRanges >= 6) && (@colorPreset == "Custom") endparam color param colorMin6 caption = "Color Range 6 Low" default = rgb(0/255,71/255,74/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorRanges >= 6) && (@colorPreset == "Custom") endparam color param colorMax7 caption = "Color Range 7 High" default = rgb(0/255,90/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorRanges >= 7) && (@colorPreset == "Custom") endparam color param colorMin7 caption = "Color Range 7 Low" default = rgb(0/255,0/255,102/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorRanges >= 7) && (@colorPreset == "Custom") endparam color param colorMax8 caption = "Color Range 8 High" default = rgb(175/255,0/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorRanges >= 8) && (@colorPreset == "Custom") endparam color param colorMin8 caption = "Color Range 8 Low" default = rgb(57/255,0/255,86/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorRanges >= 8) && (@colorPreset == "Custom") endparam color param customMax9 caption = "Color Range 9 High" default = rgb(255/255,0/255,134/255) hint = "Specifies the color at the high end of Range #9." visible = (@colorRanges >= 9) && (@colorPreset == "Custom") endparam color param customMin9 caption = "Color Range 9 Low" default = rgb(106/255,0/255,55/255) hint = "Specifies the color at the low end of Range #9." visible = (@colorRanges >= 9) && (@colorPreset == "Custom") endparam color param customMax10 caption = "Color Range 10 High" default = rgb(255/255,54/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@colorRanges >= 10) && (@colorPreset == "Custom") endparam color param customMin10 caption = "Color Range 10 Low" default = rgb(94/255,18/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@colorRanges >= 10) && (@colorPreset == "Custom") endparam color param customMax11 caption = "Color Range 11 High" default = rgb(255/255,157/255,0/255) hint = "Specifies the color at the high end of Range #11." visible = (@colorRanges >= 11) && (@colorPreset == "Custom") endparam color param customMin11 caption = "Color Range 11 Low" default = rgb(90/255,40/255,0/255) hint = "Specifies the color at the low end of Range #11." visible = (@colorRanges >= 11) && (@colorPreset == "Custom") endparam color param customMax12 caption = "Color Range 12 High" default = rgb(229/255,255/255,0/255) hint = "Specifies the color at the high end of Range #12." visible = (@colorRanges >= 12) && (@colorPreset == "Custom") endparam color param customMin12 caption = "Color Range 12 Low" default = rgb(68/255,68/255,0/255) hint = "Specifies the color at the low end of Range #12." visible = (@colorRanges >= 12) && (@colorPreset == "Custom") endparam color param customMax13 caption = "Color Range 13 High" default = rgb(0/255,255/255,136/255) hint = "Specifies the color at the high end of Range #13." visible = (@colorRanges >= 13) && (@colorPreset == "Custom") endparam color param customMin13 caption = "Color Range 13 Low" default = rgb(0/255,66/255,30/255) hint = "Specifies the color at the low end of Range #13." visible = (@colorRanges >= 13) && (@colorPreset == "Custom") endparam color param customMax14 caption = "Color Range 14 High" default = rgb(0/255,212/255,255/255) hint = "Specifies the color at the high end of Range #14." visible = (@colorRanges >= 14) && (@colorPreset == "Custom") endparam color param customMin14 caption = "Color Range 14 Low" default = rgb(0/255,57/255,82/255) hint = "Specifies the color at the low end of Range #14." visible = (@colorRanges >= 14) && (@colorPreset == "Custom") endparam color param customMax15 caption = "Color Range 15 High" default = rgb(92/255,77/255,255/255) hint = "Specifies the color at the high end of Range #15." visible = (@colorRanges >= 15) && (@colorPreset == "Custom") endparam color param customMin15 caption = "Color Range 15 Low" default = rgb(28/255,0/255,94/255) hint = "Specifies the color at the low end of Range #15." visible = (@colorRanges >= 15) && (@colorPreset == "Custom") endparam color param customMax16 caption = "Color Range 16 High" default = rgb(209/255,0/255,255/255) hint = "Specifies the color at the high end of Range #16." visible = (@colorRanges >= 16) && (@colorPreset == "Custom") endparam color param customMin16 caption = "Color Range 16 Low" default = rgb(69/255,0/255,82/255) hint = "Specifies the color at the low end of Range #16." visible = (@colorRanges >= 16) && (@colorPreset == "Custom") endparam color param customMax17 caption = "Color Range 17 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #17." visible = (@colorRanges >= 17) && (@colorPreset == "Custom") endparam color param customMin17 caption = "Color Range 17 Low" default = rgb(84/255,0/255,84/255) hint = "Specifies the color at the low end of Range #17." visible = (@colorRanges >= 17) && (@colorPreset == "Custom") endparam color param customMax18 caption = "Color Range 18 High" default = rgb(255/255,35/255,88/255) hint = "Specifies the color at the high end of Range #18." visible = (@colorRanges >= 18) && (@colorPreset == "Custom") endparam color param customMin18 caption = "Color Range 18 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #18." visible = (@colorRanges >= 18) && (@colorPreset == "Custom") endparam color param customMax19 caption = "Color Range 19 High" default = rgb(255/255,85/255,0/255) hint = "Specifies the color at the high end of Range #19." visible = (@colorRanges >= 19) && (@colorPreset == "Custom") endparam color param customMin19 caption = "Color Range 19 Low" default = rgb(92/255,26/255,0/255) hint = "Specifies the color at the low end of Range #19." visible = (@colorRanges >= 19) && (@colorPreset == "Custom") endparam color param customMax20 caption = "Color Range 20 High" default = rgb(255/255,203/255,0/255) hint = "Specifies the color at the high end of Range #20." visible = (@colorRanges >= 20) && (@colorPreset == "Custom") endparam color param customMin20 caption = "Color Range 20 Low" default = rgb(82/255,54/255,0/255) hint = "Specifies the color at the low end of Range #20." visible = (@colorRanges >= 20) && (@colorPreset == "Custom") endparam color param customMax21 caption = "Color Range 21 High" default = rgb(191/255,255/255,0/255) hint = "Specifies the color at the high end of Range #21." visible = (@colorRanges >= 21) && (@colorPreset == "Custom") endparam color param customMin21 caption = "Color Range 21 Low" default = rgb(32/255,64/255,0/255) hint = "Specifies the color at the low end of Range #21." visible = (@colorRanges >= 21) && (@colorPreset == "Custom") endparam color param customMax22 caption = "Color Range 22 High" default = rgb(0/255,255/255,203/255) hint = "Specifies the color at the high end of Range #22." visible = (@colorRanges >= 22) && (@colorPreset == "Custom") endparam color param customMin22 caption = "Color Range 22 Low" default = rgb(0/255,62/255,48/255) hint = "Specifies the color at the low end of Range #22." visible = (@colorRanges >= 22) && (@colorPreset == "Custom") endparam color param customMax23 caption = "Color Range 23 High" default = rgb(0/255,153/255,255/255) hint = "Specifies the color at the high end of Range #23." visible = (@colorRanges >= 23) && (@colorPreset == "Custom") endparam color param customMin23 caption = "Color Range 23 Low" default = rgb(0/255,37/255,104/255) hint = "Specifies the color at the low end of Range #23." visible = (@colorRanges >= 23) && (@colorPreset == "Custom") endparam color param customMax24 caption = "Color Range 24 High" default = rgb(131/255,67/255,255/255) hint = "Specifies the color at the high end of Range #24." visible = (@colorRanges >= 24) && (@colorPreset == "Custom") endparam color param customMin24 caption = "Color Range 24 Low" default = rgb(57/255,0/255,112/255) hint = "Specifies the color at the low end of Range #24." visible = (@colorRanges >= 24) && (@colorPreset == "Custom") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default ;-------------------------------------------------------------------- heading caption = " Default Settings" visible = (@customize && @colorPreset == "Default") endheading color param defaultMax1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax2 caption = "Color Range 2 High" default = rgb(252/255,0/255,172/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin2 caption = "Color Range 2 Low" default = rgb(96/255,0/255,32/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax3 caption = "Color Range 3 High" default = rgb(252/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin3 caption = "Color Range 3 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax4 caption = "Color Range 4 High" default = rgb(252/255,128/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin4 caption = "Color Range 4 Low" default = rgb(160/255,16/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax5 caption = "Color Range 5 High" default = rgb(252/255,252/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin5 caption = "Color Range 5 Low" default = rgb(152/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax6 caption = "Color Range 6 High" default = rgb(0/255,252/255,128/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin6 caption = "Color Range 6 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax7 caption = "Color Range 7 High" default = rgb(0/255,252/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin7 caption = "Color Range 7 Low" default = rgb(0/255,48/255,48/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax8 caption = "Color Range 8 High" default = rgb(64/255,64/255,252/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 12 ;-------------------------------------------------------------------- heading caption = " Default 12 Color Settings" visible = (@customize && @colorPreset == "Default 12") endheading color param default12Max1 caption = "Color Range 1 High" default = rgb(255/255,85/255,253/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min1 caption = "Color Range 1 Low" default = rgb(98/255,0/255,76/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max2 caption = "Color Range 2 High" default = rgb(252/255,0/255,143/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min2 caption = "Color Range 2 Low" default = rgb(98/255,0/255,54/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max3 caption = "Color Range 3 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min3 caption = "Color Range 3 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max4 caption = "Color Range 4 High" default = rgb(255/255,97/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min4 caption = "Color Range 4 Low" default = rgb(104/255,27/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max5 caption = "Color Range 5 High" default = rgb(255/255,187/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min5 caption = "Color Range 5 Low" default = rgb(110/255,54/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max6 caption = "Color Range 6 High" default = rgb(255/255,248/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min6 caption = "Color Range 6 Low" default = rgb(102/255,60/255,6/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max7 caption = "Color Range 7 High" default = rgb(0/255,255/255,58/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min7 caption = "Color Range 7 Low" default = rgb(0/255,76/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max8 caption = "Color Range 8 High" default = rgb(0/255,255/255,205/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min8 caption = "Color Range 8 Low" default = rgb(0/255,89/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max9 caption = "Color Range 9 High" default = rgb(0/255,194/255,255/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min9 caption = "Color Range 9 Low" default = rgb(0/255,80/255,92/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max10 caption = "Color Range 10 High" default = rgb(35/255,109/255,255/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min10 caption = "Color Range 10 Low" default = rgb(0/255,4/255,102/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max11 caption = "Color Range 11 High" default = rgb(149/255,53/255,255/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min11 caption = "Color Range 11 Low" default = rgb(53/255,0/255,96/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max12 caption = "Color Range 12 High" default = rgb(195/255,0/255,252/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min12 caption = "Color Range 12 Low" default = rgb(58/255,0/255,84/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 12") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 16 ;-------------------------------------------------------------------- heading caption = " Default 16 Color Settings" visible = (@customize && @colorPreset == "Default 16") endheading color param default16Max1 caption = "Color Range 1 High" default = rgb(255/255,31/255,114/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min1 caption = "Color Range 1 Low" default = rgb(94/255,0/255,40/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max2 caption = "Color Range 2 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min2 caption = "Color Range 2 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max3 caption = "Color Range 3 High" default = rgb(255/255,78/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min3 caption = "Color Range 3 Low" default = rgb(88/255,27/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max4 caption = "Color Range 4 High" default = rgb(255/255,110/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min4 caption = "Color Range 4 Low" default = rgb(90/255,30/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max5 caption = "Color Range 5 High" default = rgb(255/255,187/255,31/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min5 caption = "Color Range 5 Low" default = rgb(88/255,38/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min6 caption = "Color Range 6 Low" default = rgb(96/255,57/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max7 caption = "Color Range 7 High" default = rgb(170/255,255/255,37/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min7 caption = "Color Range 7 Low" default = rgb(41/255,68/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max8 caption = "Color Range 8 High" default = rgb(0/255,255/255,94/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min8 caption = "Color Range 8 Low" default = rgb(0/255,62/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max9 caption = "Color Range 9 High" default = rgb(0/255,238/255,203/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min9 caption = "Color Range 9 Low" default = rgb(0/255,64/255,54/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max10 caption = "Color Range 10 High" default = rgb(11/255,166/255,255/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min10 caption = "Color Range 10 Low" default = rgb(0/255,38/255,78/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max11 caption = "Color Range 11 High" default = rgb(0/255,68/255,255/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min11 caption = "Color Range 11 Low" default = rgb(0/255,20/255,88/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max12 caption = "Color Range 12 High" default = rgb(99/255,0/255,255/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min12 caption = "Color Range 12 Low" default = rgb(47/255,0/255,94/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max13 caption = "Color Range 13 High" default = rgb(145/255,0/255,255/255) hint = "Specifies the color at the high end of Range #13." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min13 caption = "Color Range 13 Low" default = rgb(69/255,0/255,102/255) hint = "Specifies the color at the low end of Range #13." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max14 caption = "Color Range 14 High" default = rgb(221/255,0/255,255/255) hint = "Specifies the color at the high end of Range #14." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min14 caption = "Color Range 14 Low" default = rgb(86/255,0/255,100/255) hint = "Specifies the color at the low end of Range #14." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max15 caption = "Color Range 15 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #15." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min15 caption = "Color Range 15 Low" default = rgb(90/255,0/255,75/255) hint = "Specifies the color at the low end of Range #15." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max16 caption = "Color Range 16 High" default = rgb(255/255,0/255,140/255) hint = "Specifies the color at the high end of Range #16." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min16 caption = "Color Range 16 Low" default = rgb(96/255,0/255,60/255) hint = "Specifies the color at the low end of Range #16." visible = (@customize && @colorPreset == "Default 16") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 24 ;-------------------------------------------------------------------- heading caption = " Default 24 Color Settings" visible = (@customize && @colorPreset == "Default 24") endheading color param default24Max1 caption = "Color Range 1 High" default = rgb(255/255,0/255,211/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min1 caption = "Color Range 1 Low" default = rgb(104/255,0/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max2 caption = "Color Range 2 High" default = rgb(255/255,0/255,134/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min2 caption = "Color Range 2 Low" default = rgb(106/255,0/255,55/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max3 caption = "Color Range 3 High" default = rgb(255/255,35/255,88/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min3 caption = "Color Range 3 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max4 caption = "Color Range 4 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min4 caption = "Color Range 4 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max5 caption = "Color Range 5 High" default = rgb(255/255,54/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min5 caption = "Color Range 5 Low" default = rgb(92/255,26/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max6 caption = "Color Range 6 High" default = rgb(255/255,85/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min6 caption = "Color Range 6 Low" default = rgb(96/255,27/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max7 caption = "Color Range 7 High" default = rgb(255/255,118/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min7 caption = "Color Range 7 Low" default = rgb(100/255,38/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max8 caption = "Color Range 8 High" default = rgb(255/255,157/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min8 caption = "Color Range 8 Low" default = rgb(90/255,40/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max9 caption = "Color Range 9 High" default = rgb(255/255,203/255,0/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min9 caption = "Color Range 9 Low" default = rgb(82/255,54/255,0/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max10 caption = "Color Range 10 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min10 caption = "Color Range 10 Low" default = rgb(92/255,61/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max11 caption = "Color Range 11 High" default = rgb(229/255,255/255,0/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min11 caption = "Color Range 11 Low" default = rgb(68/255,68/255,0/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max12 caption = "Color Range 12 High" default = rgb(191/255,255/255,0/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min12 caption = "Color Range 12 Low" default = rgb(32/255,64/255,0/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max13 caption = "Color Range 13 High" default = rgb(0/255,255/255,55/255) hint = "Specifies the color at the high end of Range #13." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min13 caption = "Color Range 13 Low" default = rgb(0/255,78/255,0/255) hint = "Specifies the color at the low end of Range #13." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max14 caption = "Color Range 14 High" default = rgb(0/255,255/255,136/255) hint = "Specifies the color at the high end of Range #14." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min14 caption = "Color Range 14 Low" default = rgb(0/255,66/255,30/255) hint = "Specifies the color at the low end of Range #14." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max15 caption = "Color Range 15 High" default = rgb(0/255,255/255,203/255) hint = "Specifies the color at the high end of Range #15." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min15 caption = "Color Range 15 Low" default = rgb(0/255,62/255,48/255) hint = "Specifies the color at the low end of Range #15." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max16 caption = "Color Range 16 High" default = rgb(0/255,255/255,255/255) hint = "Specifies the color at the high end of Range #16." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min16 caption = "Color Range 16 Low" default = rgb(0/255,71/255,74/255) hint = "Specifies the color at the low end of Range #16." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max17 caption = "Color Range 17 High" default = rgb(0/255,212/255,255/255) hint = "Specifies the color at the high end of Range #17." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min17 caption = "Color Range 17 Low" default = rgb(0/255,57/255,82/255) hint = "Specifies the color at the low end of Range #17." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max18 caption = "Color Range 18 High" default = rgb(0/255,153/255,255/255) hint = "Specifies the color at the high end of Range #18." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min18 caption = "Color Range 18 Low" default = rgb(0/255,37/255,104/255) hint = "Specifies the color at the low end of Range #18." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max19 caption = "Color Range 19 High" default = rgb(0/255,90/255,255/255) hint = "Specifies the color at the high end of Range #19." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min19 caption = "Color Range 19 Low" default = rgb(0/255,0/255,102/255) hint = "Specifies the color at the low end of Range #19." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max20 caption = "Color Range 20 High" default = rgb(92/255,77/255,255/255) hint = "Specifies the color at the high end of Range #20." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min20 caption = "Color Range 20 Low" default = rgb(28/255,0/255,94/255) hint = "Specifies the color at the low end of Range #20." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max21 caption = "Color Range 21 High" default = rgb(131/255,67/255,255/255) hint = "Specifies the color at the high end of Range #21." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min21 caption = "Color Range 21 Low" default = rgb(57/255,0/255,112/255) hint = "Specifies the color at the low end of Range #21." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max22 caption = "Color Range 22 High" default = rgb(175/255,0/255,255/255) hint = "Specifies the color at the high end of Range #22." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min22 caption = "Color Range 22 Low" default = rgb(57/255,0/255,86/255) hint = "Specifies the color at the low end of Range #22." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max23 caption = "Color Range 23 High" default = rgb(209/255,0/255,255/255) hint = "Specifies the color at the high end of Range #23." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min23 caption = "Color Range 23 Low" default = rgb(64/255,0/255,76/255) hint = "Specifies the color at the low end of Range #23." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max24 caption = "Color Range 24 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #24." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min24 caption = "Color Range 24 Low" default = rgb(84/255,0/255,84/255) hint = "Specifies the color at the low end of Range #24." visible = (@customize && @colorPreset == "Default 24") endparam ;-------------------------------------------------------------------- ; Color Defaults for Color Wheel 12 ;-------------------------------------------------------------------- heading caption = " Color Wheel 12 Settings" visible = (@customize && @colorPreset == "Color Wheel 12") endheading color param colorWheel12Max1 caption = "Color Range 1 High" default = rgb(142/255,117/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min1 caption = "Color Range 1 Low" default = rgb(52/255,0/255,100/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max2 caption = "Color Range 2 High" default = rgb(224/255,9/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min2 caption = "Color Range 2 Low" default = rgb(86/255,0/255,84/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max3 caption = "Color Range 3 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min3 caption = "Color Range 3 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max4 caption = "Color Range 4 High" default = rgb(252/255,167/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min4 caption = "Color Range 4 Low" default = rgb(95/255,54/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max5 caption = "Color Range 5 High" default = rgb(190/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min5 caption = "Color Range 5 Low" default = rgb(63/255,84/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max6 caption = "Color Range 6 High" default = rgb(0/255,231/255,213/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min6 caption = "Color Range 6 Low" default = rgb(4/255,62/255,62/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max7 caption = "Color Range 7 High" default = rgb(182/255,27/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min7 caption = "Color Range 7 Low" default = rgb(53/255,0/255,92/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max8 caption = "Color Range 8 High" default = rgb(255/255,33/255,146/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min8 caption = "Color Range 8 Low" default = rgb(80/255,0/255,53/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max9 caption = "Color Range 9 High" default = rgb(255/255,110/255,0/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min9 caption = "Color Range 9 Low" default = rgb(101/255,25/255,21/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max10 caption = "Color Range 10 High" default = rgb(255/255,241/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min10 caption = "Color Range 10 Low" default = rgb(88/255,69/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max11 caption = "Color Range 11 High" default = rgb(0/255,248/255,103/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min11 caption = "Color Range 11 Low" default = rgb(0/255,83/255,15/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max12 caption = "Color Range 12 High" default = rgb(27/255,119/255,255/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min12 caption = "Color Range 12 Low" default = rgb(0/255,31/255,92/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Color Wheel 12") endparam ;-------------------------------------------------------------------- ; Color Defaults for Alhambra 8 ;-------------------------------------------------------------------- heading caption = " Alhambra 8 Settings" visible = (@customize && @colorPreset == "Alhambra 8") endheading color param alhambra8Max1 caption = "Color Range 1 High" default = rgb(15/255,222/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min1 caption = "Color Range 1 Low" default = rgb(0/255,43/255,52/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max2 caption = "Color Range 2 High" default = rgb(255/255,204/255,75/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min2 caption = "Color Range 2 Low" default = rgb(92/255,58/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max3 caption = "Color Range 3 High" default = rgb(188/255,152/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min3 caption = "Color Range 3 Low" default = rgb(41/255,0/255,70/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max4 caption = "Color Range 4 High" default = rgb(255/255,155/255,109/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min4 caption = "Color Range 4 Low" default = rgb(95/255,36/255,14/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max5 caption = "Color Range 5 High" default = rgb(121/255,180/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min5 caption = "Color Range 5 Low" default = rgb(0/255,47/255,91/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max6 caption = "Color Range 6 High" default = rgb(255/255,131/255,126/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min6 caption = "Color Range 6 Low" default = rgb(104/255,20/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max7 caption = "Color Range 7 High" default = rgb(33/255,255/255,220/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min7 caption = "Color Range 7 Low" default = rgb(0/255,67/255,49/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max8 caption = "Color Range 8 High" default = rgb(255/255,177/255,93/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min8 caption = "Color Range 8 Low" default = rgb(100/255,44/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Alhambra 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Belvedere 8 ;-------------------------------------------------------------------- heading caption = " Belvedere 8 Settings" visible = (@customize && @colorPreset == "Belvedere 8") endheading color param belvedere8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min1 caption = "Color Range 1 Low" default = rgb(92/255,92/255,122/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min2 caption = "Color Range 2 Low" default = rgb(92/255,92/255,122/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max3 caption = "Color Range 3 High" default = rgb(123/255,201/255,254/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min3 caption = "Color Range 3 Low" default = rgb(0/255,45/255,68/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max4 caption = "Color Range 4 High" default = rgb(255/255,230/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min4 caption = "Color Range 4 Low" default = rgb(162/255,28/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max5 caption = "Color Range 5 High" default = rgb(255/255,230/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min5 caption = "Color Range 5 Low" default = rgb(162/255,28/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max6 caption = "Color Range 6 High" default = rgb(0/255,255/255,217/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min6 caption = "Color Range 6 Low" default = rgb(0/255,54/255,46/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max7 caption = "Color Range 7 High" default = rgb(255/255,20/255,70/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min7 caption = "Color Range 7 Low" default = rgb(100/255,0/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max8 caption = "Color Range 8 High" default = rgb(95/255,84/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,89/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Belvedere 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Bouquet 8 ;-------------------------------------------------------------------- heading caption = " Bouquet 8 Settings" visible = (@customize && @colorPreset == "Bouquet 8") endheading color param bouquet8Max1 caption = "Color Range 1 High" default = rgb(0/255,255/255,131/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min1 caption = "Color Range 1 Low" default = rgb(0/255,84/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max2 caption = "Color Range 2 High" default = rgb(52/255,255/255,198/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min2 caption = "Color Range 2 Low" default = rgb(0/255,82/255,60/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max3 caption = "Color Range 3 High" default = rgb(0/255,244/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min3 caption = "Color Range 3 Low" default = rgb(0/255,64/255,74/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max4 caption = "Color Range 4 High" default = rgb(180/255,169/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min4 caption = "Color Range 4 Low" default = rgb(40/255,12/255,64/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max5 caption = "Color Range 5 High" default = rgb(251/255,148/255,230/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min5 caption = "Color Range 5 Low" default = rgb(100/255,20/255,67/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max6 caption = "Color Range 6 High" default = rgb(255/255,101/255,140/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min6 caption = "Color Range 6 Low" default = rgb(84/255,15/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max7 caption = "Color Range 7 High" default = rgb(255/255,149/255,111/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min7 caption = "Color Range 7 Low" default = rgb(77/255,36/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max8 caption = "Color Range 8 High" default = rgb(255/255,252/255,125/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min8 caption = "Color Range 8 Low" default = rgb(95/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Bouquet 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Color Switch 8 ;-------------------------------------------------------------------- heading caption = " Color Switch 8 Settings" visible = (@customize && @colorPreset == "Color Switch 8") endheading color param colorSwitch8Max1 caption = "Color Range 1 High" default = rgb(255/255,33/255,52/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min1 caption = "Color Range 1 Low" default = rgb(90/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max2 caption = "Color Range 2 High" default = rgb(61/255,136/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,82/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max3 caption = "Color Range 3 High" default = rgb(0/255,255/255,44/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min3 caption = "Color Range 3 Low" default = rgb(0/255,70/255,7/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max4 caption = "Color Range 4 High" default = rgb(255/255,131/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min4 caption = "Color Range 4 Low" default = rgb(105/255,40/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max5 caption = "Color Range 5 High" default = rgb(255/255,27/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min5 caption = "Color Range 5 Low" default = rgb(104/255,0/255,78/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max6 caption = "Color Range 6 High" default = rgb(168/255,87/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min6 caption = "Color Range 6 Low" default = rgb(35/255,0/255,58/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max7 caption = "Color Range 7 High" default = rgb(0/255,252/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min7 caption = "Color Range 7 Low" default = rgb(0/255,60/255,60/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,38/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min8 caption = "Color Range 8 Low" default = rgb(90/255,90/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Color Switch 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Evening Sky 8 ;-------------------------------------------------------------------- heading caption = " Evening Sky 8 Settings" visible = (@customize && @colorPreset == "Evening Sky 8") endheading color param eveningSky8Max1 caption = "Color Range 1 High" default = rgb(255/255,238/255,222/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min1 caption = "Color Range 1 Low" default = rgb(50/255,35/255,35/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max2 caption = "Color Range 2 High" default = rgb(255/255,226/255,85/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min2 caption = "Color Range 2 Low" default = rgb(85/255,54/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max3 caption = "Color Range 3 High" default = rgb(249/255,148/255,216/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min3 caption = "Color Range 3 Low" default = rgb(79/255,20/255,57/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max4 caption = "Color Range 4 High" default = rgb(159/255,159/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min4 caption = "Color Range 4 Low" default = rgb(22/255,16/255,54/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max5 caption = "Color Range 5 High" default = rgb(255/255,175/255,79/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min5 caption = "Color Range 5 Low" default = rgb(62/255,42/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max6 caption = "Color Range 6 High" default = rgb(124/255,190/255,251/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min6 caption = "Color Range 6 Low" default = rgb(13/255,40/255,62/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max7 caption = "Color Range 7 High" default = rgb(255/255,111/255,123/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min7 caption = "Color Range 7 Low" default = rgb(57/255,24/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max8 caption = "Color Range 8 High" default = rgb(111/255,255/255,245/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min8 caption = "Color Range 8 Low" default = rgb(0/255,60/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Evening Sky 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fantasia 8 ;-------------------------------------------------------------------- heading caption = " Fantasia 8 Settings" visible = (@customize && @colorPreset == "Fantasia 8") endheading color param fantasia8Max1 caption = "Color Range 1 High" default = rgb(255/255,230/255,103/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min1 caption = "Color Range 1 Low" default = rgb(102/255,81/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max2 caption = "Color Range 2 High" default = rgb(230/255,78/255,208/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min2 caption = "Color Range 2 Low" default = rgb(104/255,0/255,52/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max3 caption = "Color Range 3 High" default = rgb(180/255,119/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min3 caption = "Color Range 3 Low" default = rgb(56/255,0/255,82/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max4 caption = "Color Range 4 High" default = rgb(0/255,228/255,150/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min4 caption = "Color Range 4 Low" default = rgb(0/255,50/255,30/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max5 caption = "Color Range 5 High" default = rgb(131/255,148/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min5 caption = "Color Range 5 Low" default = rgb(38/255,31/255,85/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max6 caption = "Color Range 6 High" default = rgb(255/255,182/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min6 caption = "Color Range 6 Low" default = rgb(76/255,40/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max7 caption = "Color Range 7 High" default = rgb(252/255,0/255,113/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min7 caption = "Color Range 7 Low" default = rgb(84/255,0/255,34/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max8 caption = "Color Range 8 High" default = rgb(0/255,232/255,249/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min8 caption = "Color Range 8 Low" default = rgb(0/255,64/255,78/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Fantasia 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Flowering Orchard 8 ;-------------------------------------------------------------------- heading caption = " Flowering Orchard 8 Settings" visible = (@customize && @colorPreset == "Flowering Orchard 8") endheading color param floweringOrchard8Max1 caption = "Color Range 1 High" default = rgb(255/255,188/255,213/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min1 caption = "Color Range 1 Low" default = rgb(132/255,30/255,66/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max2 caption = "Color Range 2 High" default = rgb(240/255,135/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min2 caption = "Color Range 2 Low" default = rgb(70/255,0/255,59/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max3 caption = "Color Range 3 High" default = rgb(255/255,75/255,153/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min3 caption = "Color Range 3 Low" default = rgb(104/255,15/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max4 caption = "Color Range 4 High" default = rgb(71/255,213/255,119/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min4 caption = "Color Range 4 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max5 caption = "Color Range 5 High" default = rgb(255/255,102/255,209/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min5 caption = "Color Range 5 Low" default = rgb(116/255,10/255,86/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max6 caption = "Color Range 6 High" default = rgb(154/255,199/255,51/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min6 caption = "Color Range 6 Low" default = rgb(28/255,44/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max7 caption = "Color Range 7 High" default = rgb(255/255,162/255,228/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min7 caption = "Color Range 7 Low" default = rgb(110/255,0/255,55/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max8 caption = "Color Range 8 High" default = rgb(255/255,201/255,237/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min8 caption = "Color Range 8 Low" default = rgb(145/255,20/255,54/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Morning Sky 8 ;-------------------------------------------------------------------- heading caption = " Morning Sky 8 Settings" visible = (@customize && @colorPreset == "Morning Sky 8") endheading color param morningSky8Max1 caption = "Color Range 1 High" default = rgb(255/255,178/255,217/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min1 caption = "Color Range 1 Low" default = rgb(79/255,29/255,57/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max2 caption = "Color Range 2 High" default = rgb(107/255,246/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min2 caption = "Color Range 2 Low" default = rgb(13/255,70/255,75/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max3 caption = "Color Range 3 High" default = rgb(255/255,199/255,137/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min3 caption = "Color Range 3 Low" default = rgb(62/255,42/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max4 caption = "Color Range 4 High" default = rgb(241/255,245/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min4 caption = "Color Range 4 Low" default = rgb(16/255,24/255,46/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max5 caption = "Color Range 5 High" default = rgb(255/255,177/255,188/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min5 caption = "Color Range 5 Low" default = rgb(54/255,14/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max6 caption = "Color Range 6 High" default = rgb(248/255,236/255,236/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min6 caption = "Color Range 6 Low" default = rgb(49/255,38/255,35/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max7 caption = "Color Range 7 High" default = rgb(129/255,201/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min7 caption = "Color Range 7 Low" default = rgb(0/255,56/255,70/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,146/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min8 caption = "Color Range 8 Low" default = rgb(89/255,76/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Morning Sky 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Pastel 8 ;-------------------------------------------------------------------- heading caption = " Pastel 8 Settings" visible = (@customize && @colorPreset == "Pastel 8") endheading color param pastel8Max1 caption = "Color Range 1 High" default = rgb(147/255,255/255,193/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min1 caption = "Color Range 1 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max2 caption = "Color Range 2 High" default = rgb(147/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min2 caption = "Color Range 2 Low" default = rgb(0/255,48/255,48/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max3 caption = "Color Range 3 High" default = rgb(148/255,148/255,253/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min3 caption = "Color Range 3 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max4 caption = "Color Range 4 High" default = rgb(199/255,149/255,253/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min4 caption = "Color Range 4 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max5 caption = "Color Range 5 High" default = rgb(255/255,147/255,221/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min5 caption = "Color Range 5 Low" default = rgb(96/255,0/255,32/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max6 caption = "Color Range 6 High" default = rgb(254/255,148/255,148/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min6 caption = "Color Range 6 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max7 caption = "Color Range 7 High" default = rgb(255/255,202/255,147/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min7 caption = "Color Range 7 Low" default = rgb(160/255,16/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,147/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min8 caption = "Color Range 8 Low" default = rgb(152/255,64/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Pastel 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Pastel Rainbow 8 ;-------------------------------------------------------------------- heading caption = " Pastel Rainbow 8 Settings" visible = (@customize && @colorPreset == "Pastel Rainbow 8") endheading color param pastelRainbow8Max1 caption = "Color Range 1 High" default = rgb(242/255,246/255,174/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min1 caption = "Color Range 1 Low" default = rgb(20/255,48/255,12/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max2 caption = "Color Range 2 High" default = rgb(182/255,242/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min2 caption = "Color Range 2 Low" default = rgb(20/255,44/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max3 caption = "Color Range 3 High" default = rgb(202/255,202/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min3 caption = "Color Range 3 Low" default = rgb(36/255,36/255,48/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max4 caption = "Color Range 4 High" default = rgb(255/255,170/255,170/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min4 caption = "Color Range 4 Low" default = rgb(89/255,0/255,24/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max5 caption = "Color Range 5 High" default = rgb(255/255,246/255,178/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min5 caption = "Color Range 5 Low" default = rgb(40/255,0/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max6 caption = "Color Range 6 High" default = rgb(255/255,238/255,206/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min6 caption = "Color Range 6 Low" default = rgb(52/255,16/255,40/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max7 caption = "Color Range 7 High" default = rgb(214/255,222/255,161/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min7 caption = "Color Range 7 Low" default = rgb(4/255,32/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max8 caption = "Color Range 8 High" default = rgb(255/255,230/255,246/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min8 caption = "Color Range 8 Low" default = rgb(70/255,50/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Showtime 8 ;-------------------------------------------------------------------- heading caption = " Showtime 8 Settings" visible = (@customize && @colorPreset == "Showtime 8") endheading color param showtime8Max1 caption = "Color Range 1 High" default = rgb(241/255,53/255,82/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min1 caption = "Color Range 1 Low" default = rgb(88/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max2 caption = "Color Range 2 High" default = rgb(255/255,121/255,52/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min2 caption = "Color Range 2 Low" default = rgb(107/255,29/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max3 caption = "Color Range 3 High" default = rgb(253/255,168/255,67/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min3 caption = "Color Range 3 Low" default = rgb(97/255,42/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max4 caption = "Color Range 4 High" default = rgb(255/255,231/255,21/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min4 caption = "Color Range 4 Low" default = rgb(140/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max5 caption = "Color Range 5 High" default = rgb(58/255,219/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min5 caption = "Color Range 5 Low" default = rgb(0/255,36/255,83/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max6 caption = "Color Range 6 High" default = rgb(9/255,116/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min6 caption = "Color Range 6 Low" default = rgb(33/255,30/255,81/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max7 caption = "Color Range 7 High" default = rgb(105/255,71/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min7 caption = "Color Range 7 Low" default = rgb(36/255,0/255,76/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max8 caption = "Color Range 8 High" default = rgb(187/255,32/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min8 caption = "Color Range 8 Low" default = rgb(50/255,0/255,56/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Showtime 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Soleil 8 ;-------------------------------------------------------------------- heading caption = " Soleil 8 Settings" visible = (@customize && @colorPreset == "Soleil 8") endheading color param soleil8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,35/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min1 caption = "Color Range 1 Low" default = rgb(76/255,44/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max2 caption = "Color Range 2 High" default = rgb(255/255,209/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min2 caption = "Color Range 2 Low" default = rgb(59/255,24/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max3 caption = "Color Range 3 High" default = rgb(231/255,237/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min3 caption = "Color Range 3 Low" default = rgb(54/255,29/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max4 caption = "Color Range 4 High" default = rgb(255/255,141/255,49/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min4 caption = "Color Range 4 Low" default = rgb(92/255,32/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,156/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min5 caption = "Color Range 5 Low" default = rgb(76/255,44/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max6 caption = "Color Range 6 High" default = rgb(255/255,158/255,17/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min6 caption = "Color Range 6 Low" default = rgb(59/255,24/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,217/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min7 caption = "Color Range 7 Low" default = rgb(76/255,41/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max8 caption = "Color Range 8 High" default = rgb(255/255,184/255,53/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min8 caption = "Color Range 8 Low" default = rgb(76/255,29/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Soleil 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Chill 8 ;-------------------------------------------------------------------- heading caption = " Chill 8 Settings" visible = (@customize && @colorPreset == "Chill 8") endheading color param chillMax1 caption = "Color Range 1 High" default = rgb(233/255,245/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin1 caption = "Color Range 1 Low" default = rgb(0/255,21/255,60/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax2 caption = "Color Range 2 High" default = rgb(182/255,201/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,76/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax3 caption = "Color Range 3 High" default = rgb(0/255,34/255,136/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin3 caption = "Color Range 3 Low" default = rgb(9/255,9/255,59/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax4 caption = "Color Range 4 High" default = rgb(0/255,75/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,25/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax5 caption = "Color Range 5 High" default = rgb(233/255,245/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin5 caption = "Color Range 5 Low" default = rgb(0/255,21/255,60/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax6 caption = "Color Range 6 High" default = rgb(182/255,201/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,76/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax7 caption = "Color Range 7 High" default = rgb(0/255,34/255,136/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin7 caption = "Color Range 7 Low" default = rgb(9/255,9/255,59/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax8 caption = "Color Range 8 High" default = rgb(0/255,75/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,25/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Chill 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cloud Nine 8 ;-------------------------------------------------------------------- heading caption = " Cloud Nine 8 Settings" visible = (@customize && @colorPreset == "Cloud Nine 8") endheading color param cloudNineMax1 caption = "Color Range 1 High" default = rgb(255/255,255/255,173/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin1 caption = "Color Range 1 Low" default = rgb(143/255,60/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax2 caption = "Color Range 2 High" default = rgb(247/255,214/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin2 caption = "Color Range 2 Low" default = rgb(139/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax3 caption = "Color Range 3 High" default = rgb(212/255,255/255,249/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin3 caption = "Color Range 3 Low" default = rgb(0/255,53/255,20/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax4 caption = "Color Range 4 High" default = rgb(255/255,221/255,217/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin4 caption = "Color Range 4 Low" default = rgb(115/255,21/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax5 caption = "Color Range 5 High" default = rgb(255/255,255/255,173/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin5 caption = "Color Range 5 Low" default = rgb(140/255,63/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax6 caption = "Color Range 6 High" default = rgb(247/255,214/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin6 caption = "Color Range 6 Low" default = rgb(139/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax7 caption = "Color Range 7 High" default = rgb(212/255,255/255,249/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin7 caption = "Color Range 7 Low" default = rgb(0/255,53/255,20/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax8 caption = "Color Range 8 High" default = rgb(255/255,221/255,217/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin8 caption = "Color Range 8 Low" default = rgb(115/255,21/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for La Terra 8 ;-------------------------------------------------------------------- heading caption = " La Terra 8 Settings" visible = (@customize && @colorPreset == "La Terra 8") endheading color param laTerraMax1 caption = "Color Range 1 High" default = rgb(255/255,174/255,103/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin1 caption = "Color Range 1 Low" default = rgb(102/255,47/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax2 caption = "Color Range 2 High" default = rgb(255/255,242/255,39/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin2 caption = "Color Range 2 Low" default = rgb(100/255,58/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax3 caption = "Color Range 3 High" default = rgb(170/255,86/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin3 caption = "Color Range 3 Low" default = rgb(92/255,29/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax4 caption = "Color Range 4 High" default = rgb(190/255,118/255,13/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin4 caption = "Color Range 4 Low" default = rgb(84/255,41/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax5 caption = "Color Range 5 High" default = rgb(255/255,174/255,103/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin5 caption = "Color Range 5 Low" default = rgb(102/255,47/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax6 caption = "Color Range 6 High" default = rgb(255/255,242/255,39/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin6 caption = "Color Range 6 Low" default = rgb(100/255,58/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax7 caption = "Color Range 7 High" default = rgb(170/255,86/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin7 caption = "Color Range 7 Low" default = rgb(92/255,29/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax8 caption = "Color Range 8 High" default = rgb(190/255,118/255,13/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin8 caption = "Color Range 8 Low" default = rgb(84/255,41/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "La Terra 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Santa Fe 8 ;-------------------------------------------------------------------- heading caption = " Santa Fe 8 Settings" visible = (@customize && @colorPreset == "Santa Fe 8") endheading color param santaFe8Max1 caption = "Color Range 1 High" default = rgb(255/255,235/255,76/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min1 caption = "Color Range 1 Low" default = rgb(122/255,52/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max2 caption = "Color Range 2 High" default = rgb(0/255,229/255,222/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min2 caption = "Color Range 2 Low" default = rgb(0/255,48/255,51/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max3 caption = "Color Range 3 High" default = rgb(255/255,200/255,140/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min3 caption = "Color Range 3 Low" default = rgb(82/255,21/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max4 caption = "Color Range 4 High" default = rgb(255/255,157/255,82/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min4 caption = "Color Range 4 Low" default = rgb(130/255,0/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max5 caption = "Color Range 5 High" default = rgb(255/255,235/255,76/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min5 caption = "Color Range 5 Low" default = rgb(122/255,52/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max6 caption = "Color Range 6 High" default = rgb(0/255,229/255,222/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min6 caption = "Color Range 6 Low" default = rgb(0/255,48/255,51/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max7 caption = "Color Range 7 High" default = rgb(255/255,200/255,140/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min7 caption = "Color Range 7 Low" default = rgb(82/255,21/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max8 caption = "Color Range 8 High" default = rgb(255/255,157/255,82/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min8 caption = "Color Range 8 Low" default = rgb(130/255,0/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Santa Fe 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Spring 8 ;-------------------------------------------------------------------- heading caption = " Spring 8 Settings" visible = (@customize && @colorPreset == "Spring 8") endheading color param spring8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,145/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min1 caption = "Color Range 1 Low" default = rgb(110/255,65/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max2 caption = "Color Range 2 High" default = rgb(215/255,182/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min2 caption = "Color Range 2 Low" default = rgb(86/255,0/255,110/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max3 caption = "Color Range 3 High" default = rgb(189/255,246/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min3 caption = "Color Range 3 Low" default = rgb(0/255,51/255,54/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max4 caption = "Color Range 4 High" default = rgb(255/255,181/255,237/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min4 caption = "Color Range 4 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,145/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min5 caption = "Color Range 5 Low" default = rgb(110/255,65/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max6 caption = "Color Range 6 High" default = rgb(215/255,182/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min6 caption = "Color Range 6 Low" default = rgb(86/255,0/255,110/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max7 caption = "Color Range 7 High" default = rgb(189/255,246/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min7 caption = "Color Range 7 Low" default = rgb(0/255,51/255,54/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max8 caption = "Color Range 8 High" default = rgb(255/255,181/255,237/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min8 caption = "Color Range 8 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Spring 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Summer 8 ;-------------------------------------------------------------------- heading caption = " Summer 8 Settings" visible = (@customize && @colorPreset == "Summer 8") endheading color param summer8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min1 caption = "Color Range 1 Low" default = rgb(64/255,32/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max2 caption = "Color Range 2 High" default = rgb(255/255,64/255,64/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min2 caption = "Color Range 2 Low" default = rgb(64/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max3 caption = "Color Range 3 High" default = rgb(0/255,255/255,101/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min3 caption = "Color Range 3 Low" default = rgb(0/255,62/255,22/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max4 caption = "Color Range 4 High" default = rgb(64/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,64/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min5 caption = "Color Range 5 Low" default = rgb(64/255,32/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max6 caption = "Color Range 6 High" default = rgb(255/255,64/255,64/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min6 caption = "Color Range 6 Low" default = rgb(64/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max7 caption = "Color Range 7 High" default = rgb(0/255,255/255,101/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min7 caption = "Color Range 7 Low" default = rgb(0/255,62/255,22/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max8 caption = "Color Range 8 High" default = rgb(64/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Summer 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fall 8 ;-------------------------------------------------------------------- heading caption = " Fall 8 Settings" visible = (@customize && @colorPreset == "Fall 8") endheading color param fall8Max1 caption = "Color Range 1 High" default = rgb(255/255,235/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min1 caption = "Color Range 1 Low" default = rgb(136/255,46/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max2 caption = "Color Range 2 High" default = rgb(255/255,61/255,32/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min2 caption = "Color Range 2 Low" default = rgb(96/255,26/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max3 caption = "Color Range 3 High" default = rgb(255/255,184/255,26/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min3 caption = "Color Range 3 Low" default = rgb(86/255,24/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max4 caption = "Color Range 4 High" default = rgb(255/255,107/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min4 caption = "Color Range 4 Low" default = rgb(112/255,29/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max5 caption = "Color Range 5 High" default = rgb(255/255,235/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min5 caption = "Color Range 5 Low" default = rgb(136/255,46/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max6 caption = "Color Range 6 High" default = rgb(255/255,61/255,32/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min6 caption = "Color Range 6 Low" default = rgb(96/255,26/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max7 caption = "Color Range 7 High" default = rgb(255/255,184/255,26/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min7 caption = "Color Range 7 Low" default = rgb(86/255,24/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max8 caption = "Color Range 8 High" default = rgb(255/255,107/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min8 caption = "Color Range 8 Low" default = rgb(112/255,29/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Fall 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Winter 8 ;-------------------------------------------------------------------- heading caption = " Winter 8 Settings" visible = (@customize && @colorPreset == "Winter 8") endheading color param winter8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min1 caption = "Color Range 1 Low" default = rgb(65/255,65/255,87/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max2 caption = "Color Range 2 High" default = rgb(163/255,186/255,209/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min2 caption = "Color Range 2 Low" default = rgb(35/255,35/255,61/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max3 caption = "Color Range 3 High" default = rgb(173/255,166/255,157/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min3 caption = "Color Range 3 Low" default = rgb(78/255,65/255,52/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max4 caption = "Color Range 4 High" default = rgb(113/255,118/255,140/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min4 caption = "Color Range 4 Low" default = rgb(20/255,32/255,68/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min5 caption = "Color Range 5 Low" default = rgb(65/255,65/255,87/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max6 caption = "Color Range 6 High" default = rgb(163/255,186/255,209/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min6 caption = "Color Range 6 Low" default = rgb(35/255,35/255,61/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max7 caption = "Color Range 7 High" default = rgb(173/255,166/255,157/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min7 caption = "Color Range 7 Low" default = rgb(78/255,65/255,52/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max8 caption = "Color Range 8 High" default = rgb(113/255,118/255,140/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min8 caption = "Color Range 8 Low" default = rgb(20/255,32/255,68/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Winter 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Mojave 8 ;-------------------------------------------------------------------- heading caption = " Mojave 8 Settings" visible = (@customize && @colorPreset == "Mojave 8") endheading color param mojave8Max1 caption = "Color Range 1 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min1 caption = "Color Range 1 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max2 caption = "Color Range 2 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min2 caption = "Color Range 2 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max3 caption = "Color Range 3 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min3 caption = "Color Range 3 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max4 caption = "Color Range 4 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min4 caption = "Color Range 4 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max5 caption = "Color Range 5 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min5 caption = "Color Range 5 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max6 caption = "Color Range 6 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min6 caption = "Color Range 6 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max7 caption = "Color Range 7 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min7 caption = "Color Range 7 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max8 caption = "Color Range 8 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min8 caption = "Color Range 8 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Mojave 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green 8 ;-------------------------------------------------------------------- heading caption = " Gold/Green 8 Settings" visible = (@customize && @colorPreset == "Gold/Green 8") endheading color param goldGreen8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min2 caption = "Color Range 2 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min4 caption = "Color Range 4 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max5 caption = "Color Range 5 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min5 caption = "Color Range 5 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max6 caption = "Color Range 6 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min6 caption = "Color Range 6 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max7 caption = "Color Range 7 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min7 caption = "Color Range 7 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max8 caption = "Color Range 8 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min8 caption = "Color Range 8 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Green 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green Alt 8 ;-------------------------------------------------------------------- heading caption = " Gold/Green Alt 8 Settings" visible = (@customize && @colorPreset == "Gold/Green Alt 8") endheading color param goldGreenAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max2 caption = "Color Range 2 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min2 caption = "Color Range 2 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max4 caption = "Color Range 4 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min4 caption = "Color Range 4 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min5 caption = "Color Range 5 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max6 caption = "Color Range 6 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min6 caption = "Color Range 6 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min7 caption = "Color Range 7 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max8 caption = "Color Range 8 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min8 caption = "Color Range 8 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Silver 8 ;-------------------------------------------------------------------- heading caption = " Gold/Silver 8 Settings" visible = (@customize && @colorPreset == "Gold/Silver 8") endheading color param goldSilver8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min2 caption = "Color Range 2 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min4 caption = "Color Range 4 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min5 caption = "Color Range 5 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min6 caption = "Color Range 6 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min7 caption = "Color Range 7 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min8 caption = "Color Range 8 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Silver Alt 8 ;-------------------------------------------------------------------- heading caption = " Gold/Silver Alt 8 Settings" visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endheading color param goldSilverAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min2 caption = "Color Range 2 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min4 caption = "Color Range 4 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min5 caption = "Color Range 5 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min6 caption = "Color Range 6 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min7 caption = "Color Range 7 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min8 caption = "Color Range 8 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow 8 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow 8 Settings" visible = (@customize && @colorPreset == "Purple/Yellow 8") endheading color param purpleYellow8Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max2 caption = "Color Range 2 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min2 caption = "Color Range 2 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max3 caption = "Color Range 3 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min3 caption = "Color Range 3 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max4 caption = "Color Range 4 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min4 caption = "Color Range 4 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min5 caption = "Color Range 5 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min6 caption = "Color Range 6 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min7 caption = "Color Range 7 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min8 caption = "Color Range 8 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow Alt 8 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow Alt 8 Settings" visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endheading color param purpleYellowAlt8Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max3 caption = "Color Range 3 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min3 caption = "Color Range 3 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min4 caption = "Color Range 4 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max5 caption = "Color Range 5 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min5 caption = "Color Range 5 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min6 caption = "Color Range 6 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max7 caption = "Color Range 7 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min7 caption = "Color Range 7 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min8 caption = "Color Range 8 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Silver/Blue 8 ;-------------------------------------------------------------------- heading caption = " Silver/Blue 8 Settings" visible = (@customize && @colorPreset == "Silver/Blue 8") endheading color param silverBlue8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min1 caption = "Color Range 1 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min2 caption = "Color Range 2 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min3 caption = "Color Range 3 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min4 caption = "Color Range 4 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max5 caption = "Color Range 5 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min5 caption = "Color Range 5 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max6 caption = "Color Range 6 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max7 caption = "Color Range 7 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min7 caption = "Color Range 7 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max8 caption = "Color Range 8 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Silver/Blue Alt 8 ;-------------------------------------------------------------------- heading caption = " Silver/Blue Alt 8 Settings" visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endheading color param silverBlueAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min1 caption = "Color Range 1 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max2 caption = "Color Range 2 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min3 caption = "Color Range 3 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max4 caption = "Color Range 4 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min5 caption = "Color Range 5 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max6 caption = "Color Range 6 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min7 caption = "Color Range 7 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max8 caption = "Color Range 8 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fourth of July 3 ;-------------------------------------------------------------------- heading caption = " Fourth of July 3 Settings" visible = (@customize && @colorPreset == "Fourth of July 3") endheading color param fourthOfJuly3Max1 caption = "Color Range 1 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min1 caption = "Color Range 1 Low" default = rgb(128/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Max2 caption = "Color Range 2 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,128/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min3 caption = "Color Range 3 Low" default = rgb(128/255,128/255,128/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam ;-------------------------------------------------------------------- ; Color Defaults for Blue/Silver 2 ;-------------------------------------------------------------------- heading caption = " Blue/Silver 2 Settings" visible = (@customize && @colorPreset == "Blue/Silver 2") endheading color param blueSilver2Max1 caption = "Color Range 1 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Min1 caption = "Color Range 1 Low" default = rgb(0/255,0/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Min2 caption = "Color Range 2 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Blue/White 2 ;-------------------------------------------------------------------- heading caption = " Blue/White 2 Settings" visible = (@customize && @colorPreset == "Blue/White 2") endheading color param blueWhite2Max1 caption = "Color Range 1 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Min1 caption = "Color Range 1 Low" default = rgb(0/255,0/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Min2 caption = "Color Range 2 Low" default = rgb(124/255,124/255,124/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Blue/White 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cyan/Magenta 2 ;-------------------------------------------------------------------- heading caption = " Cyan/Magenta 2 Settings" visible = (@customize && @colorPreset == "Cyan/Magenta 2") endheading color param cyanMagenta2Max1 caption = "Color Range 1 High" default = rgb(128/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Min1 caption = "Color Range 1 Low" default = rgb(0/255,64/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Max2 caption = "Color Range 2 High" default = rgb(255/255,128/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Min2 caption = "Color Range 2 Low" default = rgb(64/255,0/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cyan/Yellow 2 ;-------------------------------------------------------------------- heading caption = " Cyan/Yellow 2 Settings" visible = (@customize && @colorPreset == "Cyan/Yellow 2") endheading color param cyanYellow2Max1 caption = "Color Range 1 High" default = rgb(128/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Min1 caption = "Color Range 1 Low" default = rgb(0/255,64/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green 2 ;-------------------------------------------------------------------- heading caption = " Gold/Green 2 Settings" visible = (@customize && @colorPreset == "Gold/Green 2") endheading color param goldGreen2Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Max2 caption = "Color Range 2 High" default = rgb(0/255,129/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Min2 caption = "Color Range 2 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow 2 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow 2 Settings" visible = (@customize && @colorPreset == "Purple/Yellow 2") endheading color param purpleYellow2Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Red/Tan 2 ;-------------------------------------------------------------------- heading caption = " Red/Tan 2 Settings" visible = (@customize && @colorPreset == "Red/Tan 2") endheading color param redTan2Max1 caption = "Color Range 1 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Min1 caption = "Color Range 1 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Max2 caption = "Color Range 2 High" default = rgb(255/255,208/255,152/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Min2 caption = "Color Range 2 Low" default = rgb(128/255,108/255,60/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Red/Tan 2") endparam ;-------------------------------------------------------------------- ; General Color Parameters ;-------------------------------------------------------------------- heading caption = " General Color Parameters" endheading color param maxColor caption = "Max Iter Color" default = rgb(0,0,0) hint = "Specifies the color assigned when the Maximum Iterations \ is reached before the orbit is trapped." endparam color param backColor caption = "Background Color" default = rgb(0,0,0) hint = "Specifies the color assigned to the background of the image." visible = (@solid == false) endparam color param borderColor caption = "Border Color" default = rgb(0,0,0) hint = "Specifies the color assigned to the border of the shapes." visible = (@solidBorder == false) && (@colorPreset == "Gradient") && \ (@colorMode != "Normal") && (@borderWidth > 0.0) endparam bool param solidBorder caption = "Solid Border" hint = "If this is enabled orbits, the border around the shapes is \ made solid." default = false visible = (@colorPreset == "Gradient") && (@colorMode != "Normal") && \ (@borderWidth > 0.0) endparam int param colorOffset caption = "Range Offset" default = 0 min = 0 max = 23 hint = "This is used to rotate the color ranges. The offset can \ range from 0 to 23, where 23 is the maximum number of ranges \ that can be specified using the 'Generate' Color Preset." visible = (@colorPreset != "Gradient") endparam bool param solid caption = "Solid Background" hint = "If this is enabled orbits that aren't trapped become solid. \ This is used to make the background transparent for use in \ multi-layer images." default = false endparam ;-------------------------------------------------------------------- ; Texture Parameters ;-------------------------------------------------------------------- heading caption = "Texture Settings" visible = (@colorPreset == "Gradient") endheading param useFBM caption = "Use fBm" hint = "Check this box to enable use of FBM texturing on the areas \ that are trapped." default = false visible = (@colorPreset == "Gradient") endparam param mask_type caption = "Mask Type" enum = "Distance" "Iteration" "Range" visible = (@useFBM && @colorPreset == "Gradient") endparam param mask caption = "Mask Threshold" default = 0.0 min = 0.0 hint = "With the Distance Mask Type orbits that don't come at least \ this close to the trap are made solid. A value of zero means \ that no pixels are made solid." visible = (@useFBM && @colorPreset == "Gradient") endparam param mask_mod caption = "Mask Modulation" default = 0 hint = "With the Modulation Mask Type the iteration that the orbit \ was caught by the trap is modulated by this value, and if \ the Mask Threshold is smaller the pixel is made solid." visible = (@useFBM && @colorPreset == "Gradient") endparam param inverse caption = "Mask Reversed" default = false visible = (@useFBM && @colorPreset == "Gradient") endparam param texture_type caption = "Texture Type" enum = "Random" "fBm" "Corrected fBm" hint = "This is the type of texture to add to the coloring. The \ Texture Amount parameter must be non-zero for texture to be added." visible = (@useFBM && @colorPreset == "Gradient") endparam param rnd caption = "Texture Amount" default = 0.0 hint = "This is the amount of texturing to add to the coloring." visible = (@useFBM && @colorPreset == "Gradient") endparam param initial caption = "fBm Initialisation" enum = "Pixel" "Orbit" ;"Trap" hint = "Different ways of starting the fBm formula. With \ Orbit and Trap the texture will follow the orbit trap \ elements in some way." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmfunc caption = "fBm Function" enum = "Ident" "Abs" "Sqr" "Sqrt" "Ceil" hint = "This is a function that is added to the fBm to chnage \ the way that it looks." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmscale caption = "fBm Scale" default = 1.0 hint = "This is the overall scale of the noise." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmoffset caption = "fBm Offset" default = (0,0) hint = "This is the offset of the pattern. You can use this to shift \ the pattern around on the complex plane." visible = (@useFBM && @colorPreset == "Gradient") endparam param angle caption = "fBm Rotation" default = 0.0 hint = "This is the angle, in degrees, of the noise." visible = (@useFBM && @colorPreset == "Gradient") endparam param step caption = "fBm Scale Step" default = 0.5 hint = "This is the step in scale between noise iterations." visible = (@useFBM && @colorPreset == "Gradient") endparam param anglestep caption = "fBm Rotation Step" default = 37.0 hint = "This is the angle, in degrees, to rotate between noise \ iterations." visible = (@useFBM && @colorPreset == "Gradient") endparam param octaves caption = "fBm Octaves" default = 7 min = 1 hint = "This is the number of iterations of the noise formula." visible = (@useFBM && @colorPreset == "Gradient") endparam param power caption = "fBm Exponent" default = 2.0 hint = "This is the exponent used to scramble numbers." visible = (@useFBM && @colorPreset == "Gradient") endparam param pattern caption = "fBm Pattern" enum = "None" "Marble" "Wood" "Cells" "Squares" hint = "This creates a repeating pattern to be disturbed by the fBm." visible = (@useFBM && @colorPreset == "Gradient") endparam param pfreq caption = "fBm Frequency" default = 1.0 hint = "This controls the frequency of the Pattern." visible = (@useFBM && @colorPreset == "Gradient") endparam param turb caption = "fBm Turbulence" default = 1.0 hint = "With a Pattern other than None this effects how \ the pattern will be by the fBm." visible = (@useFBM && @colorPreset == "Gradient") endparam } kcc-PolygonTraps { ; ; This formula is based on Samuel Monnier's PolygonalRosace ; transform. ; global: color colorMap [24, 2] int ranges = 8 int offset = 0 if (@colorPreset == "Gradient") ; Use the gradient for the color ranges. ranges = @colorRanges offset = 0 elseif (@colorPreset == "Custom") ; User specified custom range. ; Initial values by Toby Marshall. colorMap [0,0] = @colorMax1, colorMap [0,1] = @colorMin1 colorMap [1,0] = @colorMax2, colorMap [1,1] = @colorMin2 colorMap [2,0] = @colorMax3, colorMap [2,1] = @colorMin3 colorMap [3,0] = @colorMax4, colorMap [3,1] = @colorMin4 colorMap [4,0] = @colorMax5, colorMap [4,1] = @colorMin5 colorMap [5,0] = @colorMax6, colorMap [5,1] = @colorMin6 colorMap [6,0] = @colorMax7, colorMap [6,1] = @colorMin7 colorMap [7,0] = @colorMax8, colorMap [7,1] = @colorMin8 colorMap [8,0] = @customMax9, colorMap [8,1] = @customMin9 colorMap [9,0] = @customMax10, colorMap [9,1] = @customMin10 colorMap [10,0] = @customMax11, colorMap [10,1] = @customMin11 colorMap [11,0] = @customMax12, colorMap [11,1] = @customMin12 colorMap [12,0] = @customMax13, colorMap [12,1] = @customMin13 colorMap [13,0] = @customMax14, colorMap [13,1] = @customMin14 colorMap [14,0] = @customMax15, colorMap [14,1] = @customMin15 colorMap [15,0] = @customMax16, colorMap [15,1] = @customMin16 colorMap [16,0] = @customMax17, colorMap [16,1] = @customMin17 colorMap [17,0] = @customMax18, colorMap [17,1] = @customMin18 colorMap [18,0] = @customMax19, colorMap [18,1] = @customMin19 colorMap [19,0] = @customMax20, colorMap [19,1] = @customMin20 colorMap [20,0] = @customMax21, colorMap [20,1] = @customMin21 colorMap [21,0] = @customMax22, colorMap [21,1] = @customMin22 colorMap [22,0] = @customMax23, colorMap [22,1] = @customMin23 colorMap [23,0] = @customMax24, colorMap [23,1] = @customMin24 ranges = @colorRanges offset = @colorOffset elseif (@colorPreset == "Generate") ; Compute the color ranges using the gradient. ranges = 0 offset = @colorOffset while ranges < @numRanges color gradientColor = gradient(ranges/@numRanges) colorMap [ranges,0] = hsl(hue(gradientColor), sat(gradientColor), @luminanceUpper) colorMap [ranges,1] = hsl(hue(gradientColor), sat(gradientColor), @luminanceLower) ranges = ranges + 1 endwhile elseif (@colorPreset == "Default") ; colorMap [0,0] = @defaultMax1, colorMap [0,1] = @defaultMin1 colorMap [1,0] = @defaultMax2, colorMap [1,1] = @defaultMin2 colorMap [2,0] = @defaultMax3, colorMap [2,1] = @defaultMin3 colorMap [3,0] = @defaultMax4, colorMap [3,1] = @defaultMin4 colorMap [4,0] = @defaultMax5, colorMap [4,1] = @defaultMin5 colorMap [5,0] = @defaultMax6, colorMap [5,1] = @defaultMin6 colorMap [6,0] = @defaultMax7, colorMap [6,1] = @defaultMin7 colorMap [7,0] = @defaultMax8, colorMap [7,1] = @defaultMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Default 12") ; Created by Toby Marshall. colorMap [0,0] = @default12Max1, colorMap [0,1] = @default12Min1 colorMap [1,0] = @default12Max2, colorMap [1,1] = @default12Min2 colorMap [2,0] = @default12Max3, colorMap [2,1] = @default12Min3 colorMap [3,0] = @default12Max4, colorMap [3,1] = @default12Min4 colorMap [4,0] = @default12Max5, colorMap [4,1] = @default12Min5 colorMap [5,0] = @default12Max6, colorMap [5,1] = @default12Min6 colorMap [6,0] = @default12Max7, colorMap [6,1] = @default12Min7 colorMap [7,0] = @default12Max8, colorMap [7,1] = @default12Min8 colorMap [8,0] = @default12Max9, colorMap [8,1] = @default12Min9 colorMap [9,0] = @default12Max10, colorMap [9,1] = @default12Min10 colorMap [10,0] = @default12Max11, colorMap [10,1] = @default12Min11 colorMap [11,0] = @default12Max12, colorMap [11,1] = @default12Min12 ranges = 12 offset = @colorOffset elseif (@colorPreset == "Default 16") ; Created by Toby Marshall. colorMap [0,0] = @default16Max1, colorMap [0,1] = @default16Min1 colorMap [1,0] = @default16Max2, colorMap [1,1] = @default16Min2 colorMap [2,0] = @default16Max3, colorMap [2,1] = @default16Min3 colorMap [3,0] = @default16Max4, colorMap [3,1] = @default16Min4 colorMap [4,0] = @default16Max5, colorMap [4,1] = @default16Min5 colorMap [5,0] = @default16Max6, colorMap [5,1] = @default16Min6 colorMap [6,0] = @default16Max7, colorMap [6,1] = @default16Min7 colorMap [7,0] = @default16Max8, colorMap [7,1] = @default16Min8 colorMap [8,0] = @default16Max9, colorMap [8,1] = @default16Min9 colorMap [9,0] = @default16Max10, colorMap [9,1] = @default16Min10 colorMap [10,0] = @default16Max11, colorMap [10,1] = @default16Min11 colorMap [11,0] = @default16Max12, colorMap [11,1] = @default16Min12 colorMap [12,0] = @default16Max13, colorMap [12,1] = @default16Min13 colorMap [13,0] = @default16Max14, colorMap [13,1] = @default16Min14 colorMap [14,0] = @default16Max15, colorMap [14,1] = @default16Min15 colorMap [15,0] = @default16Max16, colorMap [15,1] = @default16Min16 ranges = 16 offset = @colorOffset elseif (@colorPreset == "Default 24") ; Created by Toby Marshall. colorMap [0,0] = @default24Max1, colorMap [0,1] = @default24Min1 colorMap [1,0] = @default24Max2, colorMap [1,1] = @default24Min2 colorMap [2,0] = @default24Max3, colorMap [2,1] = @default24Min3 colorMap [3,0] = @default24Max4, colorMap [3,1] = @default24Min4 colorMap [4,0] = @default24Max5, colorMap [4,1] = @default24Min5 colorMap [5,0] = @default24Max6, colorMap [5,1] = @default24Min6 colorMap [6,0] = @default24Max7, colorMap [6,1] = @default24Min7 colorMap [7,0] = @default24Max8, colorMap [7,1] = @default24Min8 colorMap [8,0] = @default24Max9, colorMap [8,1] = @default24Min9 colorMap [9,0] = @default24Max10, colorMap [9,1] = @default24Min10 colorMap [10,0] = @default24Max11, colorMap [10,1] = @default24Min11 colorMap [11,0] = @default24Max12, colorMap [11,1] = @default24Min12 colorMap [12,0] = @default24Max13, colorMap [12,1] = @default24Min13 colorMap [13,0] = @default24Max14, colorMap [13,1] = @default24Min14 colorMap [14,0] = @default24Max15, colorMap [14,1] = @default24Min15 colorMap [15,0] = @default24Max16, colorMap [15,1] = @default24Min16 colorMap [16,0] = @default24Max17, colorMap [16,1] = @default24Min17 colorMap [17,0] = @default24Max18, colorMap [17,1] = @default24Min18 colorMap [18,0] = @default24Max19, colorMap [18,1] = @default24Min19 colorMap [19,0] = @default24Max20, colorMap [19,1] = @default24Min20 colorMap [20,0] = @default24Max21, colorMap [20,1] = @default24Min21 colorMap [21,0] = @default24Max22, colorMap [21,1] = @default24Min22 colorMap [22,0] = @default24Max23, colorMap [22,1] = @default24Min23 colorMap [23,0] = @default24Max24, colorMap [23,1] = @default24Min24 ranges = 24 offset = @colorOffset elseif (@colorPreset == "Color Wheel 12") ; Created by Toby Marshall. colorMap [0,0] = @colorWheel12Max1, colorMap [0,1] = @colorWheel12Min1 colorMap [1,0] = @colorWheel12Max2, colorMap [1,1] = @colorWheel12Min2 colorMap [2,0] = @colorWheel12Max3, colorMap [2,1] = @colorWheel12Min3 colorMap [3,0] = @colorWheel12Max4, colorMap [3,1] = @colorWheel12Min4 colorMap [4,0] = @colorWheel12Max5, colorMap [4,1] = @colorWheel12Min5 colorMap [5,0] = @colorWheel12Max6, colorMap [5,1] = @colorWheel12Min6 colorMap [6,0] = @colorWheel12Max7, colorMap [6,1] = @colorWheel12Min7 colorMap [7,0] = @colorWheel12Max8, colorMap [7,1] = @colorWheel12Min8 colorMap [8,0] = @colorWheel12Max9, colorMap [8,1] = @colorWheel12Min9 colorMap [9,0] = @colorWheel12Max10, colorMap [9,1] = @colorWheel12Min10 colorMap [10,0] = @colorWheel12Max11, colorMap [10,1] = @colorWheel12Min11 colorMap [11,0] = @colorWheel12Max12, colorMap [11,1] = @colorWheel12Min12 ranges = 12 offset = @colorOffset elseif (@colorPreset == "Alhambra 8") ; Created by Toby Marshall. colorMap [0,0] = @alhambra8Max1, colorMap [0,1] = @alhambra8Min1 colorMap [1,0] = @alhambra8Max2, colorMap [1,1] = @alhambra8Min2 colorMap [2,0] = @alhambra8Max3, colorMap [2,1] = @alhambra8Min3 colorMap [3,0] = @alhambra8Max4, colorMap [3,1] = @alhambra8Min4 colorMap [4,0] = @alhambra8Max5, colorMap [4,1] = @alhambra8Min5 colorMap [5,0] = @alhambra8Max6, colorMap [5,1] = @alhambra8Min6 colorMap [6,0] = @alhambra8Max7, colorMap [6,1] = @alhambra8Min7 colorMap [7,0] = @alhambra8Max8, colorMap [7,1] = @alhambra8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Belvedere 8") ; Created by Toby Marshall. colorMap [0,0] = @belvedere8Max1, colorMap [0,1] = @belvedere8Min1 colorMap [1,0] = @belvedere8Max2, colorMap [1,1] = @belvedere8Min2 colorMap [2,0] = @belvedere8Max3, colorMap [2,1] = @belvedere8Min3 colorMap [3,0] = @belvedere8Max4, colorMap [3,1] = @belvedere8Min4 colorMap [4,0] = @belvedere8Max5, colorMap [4,1] = @belvedere8Min5 colorMap [5,0] = @belvedere8Max6, colorMap [5,1] = @belvedere8Min6 colorMap [6,0] = @belvedere8Max7, colorMap [6,1] = @belvedere8Min7 colorMap [7,0] = @belvedere8Max8, colorMap [7,1] = @belvedere8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Bouquet 8") ; Created by Toby Marshall. colorMap [0,0] = @bouquet8Max1, colorMap [0,1] = @bouquet8Min1 colorMap [1,0] = @bouquet8Max2, colorMap [1,1] = @bouquet8Min2 colorMap [2,0] = @bouquet8Max3, colorMap [2,1] = @bouquet8Min3 colorMap [3,0] = @bouquet8Max4, colorMap [3,1] = @bouquet8Min4 colorMap [4,0] = @bouquet8Max5, colorMap [4,1] = @bouquet8Min5 colorMap [5,0] = @bouquet8Max6, colorMap [5,1] = @bouquet8Min6 colorMap [6,0] = @bouquet8Max7, colorMap [6,1] = @bouquet8Min7 colorMap [7,0] = @bouquet8Max8, colorMap [7,1] = @bouquet8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Color Switch 8") ; Created by Toby Marshall. colorMap [0,0] = @colorSwitch8Max1, colorMap [0,1] = @colorSwitch8Min1 colorMap [1,0] = @colorSwitch8Max2, colorMap [1,1] = @colorSwitch8Min2 colorMap [2,0] = @colorSwitch8Max3, colorMap [2,1] = @colorSwitch8Min3 colorMap [3,0] = @colorSwitch8Max4, colorMap [3,1] = @colorSwitch8Min4 colorMap [4,0] = @colorSwitch8Max5, colorMap [4,1] = @colorSwitch8Min5 colorMap [5,0] = @colorSwitch8Max6, colorMap [5,1] = @colorSwitch8Min6 colorMap [6,0] = @colorSwitch8Max7, colorMap [6,1] = @colorSwitch8Min7 colorMap [7,0] = @colorSwitch8Max8, colorMap [7,1] = @colorSwitch8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Evening Sky 8") ; Created by Toby Marshall. colorMap [0,0] = @eveningSky8Max1, colorMap [0,1] = @eveningSky8Min1 colorMap [1,0] = @eveningSky8Max2, colorMap [1,1] = @eveningSky8Min2 colorMap [2,0] = @eveningSky8Max3, colorMap [2,1] = @eveningSky8Min3 colorMap [3,0] = @eveningSky8Max4, colorMap [3,1] = @eveningSky8Min4 colorMap [4,0] = @eveningSky8Max5, colorMap [4,1] = @eveningSky8Min5 colorMap [5,0] = @eveningSky8Max6, colorMap [5,1] = @eveningSky8Min6 colorMap [6,0] = @eveningSky8Max7, colorMap [6,1] = @eveningSky8Min7 colorMap [7,0] = @eveningSky8Max8, colorMap [7,1] = @eveningSky8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fantasia 8") ; Created by Toby Marshall. colorMap [0,0] = @fantasia8Max1, colorMap [0,1] = @fantasia8Min1 colorMap [1,0] = @fantasia8Max2, colorMap [1,1] = @fantasia8Min2 colorMap [2,0] = @fantasia8Max3, colorMap [2,1] = @fantasia8Min3 colorMap [3,0] = @fantasia8Max4, colorMap [3,1] = @fantasia8Min4 colorMap [4,0] = @fantasia8Max5, colorMap [4,1] = @fantasia8Min5 colorMap [5,0] = @fantasia8Max6, colorMap [5,1] = @fantasia8Min6 colorMap [6,0] = @fantasia8Max7, colorMap [6,1] = @fantasia8Min7 colorMap [7,0] = @fantasia8Max8, colorMap [7,1] = @fantasia8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Flowering Orchard 8") ; Created by Toby Marshall. colorMap [0,0] = @floweringOrchard8Max1, colorMap [0,1] = @floweringOrchard8Min1 colorMap [1,0] = @floweringOrchard8Max2, colorMap [1,1] = @floweringOrchard8Min2 colorMap [2,0] = @floweringOrchard8Max3, colorMap [2,1] = @floweringOrchard8Min3 colorMap [3,0] = @floweringOrchard8Max4, colorMap [3,1] = @floweringOrchard8Min4 colorMap [4,0] = @floweringOrchard8Max5, colorMap [4,1] = @floweringOrchard8Min5 colorMap [5,0] = @floweringOrchard8Max6, colorMap [5,1] = @floweringOrchard8Min6 colorMap [6,0] = @floweringOrchard8Max7, colorMap [6,1] = @floweringOrchard8Min7 colorMap [7,0] = @floweringOrchard8Max8, colorMap [7,1] = @floweringOrchard8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Morning Sky 8") ; Created by Toby Marshall. colorMap [0,0] = @morningSky8Max1, colorMap [0,1] = @morningSky8Min1 colorMap [1,0] = @morningSky8Max2, colorMap [1,1] = @morningSky8Min2 colorMap [2,0] = @morningSky8Max3, colorMap [2,1] = @morningSky8Min3 colorMap [3,0] = @morningSky8Max4, colorMap [3,1] = @morningSky8Min4 colorMap [4,0] = @morningSky8Max5, colorMap [4,1] = @morningSky8Min5 colorMap [5,0] = @morningSky8Max6, colorMap [5,1] = @morningSky8Min6 colorMap [6,0] = @morningSky8Max7, colorMap [6,1] = @morningSky8Min7 colorMap [7,0] = @morningSky8Max8, colorMap [7,1] = @morningSky8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Pastel 8") ; colorMap [0,0] = @pastel8Max1, colorMap [0,1] = @pastel8Min1 colorMap [1,0] = @pastel8Max2, colorMap [1,1] = @pastel8Min2 colorMap [2,0] = @pastel8Max3, colorMap [2,1] = @pastel8Min3 colorMap [3,0] = @pastel8Max4, colorMap [3,1] = @pastel8Min4 colorMap [4,0] = @pastel8Max5, colorMap [4,1] = @pastel8Min5 colorMap [5,0] = @pastel8Max6, colorMap [5,1] = @pastel8Min6 colorMap [6,0] = @pastel8Max7, colorMap [6,1] = @pastel8Min7 colorMap [7,0] = @pastel8Max8, colorMap [7,1] = @pastel8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Pastel Rainbow 8") ; Created by Angela Wilczynski. colorMap [0,0] = @pastelRainbow8Max1, colorMap [0,1] = @pastelRainbow8Min1 colorMap [1,0] = @pastelRainbow8Max2, colorMap [1,1] = @pastelRainbow8Min2 colorMap [2,0] = @pastelRainbow8Max3, colorMap [2,1] = @pastelRainbow8Min3 colorMap [3,0] = @pastelRainbow8Max4, colorMap [3,1] = @pastelRainbow8Min4 colorMap [4,0] = @pastelRainbow8Max5, colorMap [4,1] = @pastelRainbow8Min5 colorMap [5,0] = @pastelRainbow8Max6, colorMap [5,1] = @pastelRainbow8Min6 colorMap [6,0] = @pastelRainbow8Max7, colorMap [6,1] = @pastelRainbow8Min7 colorMap [7,0] = @pastelRainbow8Max8, colorMap [7,1] = @pastelRainbow8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Showtime 8") ; Created by Toby Marshall. colorMap [0,0] = @showtime8Max1, colorMap [0,1] = @showtime8Min1 colorMap [1,0] = @showtime8Max2, colorMap [1,1] = @showtime8Min2 colorMap [2,0] = @showtime8Max3, colorMap [2,1] = @showtime8Min3 colorMap [3,0] = @showtime8Max4, colorMap [3,1] = @showtime8Min4 colorMap [4,0] = @showtime8Max5, colorMap [4,1] = @showtime8Min5 colorMap [5,0] = @showtime8Max6, colorMap [5,1] = @showtime8Min6 colorMap [6,0] = @showtime8Max7, colorMap [6,1] = @showtime8Min7 colorMap [7,0] = @showtime8Max8, colorMap [7,1] = @showtime8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Soleil 8") ; Created by Toby Marshall. colorMap [0,0] = @soleil8Max1, colorMap [0,1] = @soleil8Min1 colorMap [1,0] = @soleil8Max2, colorMap [1,1] = @soleil8Min2 colorMap [2,0] = @soleil8Max3, colorMap [2,1] = @soleil8Min3 colorMap [3,0] = @soleil8Max4, colorMap [3,1] = @soleil8Min4 colorMap [4,0] = @soleil8Max5, colorMap [4,1] = @soleil8Min5 colorMap [5,0] = @soleil8Max6, colorMap [5,1] = @soleil8Min6 colorMap [6,0] = @soleil8Max7, colorMap [6,1] = @soleil8Min7 colorMap [7,0] = @soleil8Max8, colorMap [7,1] = @soleil8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Chill 8") ; Created by Toby Marshall. colorMap [0,0] = @chillMax1, colorMap [0,1] = @chillMin1 colorMap [1,0] = @chillMax2, colorMap [1,1] = @chillMin2 colorMap [2,0] = @chillMax3, colorMap [2,1] = @chillMin3 colorMap [3,0] = @chillMax4, colorMap [3,1] = @chillMin4 colorMap [4,0] = @chillMax5, colorMap [4,1] = @chillMin5 colorMap [5,0] = @chillMax6, colorMap [5,1] = @chillMin6 colorMap [6,0] = @chillMax7, colorMap [6,1] = @chillMin7 colorMap [7,0] = @chillMax8, colorMap [7,1] = @chillMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Cloud Nine 8") ; Created by Toby Marshall. colorMap [0,0] = @cloudNineMax1, colorMap [0,1] = @cloudNineMin1 colorMap [1,0] = @cloudNineMax2, colorMap [1,1] = @cloudNineMin2 colorMap [2,0] = @cloudNineMax3, colorMap [2,1] = @cloudNineMin3 colorMap [3,0] = @cloudNineMax4, colorMap [3,1] = @cloudNineMin4 colorMap [4,0] = @cloudNineMax5, colorMap [4,1] = @cloudNineMin5 colorMap [5,0] = @cloudNineMax6, colorMap [5,1] = @cloudNineMin6 colorMap [6,0] = @cloudNineMax7, colorMap [6,1] = @cloudNineMin7 colorMap [7,0] = @cloudNineMax8, colorMap [7,1] = @cloudNineMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "La Terra 8") ; Created by Toby Marshall. colorMap [0,0] = @laTerraMax1, colorMap [0,1] = @laTerraMin1 colorMap [1,0] = @laTerraMax2, colorMap [1,1] = @laTerraMin2 colorMap [2,0] = @laTerraMax3, colorMap [2,1] = @laTerraMin3 colorMap [3,0] = @laTerraMax4, colorMap [3,1] = @laTerraMin4 colorMap [4,0] = @laTerraMax5, colorMap [4,1] = @laTerraMin5 colorMap [5,0] = @laTerraMax6, colorMap [5,1] = @laTerraMin6 colorMap [6,0] = @laTerraMax7, colorMap [6,1] = @laTerraMin7 colorMap [7,0] = @laTerraMax8, colorMap [7,1] = @laTerraMin8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Santa Fe 8") ; Created by Toby Marshall. colorMap [0,0] = @santaFe8Max1, colorMap [0,1] = @santaFe8Min1 colorMap [1,0] = @santaFe8Max2, colorMap [1,1] = @santaFe8Min2 colorMap [2,0] = @santaFe8Max3, colorMap [2,1] = @santaFe8Min3 colorMap [3,0] = @santaFe8Max4, colorMap [3,1] = @santaFe8Min4 colorMap [4,0] = @santaFe8Max5, colorMap [4,1] = @santaFe8Min5 colorMap [5,0] = @santaFe8Max6, colorMap [5,1] = @santaFe8Min6 colorMap [6,0] = @santaFe8Max7, colorMap [6,1] = @santaFe8Min7 colorMap [7,0] = @santaFe8Max8, colorMap [7,1] = @santaFe8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Spring 8") ; Created by Toby Marshall. colorMap [0,0] = @spring8Max1, colorMap [0,1] = @spring8Min1 colorMap [1,0] = @spring8Max2, colorMap [1,1] = @spring8Min2 colorMap [2,0] = @spring8Max3, colorMap [2,1] = @spring8Min3 colorMap [3,0] = @spring8Max4, colorMap [3,1] = @spring8Min4 colorMap [4,0] = @spring8Max5, colorMap [4,1] = @spring8Min5 colorMap [5,0] = @spring8Max6, colorMap [5,1] = @spring8Min6 colorMap [6,0] = @spring8Max7, colorMap [6,1] = @spring8Min7 colorMap [7,0] = @spring8Max8, colorMap [7,1] = @spring8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Summer 8") ; Created by Toby Marshall. colorMap [0,0] = @summer8Max1, colorMap [0,1] = @summer8Min1 colorMap [1,0] = @summer8Max2, colorMap [1,1] = @summer8Min2 colorMap [2,0] = @summer8Max3, colorMap [2,1] = @summer8Min3 colorMap [3,0] = @summer8Max4, colorMap [3,1] = @summer8Min4 colorMap [4,0] = @summer8Max5, colorMap [4,1] = @summer8Min5 colorMap [5,0] = @summer8Max6, colorMap [5,1] = @summer8Min6 colorMap [6,0] = @summer8Max7, colorMap [6,1] = @summer8Min7 colorMap [7,0] = @summer8Max8, colorMap [7,1] = @summer8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fall 8") ; Created by Toby Marshall. colorMap [0,0] = @fall8Max1, colorMap [0,1] = @fall8Min1 colorMap [1,0] = @fall8Max2, colorMap [1,1] = @fall8Min2 colorMap [2,0] = @fall8Max3, colorMap [2,1] = @fall8Min3 colorMap [3,0] = @fall8Max4, colorMap [3,1] = @fall8Min4 colorMap [4,0] = @fall8Max5, colorMap [4,1] = @fall8Min5 colorMap [5,0] = @fall8Max6, colorMap [5,1] = @fall8Min6 colorMap [6,0] = @fall8Max7, colorMap [6,1] = @fall8Min7 colorMap [7,0] = @fall8Max8, colorMap [7,1] = @fall8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Winter 8") ; Created by Toby Marshall. colorMap [0,0] = @winter8Max1, colorMap [0,1] = @winter8Min1 colorMap [1,0] = @winter8Max2, colorMap [1,1] = @winter8Min2 colorMap [2,0] = @winter8Max3, colorMap [2,1] = @winter8Min3 colorMap [3,0] = @winter8Max4, colorMap [3,1] = @winter8Min4 colorMap [4,0] = @winter8Max5, colorMap [4,1] = @winter8Min5 colorMap [5,0] = @winter8Max6, colorMap [5,1] = @winter8Min6 colorMap [6,0] = @winter8Max7, colorMap [6,1] = @winter8Min7 colorMap [7,0] = @winter8Max8, colorMap [7,1] = @winter8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Mojave 8") ; Created by Toby Marshall. colorMap [0,0] = @mojave8Max1, colorMap [0,1] = @mojave8Min1 colorMap [1,0] = @mojave8Max2, colorMap [1,1] = @mojave8Min2 colorMap [2,0] = @mojave8Max3, colorMap [2,1] = @mojave8Min3 colorMap [3,0] = @mojave8Max4, colorMap [3,1] = @mojave8Min4 colorMap [4,0] = @mojave8Max5, colorMap [4,1] = @mojave8Min5 colorMap [5,0] = @mojave8Max6, colorMap [5,1] = @mojave8Min6 colorMap [6,0] = @mojave8Max7, colorMap [6,1] = @mojave8Min7 colorMap [7,0] = @mojave8Max8, colorMap [7,1] = @mojave8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Green 8") ; colorMap [0,0] = @goldGreen8Max1, colorMap [0,1] = @goldGreen8Min1 colorMap [1,0] = @goldGreen8Max2, colorMap [1,1] = @goldGreen8Min2 colorMap [2,0] = @goldGreen8Max3, colorMap [2,1] = @goldGreen8Min3 colorMap [3,0] = @goldGreen8Max4, colorMap [3,1] = @goldGreen8Min4 colorMap [4,0] = @goldGreen8Max5, colorMap [4,1] = @goldGreen8Min5 colorMap [5,0] = @goldGreen8Max6, colorMap [5,1] = @goldGreen8Min6 colorMap [6,0] = @goldGreen8Max7, colorMap [6,1] = @goldGreen8Min7 colorMap [7,0] = @goldGreen8Max8, colorMap [7,1] = @goldGreen8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Green Alt 8") ; colorMap [0,0] = @goldGreenAlt8Max1, colorMap [0,1] = @goldGreenAlt8Min1 colorMap [1,0] = @goldGreenAlt8Max2, colorMap [1,1] = @goldGreenAlt8Min2 colorMap [2,0] = @goldGreenAlt8Max3, colorMap [2,1] = @goldGreenAlt8Min3 colorMap [3,0] = @goldGreenAlt8Max4, colorMap [3,1] = @goldGreenAlt8Min4 colorMap [4,0] = @goldGreenAlt8Max5, colorMap [4,1] = @goldGreenAlt8Min5 colorMap [5,0] = @goldGreenAlt8Max6, colorMap [5,1] = @goldGreenAlt8Min6 colorMap [6,0] = @goldGreenAlt8Max7, colorMap [6,1] = @goldGreenAlt8Min7 colorMap [7,0] = @goldGreenAlt8Max8, colorMap [7,1] = @goldGreenAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Silver 8") ; colorMap [0,0] = @goldSilver8Max1, colorMap [0,1] = @goldSilver8Min1 colorMap [1,0] = @goldSilver8Max2, colorMap [1,1] = @goldSilver8Min2 colorMap [2,0] = @goldSilver8Max3, colorMap [2,1] = @goldSilver8Min3 colorMap [3,0] = @goldSilver8Max4, colorMap [3,1] = @goldSilver8Min4 colorMap [4,0] = @goldSilver8Max5, colorMap [4,1] = @goldSilver8Min5 colorMap [5,0] = @goldSilver8Max6, colorMap [5,1] = @goldSilver8Min6 colorMap [6,0] = @goldSilver8Max7, colorMap [6,1] = @goldSilver8Min7 colorMap [7,0] = @goldSilver8Max8, colorMap [7,1] = @goldSilver8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Silver/Blue 8") ; colorMap [0,0] = @silverBlue8Max1, colorMap [0,1] = @silverBlue8Min1 colorMap [1,0] = @silverBlue8Max2, colorMap [1,1] = @silverBlue8Min2 colorMap [2,0] = @silverBlue8Max3, colorMap [2,1] = @silverBlue8Min3 colorMap [3,0] = @silverBlue8Max4, colorMap [3,1] = @silverBlue8Min4 colorMap [4,0] = @silverBlue8Max5, colorMap [4,1] = @silverBlue8Min5 colorMap [5,0] = @silverBlue8Max6, colorMap [5,1] = @silverBlue8Min6 colorMap [6,0] = @silverBlue8Max7, colorMap [6,1] = @silverBlue8Min7 colorMap [7,0] = @silverBlue8Max8, colorMap [7,1] = @silverBlue8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Silver/Blue Alt 8") ; colorMap [0,0] = @silverBlueAlt8Max1, colorMap [0,1] = @silverBlueAlt8Min1 colorMap [1,0] = @silverBlueAlt8Max2, colorMap [1,1] = @silverBlueAlt8Min2 colorMap [2,0] = @silverBlueAlt8Max3, colorMap [2,1] = @silverBlueAlt8Min3 colorMap [3,0] = @silverBlueAlt8Max4, colorMap [3,1] = @silverBlueAlt8Min4 colorMap [4,0] = @silverBlueAlt8Max5, colorMap [4,1] = @silverBlueAlt8Min5 colorMap [5,0] = @silverBlueAlt8Max6, colorMap [5,1] = @silverBlueAlt8Min6 colorMap [6,0] = @silverBlueAlt8Max7, colorMap [6,1] = @silverBlueAlt8Min7 colorMap [7,0] = @silverBlueAlt8Max8, colorMap [7,1] = @silverBlueAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Gold/Silver Alt 8") ; colorMap [0,0] = @goldSilverAlt8Max1, colorMap [0,1] = @goldSilverAlt8Min1 colorMap [1,0] = @goldSilverAlt8Max2, colorMap [1,1] = @goldSilverAlt8Min2 colorMap [2,0] = @goldSilverAlt8Max3, colorMap [2,1] = @goldSilverAlt8Min3 colorMap [3,0] = @goldSilverAlt8Max4, colorMap [3,1] = @goldSilverAlt8Min4 colorMap [4,0] = @goldSilverAlt8Max5, colorMap [4,1] = @goldSilverAlt8Min5 colorMap [5,0] = @goldSilverAlt8Max6, colorMap [5,1] = @goldSilverAlt8Min6 colorMap [6,0] = @goldSilverAlt8Max7, colorMap [6,1] = @goldSilverAlt8Min7 colorMap [7,0] = @goldSilverAlt8Max8, colorMap [7,1] = @goldSilverAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow 8") ; colorMap [0,0] = @purpleYellow8Max1, colorMap [0,1] = @purpleYellow8Min1 colorMap [1,0] = @purpleYellow8Max2, colorMap [1,1] = @purpleYellow8Min2 colorMap [2,0] = @purpleYellow8Max3, colorMap [2,1] = @purpleYellow8Min3 colorMap [3,0] = @purpleYellow8Max4, colorMap [3,1] = @purpleYellow8Min4 colorMap [4,0] = @purpleYellow8Max5, colorMap [4,1] = @purpleYellow8Min5 colorMap [5,0] = @purpleYellow8Max6, colorMap [5,1] = @purpleYellow8Min6 colorMap [6,0] = @purpleYellow8Max7, colorMap [6,1] = @purpleYellow8Min7 colorMap [7,0] = @purpleYellow8Max8, colorMap [7,1] = @purpleYellow8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow Alt 8") ; colorMap [0,0] = @purpleYellowAlt8Max1, colorMap [0,1] = @purpleYellowAlt8Min1 colorMap [1,0] = @purpleYellowAlt8Max2, colorMap [1,1] = @purpleYellowAlt8Min2 colorMap [2,0] = @purpleYellowAlt8Max3, colorMap [2,1] = @purpleYellowAlt8Min3 colorMap [3,0] = @purpleYellowAlt8Max4, colorMap [3,1] = @purpleYellowAlt8Min4 colorMap [4,0] = @purpleYellowAlt8Max5, colorMap [4,1] = @purpleYellowAlt8Min5 colorMap [5,0] = @purpleYellowAlt8Max6, colorMap [5,1] = @purpleYellowAlt8Min6 colorMap [6,0] = @purpleYellowAlt8Max7, colorMap [6,1] = @purpleYellowAlt8Min7 colorMap [7,0] = @purpleYellowAlt8Max8, colorMap [7,1] = @purpleYellowAlt8Min8 ranges = 8 offset = @colorOffset elseif (@colorPreset == "Fourth of July 3") ; colorMap [0,0] = @fourthOfJuly3Max1, colorMap [0,1] = @fourthOfJuly3Min1 colorMap [1,0] = @fourthOfJuly3Max2, colorMap [1,1] = @fourthOfJuly3Min2 colorMap [2,0] = @fourthOfJuly3Max3, colorMap [2,1] = @fourthOfJuly3Min3 ranges = 3 offset = @colorOffset elseif (@colorPreset == "Blue/Silver 2") ; colorMap [0,0] = @blueSilver2Max1, colorMap [0,1] = @blueSilver2Min1 colorMap [1,0] = @blueSilver2Max2, colorMap [1,1] = @blueSilver2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Blue/White 2") ; colorMap [0,0] = @blueWhite2Max1, colorMap [0,1] = @blueWhite2Min1 colorMap [1,0] = @blueWhite2Max2, colorMap [1,1] = @blueWhite2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Cyan/Magenta 2") ; colorMap [0,0] = @cyanMagenta2Max1, colorMap [0,1] = @cyanMagenta2Min1 colorMap [1,0] = @cyanMagenta2Max2, colorMap [1,1] = @cyanMagenta2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Cyan/Yellow 2") ; colorMap [0,0] = @cyanYellow2Max1, colorMap [0,1] = @cyanYellow2Min1 colorMap [1,0] = @cyanYellow2Max2, colorMap [1,1] = @cyanYellow2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Gold/Green 2") ; colorMap [0,0] = @goldGreen2Max1, colorMap [0,1] = @goldGreen2Min1 colorMap [1,0] = @goldGreen2Max2, colorMap [1,1] = @goldGreen2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Purple/Yellow 2") ; colorMap [0,0] = @purpleYellow2Max1, colorMap [0,1] = @purpleYellow2Min1 colorMap [1,0] = @purpleYellow2Max2, colorMap [1,1] = @purpleYellow2Min2 ranges = 2 offset = @colorOffset elseif (@colorPreset == "Red/Tan 2") ; colorMap [0,0] = @redTan2Max1, colorMap [0,1] = @redTan2Min1 colorMap [1,0] = @redTan2Max2, colorMap [1,1] = @redTan2Min2 ranges = 2 offset = @colorOffset endif if (@perturbRanges == "8 Range Custom" && ranges == 8) ; If we are using 8 ranges, then take into account ; the rangeOrdering parameter. int range[8] ; Convert range ordering from 12345678 to .12345678 float ordering = @rangeOrder / 100000000 ; Convert .12345678 to 1.2345678 ordering = ordering * 10 ; Get the first digit int range[0] = trunc (ordering) ; Subract the first digit, i.e. 1.2345678 becomes .2345678 ordering = ordering - range[0] ; Get the second digit ordering = ordering * 10 int range[1] = trunc (ordering) ordering = ordering - range[1] ; Get the third digit ordering = ordering * 10 int range[2] = trunc (ordering) ordering = ordering - range[2] ; Get the fourth digit ordering = ordering * 10 int range[3] = trunc (ordering) ordering = ordering - range[3] ; Get the fifth digit ordering = ordering * 10 int range[4] = trunc (ordering) ordering = ordering - range[4] ; Get the sixth digit ordering = ordering * 10 int range[5] = trunc (ordering) ordering = ordering - range[5] ; Get the seventh digit ordering = ordering * 10 int range[6] = trunc (ordering) ordering = ordering - range[6] ; Get the eighth digit ordering = ordering * 10 int range[7] = round (ordering) ordering = ordering - range[7] ; Save the original order of the maps. color tempMap[8,2] tempMap[0,0] = colorMap[0,0], tempMap[0,1] = colorMap[0,1] tempMap[1,0] = colorMap[1,0], tempMap[1,1] = colorMap[1,1] tempMap[2,0] = colorMap[2,0], tempMap[2,1] = colorMap[2,1] tempMap[3,0] = colorMap[3,0], tempMap[3,1] = colorMap[3,1] tempMap[4,0] = colorMap[4,0], tempMap[4,1] = colorMap[4,1] tempMap[5,0] = colorMap[5,0], tempMap[5,1] = colorMap[5,1] tempMap[6,0] = colorMap[6,0], tempMap[6,1] = colorMap[6,1] tempMap[7,0] = colorMap[7,0], tempMap[7,1] = colorMap[7,1] ; Reorder the maps according to the rangeOrder parameter. colorMap[0,0] = tempMap[range[0]-1,0], colorMap[0,1] = tempMap[range[0]-1,1] colorMap[1,0] = tempMap[range[1]-1,0], colorMap[1,1] = tempMap[range[1]-1,1] colorMap[2,0] = tempMap[range[2]-1,0], colorMap[2,1] = tempMap[range[2]-1,1] colorMap[3,0] = tempMap[range[3]-1,0], colorMap[3,1] = tempMap[range[3]-1,1] colorMap[4,0] = tempMap[range[4]-1,0], colorMap[4,1] = tempMap[range[4]-1,1] colorMap[5,0] = tempMap[range[5]-1,0], colorMap[5,1] = tempMap[range[5]-1,1] colorMap[6,0] = tempMap[range[6]-1,0], colorMap[6,1] = tempMap[range[6]-1,1] colorMap[7,0] = tempMap[range[7]-1,0], colorMap[7,1] = tempMap[range[7]-1,1] endif init: int rangeNum = 0 int iter = 0 int trapIter = 0 float minDist = 0.0 float x = 0.0 float y = 0.0 float angle = 0.0 float texture = 0.0 float colorIndex = 0.0 float indexFactor = 0.0 float trapWidth = 0.0 float widthPercent = 0.0 float arg = 0.0 float noise = 0.0 float sum = 0.0 float bwidth = 0.0 complex p = 0 complex pat_p = 0.0 color trappedColor = rgb (0,0,0) bool trapped = false bool trappedOnce = false bool useBorder = false bool masked = false complex trappedZ = (0.0,0.0) complex ztest = (0.0,0.0) complex ztest2 = (0.0,0.0) loop: if (@borderWidth > 0.0) && (@colorPreset == "Gradient") && \ (@colorMode != "Normal") bwidth = @borderWidth else bwidth = 0.0 endif ; Check the trap mode. If trapMode == "First Iteration", then ; everything is normal. If trapMode == "Last Iteration", then ; we need to keep looping so that we can capture the "Last" ; value that falls in the trap range. This will put larger ; shapes below smaller ones. if @trapMode == "Last Iteration" trapped = false endif ztest = #z - @polygonOffset ztest = ztest*exp(1i*pi/180*(@polygonRotation-@polygonSkew)) ztest = real(ztest)/sqrt(@polygonSqueeze)+1i*imag(ztest)*sqrt(@polygonSqueeze) ztest = ztest*exp(1i*pi/180*@polygonSkew) if (!trapped && iter >= @skip) if @shape == "Polygon" ztest2 = ztest arg = atan2(ztest2) widthPercent = abs(arg) / #pi arg = -round(arg/(2*pi)*@polygonOrder)/@polygonOrder*(2*pi) ztest2 = ztest2*exp(1i*arg) elseif @shape == "Rounded Polygon" arg = atan2(ztest) widthPercent = abs(arg) / #pi ztest2 = cabs(ztest)+@roundedAmount*sin(arg*@polygonOrder) elseif @shape == "Circle" widthPercent = abs(atan2(ztest)) / #pi ztest2 = cabs(ztest) endif minDist = abs(real(ztest2) - @polygonSize) trapWidth = @polygonWidth + (@polygonWidthDelta * widthPercent) indexFactor = (@colorsPerRange - 1) / trapWidth if minDist < trapWidth && !trapped trapped = true trappedOnce = true trappedZ = #z trapIter = iter if minDist < (trapWidth - bWidth) rangeNum = (iter + offset) % ranges if (@perturbRanges == "Even/Odd") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 2 4 6 1 3 5 7 if ((trunc (ranges / 2) * 2) == ranges) ; Number of ranges is even. if (rangeNum < ranges / 2) rangeNum = (rangeNum + rangeNum) % ranges else rangeNum = (rangeNum + rangeNum + 1) % ranges endif else ; Number of ranges is odd. rangeNum = (rangeNum + rangeNum) % ranges endif elseif (@perturbRanges == "1st Half / 2nd Half") ; If range ordering is 0 1 2 3 4 5 6 7, ; then range selected becomes 0 4 1 5 2 6 3 7 if ((trunc (rangeNum / 2) * 2) == rangeNum) ; rangeNum is even. rangeNum = rangeNum - trunc (rangeNum / 2) else ; rangeNum is odd. rangeNum = rangeNum + trunc ((ranges - rangeNum) / 2) endif endif trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], minDist / trapWidth) colorIndex = indexFactor * minDist + rangeNum * @colorsPerRange else useBorder = true endif endif endif iter = iter + 1 final: if trappedOnce if (@shape == "Design Gradient") rangeNum = (trunc(#y / trunc (#height / ranges)) + offset) % ranges trappedColor = blend (colorMap [rangeNum,0], colorMap [rangeNum,1], #x / #width) endif ; Skip FBM if we are in shape border area. if (@useFBM) && !useBorder if @mask_type == "Distance" if minDist > @mask masked = true endif elseif @mask_type == "Iteration" if @mask != 0 float mask_val = trapIter if @mask_mod != 0 mask_val = trapIter % @mask_mod endif if mask_val < @mask masked = true endif endif elseif @mask_type == "Range" if (trapIter >= @mask) && (trapIter <= @mask_mod) masked = true endif endif if @inverse masked = !masked endif if masked #solid = true else if (@texture_type == "Random") ;Random texture = @rnd * real(#random) else ; fBm if (@rnd != 0) complex rr = (0,1) ^ (@angle / 90.0) complex rr2 = (0,1) ^ (@anglestep / 90.0) if @initial == "Pixel" pat_p = #pixel * rr + @fbmOffset p = #pixel * @fbmscale * rr + @fbmoffset elseif @initial == "Orbit" pat_p = trappedZ * rr + @fbmOffset p = trappedZ * @fbmscale * rr + @fbmoffset ; elseif @initial == "Trap" ; pat_p = trap_p * rr + @fbmOffset ; complex p = trap_p * @fbmscale * rr + @fbmoffset endif float freq = 1.0 int ii = @octaves while (ii > 0) ; determine integer coordinate for corners of square ; surrounding p float bx0 = floor(real(p)) % 256 float by0 = floor(imag(p)) % 256 if (bx0 < 0) bx0 = bx0 + 256 endif if (by0 < 0) by0 = by0 + 256 endif float bx1 = (bx0 + 1) % 256 float by1 = (by0 + 1) % 256 float rx0 = real(p) - floor(real(p)) float ry0 = imag(p) - floor(imag(p)) float rx1 = rx0 - 1 float ry1 = ry0 - 1 float b00 = (bx0^@power % 65536 + by0)^@power % 65536 float b10 = (bx1^@power % 65536 + by0)^@power % 65536 float b01 = (bx0^@power % 65536 + by1)^@power % 65536 float b11 = (bx1^@power % 65536 + by1)^@power % 65536 float g_b00_0 = (b00)^@power*0.25 % 512 - 256 float g_b10_0 = (b10)^@power*0.25 % 512 - 256 float g_b01_0 = (b01)^@power*0.25 % 512 - 256 float g_b11_0 = (b11)^@power*0.25 % 512 - 256 float g_b00_1 = (b00+1)^@power*0.25 % 512 - 256 float g_b10_1 = (b10+1)^@power*0.25 % 512 - 256 float g_b01_1 = (b01+1)^@power*0.25 % 512 - 256 float g_b11_1 = (b11+1)^@power*0.25 % 512 - 256 float d = 0.0; d = 1 / sqrt(sqr(g_b00_0) + sqr(g_b00_1)) g_b00_0 = g_b00_0 * d g_b00_1 = g_b00_1 * d d = 1 / sqrt(sqr(g_b10_0) + sqr(g_b10_1)) g_b10_0 = g_b10_0 * d g_b10_1 = g_b10_1 * d d = 1 / sqrt(sqr(g_b01_0) + sqr(g_b01_1)) g_b01_0 = g_b01_0 * d g_b01_1 = g_b01_1 * d d = 1 / sqrt(sqr(g_b11_0) + sqr(g_b11_1)) g_b11_0 = g_b11_0 * d g_b11_1 = g_b11_1 * d float u1 = rx0 * g_b00_0 + ry0 * g_b00_1 float v1 = rx1 * g_b10_0 + ry0 * g_b10_1 float u2 = rx0 * g_b01_0 + ry1 * g_b01_1 float v2 = rx1 * g_b11_0 + ry1 * g_b11_1 float sx = sqr(rx0) * (3 - rx0*2) float sy = sqr(ry0) * (3 - ry0*2) float a = u1 + sx*(v1 - u1) float b = u2 + sx*(v2 - u2) if @fbmfunc == "Ident" ; Ident sum = sum + (a + sy * (b - a)) * freq elseif @fbmfunc == "Abs" ; Abs sum = sum + sqrt(2) * abs(a + sy * (b - a)) * freq elseif @fbmfunc == "Sqr" ; Sqr sum = sum + 4 * sqr(a + sy * (b - a)) * freq elseif @fbmfunc == "Sqrt" ; Sqrt noise = a + sy * (b - a) if noise < 0 noise = imag(sqrt(noise)) else noise = real(sqrt(noise)) endif sum = sum + noise * freq elseif @fbmfunc == "Ceil" ; Ceil sum = sum + ceil(a + sy * (b - a)) * freq endif freq = freq * @step p = p * rr2 / @step ii = ii - 1 endwhile endif if @pattern == "None" noise = sum elseif @pattern == "Marble" ; Marble noise = real(sin(@pfreq * real(pat_p) + (@turb * sum))) elseif @pattern == "Wood" ; Wood noise = cabs(@pfreq * pat_p) + (@turb * sum) elseif @pattern == "Cells" ; Cells float x = sin(@pfreq * real(pat_p)) float y = cos(@pfreq * imag(pat_p)) noise = cabs(x + flip(y)) + (@turb * sum) elseif @pattern == "Squares" p = round(pat_p * @pfreq) / @pfreq noise = 2 * cabs(@pfreq * pat_p - @pfreq * p) + (@turb * sum) endif if @texture_type == "fBm" ; Original fBm texture = @rnd * noise elseif @texture_type == "Corrected fBm" ; Corrected fBm texture = @rnd * ((noise + 1) * 0.5) endif endif endif endif if (@colorPreset == "Gradient") if (useBorder) if (@solidBorder) #solid = true else #color = @borderColor endif elseif (@colorMode == "Angle") angle = atan2 (trappedZ) if (angle < 0) angle = angle + 2 * #pi endif angle = 1.0 / (2 * #pi) * angle #color = gradient (angle + texture) elseif (@colorMode == "Iteration") #color = gradient (trapIter * 0.01 + texture) elseif (@colorMode == "Modulated Iter") #color = gradient ((trapIter % 8) / 8 + texture) elseif (@colorMode == "Magnitude") #color = gradient (cabs(trappedZ) + texture) elseif (@colorMode == "Real") #color = gradient (abs(real(trappedZ)) + texture) elseif (@colorMode == "Imag") #color = gradient (abs(imag(trappedZ)) + texture) else #color = gradient ((colorIndex + 1) % 256 / 256 + texture) endif else #color = trappedColor endif else if @solid #solid = TRUE else #color = @backColor endif endif default: title = "Polygon Traps" ;-------------------------------------------------------------------- ; Version ;-------------------------------------------------------------------- param trapsVersion caption = "Formula Version" default = 320 hint = "You should never see this parameter; it's used internally to track \ which version of the formula was used to create your image, so that \ if a bug is found which breaks backwards-compatibility, the formula \ can adapt transparently." visible = false endparam ;-------------------------------------------------------------------- ; Trap Selection Parameters ;-------------------------------------------------------------------- heading caption = "Trap Parameters" endheading param shape caption = "Ring Shape" default = 1 enum = "Design Gradient" "Polygon" "Rounded Polygon" "Circle" hint = "The type of polygon to draw." endparam param trapMode caption = "Trap Mode" enum = "First Iteration" "Last Iteration" default = 0 hint = "Select 'First Iteration' to trap the first point that \ falls in the range. Select 'Last Iteration' to select \ the last point that falls in the range. This has the \ effect of placing larger shapes below smaller ones." visible = (@shape != "Design Gradient") endparam int param polygonOrder caption = "Polygon Order" default = 6 hint = "The number of sides to the polygons. While values of 1 and 2 \ are technically not valid polygons, these values may produce \ intersting results." visible = (@shape != "Circle") endparam float param polygonSize caption = "Polygon Size" default = 0.5 hint = "Size of the polygons." endparam float param polygonWidth caption = "Polygon Width" default = 0.02 hint = "Width of the polygons." endparam float param polygonWidthDelta caption = "Width Delta" default = 0.0 hint = "Amount to vary the width around the polygons." endparam float param borderWidth caption = "Shape Border Width" default = 0.0 hint = "The width of the border around each shape." visible = (@colorPreset == "Gradient") && (@colorMode != "Normal") endparam float param polygonRotation caption = "Polygon Rotation" default = 0.0 visible = (@shape != "Circle") hint = "Amount to rotate the orientation of the polygons." endparam complex param polygonOffset caption = "Polygon Offset" default = (0.0,0.0) hint = "The coordinates to offset the center of the polygons." endparam float param polygonSqueeze caption = "Sqeezing" default = 1.0 hint = "Polygon Squeezing Ratio" endparam float param polygonSkew caption = "Skewing" default = 0.0 hint = "Polygon Squeezing Angle" endparam float param roundedAmount caption = "Corner Rounding Amount" default = 0.1 hint = "Amount of rounding of the polygons." visible = (@shape == "Rounded Polygon") endparam ;-------------------------------------------------------------------- ; Common Parameters ;-------------------------------------------------------------------- param skip caption = "Iterations to Skip" default = 0 hint = "The number of iterations to skip." endparam ;-------------------------------------------------------------------- ; Color Settings ;-------------------------------------------------------------------- heading caption = "Color Settings" endheading param colorPreset caption = "Color Preset" enum = "Gradient" "Custom" "Generate" "Default" "Default 12" \ "Default 16" "Default 24" "Color Wheel 12" "Alhambra 8" \ "Belvedere 8" "Bouquet 8" "Color Switch 8" "Evening Sky 8" \ "Fantasia 8" "Flowering Orchard 8" "Morning Sky 8" "Pastel 8" \ "Pastel Rainbow 8" "Showtime 8" "Soleil 8" "Chill 8" \ "Cloud Nine 8" "La Terra 8" "Santa Fe 8" "Spring 8" "Summer 8" \ "Fall 8" "Winter 8" "Mojave 8" "Gold/Green 8" "Gold/Green Alt 8" \ "Gold/Silver 8" "Gold/Silver Alt 8" "Purple/Yellow 8" \ "Purple/Yellow Alt 8" "Silver/Blue 8" "Silver/Blue Alt 8" \ "Fourth of July 3" "Blue/Silver 2" "Blue/White 2" "Cyan/Magenta 2" \ "Cyan/Yellow 2" "Gold/Green 2" "Purple/Yellow 2" "Red/Tan 2" default = 3 hint = "Use 'Gradient' for colors from the gradient. \ Use 'Custom' to set your own color ranges. \ Use 'Default' for the default colors. \ Use 'Generate' to create 3D-like colors from the \ gradient (allows using the gradient randomize function). \ Use any of the other predefined settings for those colors." endparam param customize caption = "Show/Customize" default = false hint = "Check to customize the selected color preset. NOTE: If you \ modify the default values for any of the range(s), you cannot \ get back to the default values for the range(s) you modify \ unless you reload the UCL." visible = (@colorPreset != "Gradient") && (@colorPreset != "Generate") \ && (@colorPreset != "Custom") endparam param colorMode caption = "Coloring Mode" enum = "Normal" "Angle" "Iteration" "Modulated Iter" "Magnitude" \ "Real" "Imag" default = 0 hint = "The type of coloring to use when the orbit is trapped." visible = (@colorPreset == "Gradient") endparam float param luminanceUpper caption = "Lum. Upper Value" default = 0.60 min = 0.0 max = 1.0 hint = "The value of the Luminance component for the upper value \ when generating the ranges from the gradient. This value \ is used with the brighter end of the color range." visible = (@colorPreset == "Generate") endparam float param luminanceLower caption = "Lum. Lower Value" default = 0.10 min = 0.0 max = 1.0 hint = "The value of the Luminance component for the lower value \ when generating the ranges from the gradient. This value \ is used with the darker end of the color range." visible = (@colorPreset == "Generate") endparam int param colorRanges caption = "Number of Ranges" default = 8 min = 1 max = 24 hint = "The number of color ranges (1..24)." visible = (@colorPreset == "Custom") || (@colorPreset == "Gradient") && \ (@colorMode == "Normal") endparam int param numRanges caption = "Number of Ranges" default = 8 min = 1 max = 200 hint = "The number of color ranges." visible = (@colorPreset == "Generate") endparam int param colorsPerRange caption = "Number of Colors" default = 30 hint = "The number of colors per range." visible = (@colorPreset == "Gradient") && (@colorMode == "Normal") endparam param perturbRanges caption = "Perturb Ranges" enum = "None" "Even/Odd" "1st Half / 2nd Half" "8 Range Custom" default = 0 hint = "Modify the way the ranges are assigned to the elements. \ 'None' = Assign in Order (0 1 2 3 4 5 6 7); 'Even Odd' = \ Assign Even Ranges, then Odd Ranges (0 2 4 6 1 3 5 7); \ '1st Half / 2nd Half' = Assign from first half of range, \ then 2nd half (0 4 1 5 2 6 3 7); '8 Range Custom' = Assign \ the ordering by entering digits 1-8. Only works for ranges \ with 8 colors." visible = ((@colorPreset == "Custom" && @colorRanges >= 3) || \ (@colorPreset == "Generate" && @numRanges >= 3) || \ (@colorPreset == "Gradient" && @colorRanges >= 3) || \ (@colorPreset != "Custom" && @colorPreset != "Generate" && \ @colorPreset != "Gradient")) && (@colorMode == "Normal") endparam int param rangeOrder caption = "Range Order" default = 12345678 min = 11111111 max = 88888888 hint = "Specify the color range ordering. Use digits 1-8 to specify \ the order the ranges will be used. For example, to reverse \ the ordering, specify 87654321. To alternate, use 13572468. \ If color map or preset is defined that does not contain exactly \ 8 ranges, then this parameter will not have any effect." visible = (@perturbRanges == "8 Range Custom") endparam heading caption = " " endheading ;-------------------------------------------------------------------- ; Color Defaults for Custom ;-------------------------------------------------------------------- heading caption = " Custom Color Settings" visible = (@colorPreset == "Custom") endheading color param colorMax1 caption = "Color Range 1 High" default = rgb(255/255,0/255,211/255) hint = "Specifies the color at the high end of Range #1." visible = (@colorPreset == "Custom") endparam color param colorMin1 caption = "Color Range 1 Low" default = rgb(104/255,0/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@colorPreset == "Custom") endparam color param colorMax2 caption = "Color Range 2 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@colorRanges >= 2) && (@colorPreset == "Custom") endparam color param colorMin2 caption = "Color Range 2 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@colorRanges >= 2) && (@colorPreset == "Custom") endparam color param colorMax3 caption = "Color Range 3 High" default = rgb(255/255,118/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@colorRanges >= 3) && (@colorPreset == "Custom") endparam color param colorMin3 caption = "Color Range 3 Low" default = rgb(100/255,36/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@colorRanges >= 3) && (@colorPreset == "Custom") endparam color param colorMax4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@colorRanges >= 4) && (@colorPreset == "Custom") endparam color param colorMin4 caption = "Color Range 4 Low" default = rgb(92/255,61/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@colorRanges >= 4) && (@colorPreset == "Custom") endparam color param colorMax5 caption = "Color Range 5 High" default = rgb(0/255,255/255,55/255) hint = "Specifies the color at the high end of Range #5." visible = (@colorRanges >= 5) && (@colorPreset == "Custom") endparam color param colorMin5 caption = "Color Range 5 Low" default = rgb(0/255,78/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@colorRanges >= 5) && (@colorPreset == "Custom") endparam color param colorMax6 caption = "Color Range 6 High" default = rgb(0/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@colorRanges >= 6) && (@colorPreset == "Custom") endparam color param colorMin6 caption = "Color Range 6 Low" default = rgb(0/255,71/255,74/255) hint = "Specifies the color at the low end of Range #6." visible = (@colorRanges >= 6) && (@colorPreset == "Custom") endparam color param colorMax7 caption = "Color Range 7 High" default = rgb(0/255,90/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@colorRanges >= 7) && (@colorPreset == "Custom") endparam color param colorMin7 caption = "Color Range 7 Low" default = rgb(0/255,0/255,102/255) hint = "Specifies the color at the low end of Range #7." visible = (@colorRanges >= 7) && (@colorPreset == "Custom") endparam color param colorMax8 caption = "Color Range 8 High" default = rgb(175/255,0/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@colorRanges >= 8) && (@colorPreset == "Custom") endparam color param colorMin8 caption = "Color Range 8 Low" default = rgb(57/255,0/255,86/255) hint = "Specifies the color at the low end of Range #8." visible = (@colorRanges >= 8) && (@colorPreset == "Custom") endparam color param customMax9 caption = "Color Range 9 High" default = rgb(255/255,0/255,134/255) hint = "Specifies the color at the high end of Range #9." visible = (@colorRanges >= 9) && (@colorPreset == "Custom") endparam color param customMin9 caption = "Color Range 9 Low" default = rgb(106/255,0/255,55/255) hint = "Specifies the color at the low end of Range #9." visible = (@colorRanges >= 9) && (@colorPreset == "Custom") endparam color param customMax10 caption = "Color Range 10 High" default = rgb(255/255,54/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@colorRanges >= 10) && (@colorPreset == "Custom") endparam color param customMin10 caption = "Color Range 10 Low" default = rgb(94/255,18/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@colorRanges >= 10) && (@colorPreset == "Custom") endparam color param customMax11 caption = "Color Range 11 High" default = rgb(255/255,157/255,0/255) hint = "Specifies the color at the high end of Range #11." visible = (@colorRanges >= 11) && (@colorPreset == "Custom") endparam color param customMin11 caption = "Color Range 11 Low" default = rgb(90/255,40/255,0/255) hint = "Specifies the color at the low end of Range #11." visible = (@colorRanges >= 11) && (@colorPreset == "Custom") endparam color param customMax12 caption = "Color Range 12 High" default = rgb(229/255,255/255,0/255) hint = "Specifies the color at the high end of Range #12." visible = (@colorRanges >= 12) && (@colorPreset == "Custom") endparam color param customMin12 caption = "Color Range 12 Low" default = rgb(68/255,68/255,0/255) hint = "Specifies the color at the low end of Range #12." visible = (@colorRanges >= 12) && (@colorPreset == "Custom") endparam color param customMax13 caption = "Color Range 13 High" default = rgb(0/255,255/255,136/255) hint = "Specifies the color at the high end of Range #13." visible = (@colorRanges >= 13) && (@colorPreset == "Custom") endparam color param customMin13 caption = "Color Range 13 Low" default = rgb(0/255,66/255,30/255) hint = "Specifies the color at the low end of Range #13." visible = (@colorRanges >= 13) && (@colorPreset == "Custom") endparam color param customMax14 caption = "Color Range 14 High" default = rgb(0/255,212/255,255/255) hint = "Specifies the color at the high end of Range #14." visible = (@colorRanges >= 14) && (@colorPreset == "Custom") endparam color param customMin14 caption = "Color Range 14 Low" default = rgb(0/255,57/255,82/255) hint = "Specifies the color at the low end of Range #14." visible = (@colorRanges >= 14) && (@colorPreset == "Custom") endparam color param customMax15 caption = "Color Range 15 High" default = rgb(92/255,77/255,255/255) hint = "Specifies the color at the high end of Range #15." visible = (@colorRanges >= 15) && (@colorPreset == "Custom") endparam color param customMin15 caption = "Color Range 15 Low" default = rgb(28/255,0/255,94/255) hint = "Specifies the color at the low end of Range #15." visible = (@colorRanges >= 15) && (@colorPreset == "Custom") endparam color param customMax16 caption = "Color Range 16 High" default = rgb(209/255,0/255,255/255) hint = "Specifies the color at the high end of Range #16." visible = (@colorRanges >= 16) && (@colorPreset == "Custom") endparam color param customMin16 caption = "Color Range 16 Low" default = rgb(69/255,0/255,82/255) hint = "Specifies the color at the low end of Range #16." visible = (@colorRanges >= 16) && (@colorPreset == "Custom") endparam color param customMax17 caption = "Color Range 17 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #17." visible = (@colorRanges >= 17) && (@colorPreset == "Custom") endparam color param customMin17 caption = "Color Range 17 Low" default = rgb(84/255,0/255,84/255) hint = "Specifies the color at the low end of Range #17." visible = (@colorRanges >= 17) && (@colorPreset == "Custom") endparam color param customMax18 caption = "Color Range 18 High" default = rgb(255/255,35/255,88/255) hint = "Specifies the color at the high end of Range #18." visible = (@colorRanges >= 18) && (@colorPreset == "Custom") endparam color param customMin18 caption = "Color Range 18 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #18." visible = (@colorRanges >= 18) && (@colorPreset == "Custom") endparam color param customMax19 caption = "Color Range 19 High" default = rgb(255/255,85/255,0/255) hint = "Specifies the color at the high end of Range #19." visible = (@colorRanges >= 19) && (@colorPreset == "Custom") endparam color param customMin19 caption = "Color Range 19 Low" default = rgb(92/255,26/255,0/255) hint = "Specifies the color at the low end of Range #19." visible = (@colorRanges >= 19) && (@colorPreset == "Custom") endparam color param customMax20 caption = "Color Range 20 High" default = rgb(255/255,203/255,0/255) hint = "Specifies the color at the high end of Range #20." visible = (@colorRanges >= 20) && (@colorPreset == "Custom") endparam color param customMin20 caption = "Color Range 20 Low" default = rgb(82/255,54/255,0/255) hint = "Specifies the color at the low end of Range #20." visible = (@colorRanges >= 20) && (@colorPreset == "Custom") endparam color param customMax21 caption = "Color Range 21 High" default = rgb(191/255,255/255,0/255) hint = "Specifies the color at the high end of Range #21." visible = (@colorRanges >= 21) && (@colorPreset == "Custom") endparam color param customMin21 caption = "Color Range 21 Low" default = rgb(32/255,64/255,0/255) hint = "Specifies the color at the low end of Range #21." visible = (@colorRanges >= 21) && (@colorPreset == "Custom") endparam color param customMax22 caption = "Color Range 22 High" default = rgb(0/255,255/255,203/255) hint = "Specifies the color at the high end of Range #22." visible = (@colorRanges >= 22) && (@colorPreset == "Custom") endparam color param customMin22 caption = "Color Range 22 Low" default = rgb(0/255,62/255,48/255) hint = "Specifies the color at the low end of Range #22." visible = (@colorRanges >= 22) && (@colorPreset == "Custom") endparam color param customMax23 caption = "Color Range 23 High" default = rgb(0/255,153/255,255/255) hint = "Specifies the color at the high end of Range #23." visible = (@colorRanges >= 23) && (@colorPreset == "Custom") endparam color param customMin23 caption = "Color Range 23 Low" default = rgb(0/255,37/255,104/255) hint = "Specifies the color at the low end of Range #23." visible = (@colorRanges >= 23) && (@colorPreset == "Custom") endparam color param customMax24 caption = "Color Range 24 High" default = rgb(131/255,67/255,255/255) hint = "Specifies the color at the high end of Range #24." visible = (@colorRanges >= 24) && (@colorPreset == "Custom") endparam color param customMin24 caption = "Color Range 24 Low" default = rgb(57/255,0/255,112/255) hint = "Specifies the color at the low end of Range #24." visible = (@colorRanges >= 24) && (@colorPreset == "Custom") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default ;-------------------------------------------------------------------- heading caption = " Default Settings" visible = (@customize && @colorPreset == "Default") endheading color param defaultMax1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax2 caption = "Color Range 2 High" default = rgb(252/255,0/255,172/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin2 caption = "Color Range 2 Low" default = rgb(96/255,0/255,32/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax3 caption = "Color Range 3 High" default = rgb(252/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin3 caption = "Color Range 3 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax4 caption = "Color Range 4 High" default = rgb(252/255,128/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin4 caption = "Color Range 4 Low" default = rgb(160/255,16/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax5 caption = "Color Range 5 High" default = rgb(252/255,252/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin5 caption = "Color Range 5 Low" default = rgb(152/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax6 caption = "Color Range 6 High" default = rgb(0/255,252/255,128/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin6 caption = "Color Range 6 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax7 caption = "Color Range 7 High" default = rgb(0/255,252/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin7 caption = "Color Range 7 Low" default = rgb(0/255,48/255,48/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default") endparam color param defaultMax8 caption = "Color Range 8 High" default = rgb(64/255,64/255,252/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default") endparam color param defaultMin8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 12 ;-------------------------------------------------------------------- heading caption = " Default 12 Color Settings" visible = (@customize && @colorPreset == "Default 12") endheading color param default12Max1 caption = "Color Range 1 High" default = rgb(255/255,85/255,253/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min1 caption = "Color Range 1 Low" default = rgb(98/255,0/255,76/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max2 caption = "Color Range 2 High" default = rgb(252/255,0/255,143/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min2 caption = "Color Range 2 Low" default = rgb(98/255,0/255,54/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max3 caption = "Color Range 3 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min3 caption = "Color Range 3 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max4 caption = "Color Range 4 High" default = rgb(255/255,97/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min4 caption = "Color Range 4 Low" default = rgb(104/255,27/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max5 caption = "Color Range 5 High" default = rgb(255/255,187/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min5 caption = "Color Range 5 Low" default = rgb(110/255,54/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max6 caption = "Color Range 6 High" default = rgb(255/255,248/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min6 caption = "Color Range 6 Low" default = rgb(102/255,60/255,6/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max7 caption = "Color Range 7 High" default = rgb(0/255,255/255,58/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min7 caption = "Color Range 7 Low" default = rgb(0/255,76/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max8 caption = "Color Range 8 High" default = rgb(0/255,255/255,205/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min8 caption = "Color Range 8 Low" default = rgb(0/255,89/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max9 caption = "Color Range 9 High" default = rgb(0/255,194/255,255/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min9 caption = "Color Range 9 Low" default = rgb(0/255,80/255,92/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max10 caption = "Color Range 10 High" default = rgb(35/255,109/255,255/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min10 caption = "Color Range 10 Low" default = rgb(0/255,4/255,102/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max11 caption = "Color Range 11 High" default = rgb(149/255,53/255,255/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min11 caption = "Color Range 11 Low" default = rgb(53/255,0/255,96/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Max12 caption = "Color Range 12 High" default = rgb(195/255,0/255,252/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 12") endparam color param default12Min12 caption = "Color Range 12 Low" default = rgb(58/255,0/255,84/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 12") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 16 ;-------------------------------------------------------------------- heading caption = " Default 16 Color Settings" visible = (@customize && @colorPreset == "Default 16") endheading color param default16Max1 caption = "Color Range 1 High" default = rgb(255/255,31/255,114/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min1 caption = "Color Range 1 Low" default = rgb(94/255,0/255,40/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max2 caption = "Color Range 2 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min2 caption = "Color Range 2 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max3 caption = "Color Range 3 High" default = rgb(255/255,78/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min3 caption = "Color Range 3 Low" default = rgb(88/255,27/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max4 caption = "Color Range 4 High" default = rgb(255/255,110/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min4 caption = "Color Range 4 Low" default = rgb(90/255,30/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max5 caption = "Color Range 5 High" default = rgb(255/255,187/255,31/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min5 caption = "Color Range 5 Low" default = rgb(88/255,38/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min6 caption = "Color Range 6 Low" default = rgb(96/255,57/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max7 caption = "Color Range 7 High" default = rgb(170/255,255/255,37/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min7 caption = "Color Range 7 Low" default = rgb(41/255,68/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max8 caption = "Color Range 8 High" default = rgb(0/255,255/255,94/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min8 caption = "Color Range 8 Low" default = rgb(0/255,62/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max9 caption = "Color Range 9 High" default = rgb(0/255,238/255,203/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min9 caption = "Color Range 9 Low" default = rgb(0/255,64/255,54/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max10 caption = "Color Range 10 High" default = rgb(11/255,166/255,255/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min10 caption = "Color Range 10 Low" default = rgb(0/255,38/255,78/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max11 caption = "Color Range 11 High" default = rgb(0/255,68/255,255/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min11 caption = "Color Range 11 Low" default = rgb(0/255,20/255,88/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max12 caption = "Color Range 12 High" default = rgb(99/255,0/255,255/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min12 caption = "Color Range 12 Low" default = rgb(47/255,0/255,94/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max13 caption = "Color Range 13 High" default = rgb(145/255,0/255,255/255) hint = "Specifies the color at the high end of Range #13." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min13 caption = "Color Range 13 Low" default = rgb(69/255,0/255,102/255) hint = "Specifies the color at the low end of Range #13." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max14 caption = "Color Range 14 High" default = rgb(221/255,0/255,255/255) hint = "Specifies the color at the high end of Range #14." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min14 caption = "Color Range 14 Low" default = rgb(86/255,0/255,100/255) hint = "Specifies the color at the low end of Range #14." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max15 caption = "Color Range 15 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #15." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min15 caption = "Color Range 15 Low" default = rgb(90/255,0/255,75/255) hint = "Specifies the color at the low end of Range #15." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Max16 caption = "Color Range 16 High" default = rgb(255/255,0/255,140/255) hint = "Specifies the color at the high end of Range #16." visible = (@customize && @colorPreset == "Default 16") endparam color param default16Min16 caption = "Color Range 16 Low" default = rgb(96/255,0/255,60/255) hint = "Specifies the color at the low end of Range #16." visible = (@customize && @colorPreset == "Default 16") endparam ;-------------------------------------------------------------------- ; Color Defaults for Default 24 ;-------------------------------------------------------------------- heading caption = " Default 24 Color Settings" visible = (@customize && @colorPreset == "Default 24") endheading color param default24Max1 caption = "Color Range 1 High" default = rgb(255/255,0/255,211/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min1 caption = "Color Range 1 Low" default = rgb(104/255,0/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max2 caption = "Color Range 2 High" default = rgb(255/255,0/255,134/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min2 caption = "Color Range 2 Low" default = rgb(106/255,0/255,55/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max3 caption = "Color Range 3 High" default = rgb(255/255,35/255,88/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min3 caption = "Color Range 3 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max4 caption = "Color Range 4 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min4 caption = "Color Range 4 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max5 caption = "Color Range 5 High" default = rgb(255/255,54/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min5 caption = "Color Range 5 Low" default = rgb(92/255,26/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max6 caption = "Color Range 6 High" default = rgb(255/255,85/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min6 caption = "Color Range 6 Low" default = rgb(96/255,27/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max7 caption = "Color Range 7 High" default = rgb(255/255,118/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min7 caption = "Color Range 7 Low" default = rgb(100/255,38/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max8 caption = "Color Range 8 High" default = rgb(255/255,157/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min8 caption = "Color Range 8 Low" default = rgb(90/255,40/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max9 caption = "Color Range 9 High" default = rgb(255/255,203/255,0/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min9 caption = "Color Range 9 Low" default = rgb(82/255,54/255,0/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max10 caption = "Color Range 10 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min10 caption = "Color Range 10 Low" default = rgb(92/255,61/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max11 caption = "Color Range 11 High" default = rgb(229/255,255/255,0/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min11 caption = "Color Range 11 Low" default = rgb(68/255,68/255,0/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max12 caption = "Color Range 12 High" default = rgb(191/255,255/255,0/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min12 caption = "Color Range 12 Low" default = rgb(32/255,64/255,0/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max13 caption = "Color Range 13 High" default = rgb(0/255,255/255,55/255) hint = "Specifies the color at the high end of Range #13." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min13 caption = "Color Range 13 Low" default = rgb(0/255,78/255,0/255) hint = "Specifies the color at the low end of Range #13." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max14 caption = "Color Range 14 High" default = rgb(0/255,255/255,136/255) hint = "Specifies the color at the high end of Range #14." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min14 caption = "Color Range 14 Low" default = rgb(0/255,66/255,30/255) hint = "Specifies the color at the low end of Range #14." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max15 caption = "Color Range 15 High" default = rgb(0/255,255/255,203/255) hint = "Specifies the color at the high end of Range #15." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min15 caption = "Color Range 15 Low" default = rgb(0/255,62/255,48/255) hint = "Specifies the color at the low end of Range #15." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max16 caption = "Color Range 16 High" default = rgb(0/255,255/255,255/255) hint = "Specifies the color at the high end of Range #16." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min16 caption = "Color Range 16 Low" default = rgb(0/255,71/255,74/255) hint = "Specifies the color at the low end of Range #16." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max17 caption = "Color Range 17 High" default = rgb(0/255,212/255,255/255) hint = "Specifies the color at the high end of Range #17." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min17 caption = "Color Range 17 Low" default = rgb(0/255,57/255,82/255) hint = "Specifies the color at the low end of Range #17." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max18 caption = "Color Range 18 High" default = rgb(0/255,153/255,255/255) hint = "Specifies the color at the high end of Range #18." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min18 caption = "Color Range 18 Low" default = rgb(0/255,37/255,104/255) hint = "Specifies the color at the low end of Range #18." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max19 caption = "Color Range 19 High" default = rgb(0/255,90/255,255/255) hint = "Specifies the color at the high end of Range #19." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min19 caption = "Color Range 19 Low" default = rgb(0/255,0/255,102/255) hint = "Specifies the color at the low end of Range #19." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max20 caption = "Color Range 20 High" default = rgb(92/255,77/255,255/255) hint = "Specifies the color at the high end of Range #20." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min20 caption = "Color Range 20 Low" default = rgb(28/255,0/255,94/255) hint = "Specifies the color at the low end of Range #20." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max21 caption = "Color Range 21 High" default = rgb(131/255,67/255,255/255) hint = "Specifies the color at the high end of Range #21." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min21 caption = "Color Range 21 Low" default = rgb(57/255,0/255,112/255) hint = "Specifies the color at the low end of Range #21." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max22 caption = "Color Range 22 High" default = rgb(175/255,0/255,255/255) hint = "Specifies the color at the high end of Range #22." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min22 caption = "Color Range 22 Low" default = rgb(57/255,0/255,86/255) hint = "Specifies the color at the low end of Range #22." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max23 caption = "Color Range 23 High" default = rgb(209/255,0/255,255/255) hint = "Specifies the color at the high end of Range #23." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min23 caption = "Color Range 23 Low" default = rgb(64/255,0/255,76/255) hint = "Specifies the color at the low end of Range #23." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Max24 caption = "Color Range 24 High" default = rgb(255/255,0/255,255/255) hint = "Specifies the color at the high end of Range #24." visible = (@customize && @colorPreset == "Default 24") endparam color param default24Min24 caption = "Color Range 24 Low" default = rgb(84/255,0/255,84/255) hint = "Specifies the color at the low end of Range #24." visible = (@customize && @colorPreset == "Default 24") endparam ;-------------------------------------------------------------------- ; Color Defaults for Color Wheel 12 ;-------------------------------------------------------------------- heading caption = " Color Wheel 12 Settings" visible = (@customize && @colorPreset == "Color Wheel 12") endheading color param colorWheel12Max1 caption = "Color Range 1 High" default = rgb(142/255,117/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min1 caption = "Color Range 1 Low" default = rgb(52/255,0/255,100/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max2 caption = "Color Range 2 High" default = rgb(224/255,9/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min2 caption = "Color Range 2 Low" default = rgb(86/255,0/255,84/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max3 caption = "Color Range 3 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min3 caption = "Color Range 3 Low" default = rgb(92/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max4 caption = "Color Range 4 High" default = rgb(252/255,167/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min4 caption = "Color Range 4 Low" default = rgb(95/255,54/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max5 caption = "Color Range 5 High" default = rgb(190/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min5 caption = "Color Range 5 Low" default = rgb(63/255,84/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max6 caption = "Color Range 6 High" default = rgb(0/255,231/255,213/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min6 caption = "Color Range 6 Low" default = rgb(4/255,62/255,62/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max7 caption = "Color Range 7 High" default = rgb(182/255,27/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min7 caption = "Color Range 7 Low" default = rgb(53/255,0/255,92/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max8 caption = "Color Range 8 High" default = rgb(255/255,33/255,146/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min8 caption = "Color Range 8 Low" default = rgb(80/255,0/255,53/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max9 caption = "Color Range 9 High" default = rgb(255/255,110/255,0/255) hint = "Specifies the color at the high end of Range #9." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min9 caption = "Color Range 9 Low" default = rgb(101/255,25/255,21/255) hint = "Specifies the color at the low end of Range #9." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max10 caption = "Color Range 10 High" default = rgb(255/255,241/255,0/255) hint = "Specifies the color at the high end of Range #10." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min10 caption = "Color Range 10 Low" default = rgb(88/255,69/255,0/255) hint = "Specifies the color at the low end of Range #10." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max11 caption = "Color Range 11 High" default = rgb(0/255,248/255,103/255) hint = "Specifies the color at the high end of Range #11." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min11 caption = "Color Range 11 Low" default = rgb(0/255,83/255,15/255) hint = "Specifies the color at the low end of Range #11." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Max12 caption = "Color Range 12 High" default = rgb(27/255,119/255,255/255) hint = "Specifies the color at the high end of Range #12." visible = (@customize && @colorPreset == "Color Wheel 12") endparam color param colorWheel12Min12 caption = "Color Range 12 Low" default = rgb(0/255,31/255,92/255) hint = "Specifies the color at the low end of Range #12." visible = (@customize && @colorPreset == "Color Wheel 12") endparam ;-------------------------------------------------------------------- ; Color Defaults for Alhambra 8 ;-------------------------------------------------------------------- heading caption = " Alhambra 8 Settings" visible = (@customize && @colorPreset == "Alhambra 8") endheading color param alhambra8Max1 caption = "Color Range 1 High" default = rgb(15/255,222/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min1 caption = "Color Range 1 Low" default = rgb(0/255,43/255,52/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max2 caption = "Color Range 2 High" default = rgb(255/255,204/255,75/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min2 caption = "Color Range 2 Low" default = rgb(92/255,58/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max3 caption = "Color Range 3 High" default = rgb(188/255,152/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min3 caption = "Color Range 3 Low" default = rgb(41/255,0/255,70/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max4 caption = "Color Range 4 High" default = rgb(255/255,155/255,109/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min4 caption = "Color Range 4 Low" default = rgb(95/255,36/255,14/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max5 caption = "Color Range 5 High" default = rgb(121/255,180/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min5 caption = "Color Range 5 Low" default = rgb(0/255,47/255,91/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max6 caption = "Color Range 6 High" default = rgb(255/255,131/255,126/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min6 caption = "Color Range 6 Low" default = rgb(104/255,20/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max7 caption = "Color Range 7 High" default = rgb(33/255,255/255,220/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min7 caption = "Color Range 7 Low" default = rgb(0/255,67/255,49/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Max8 caption = "Color Range 8 High" default = rgb(255/255,177/255,93/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Alhambra 8") endparam color param alhambra8Min8 caption = "Color Range 8 Low" default = rgb(100/255,44/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Alhambra 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Belvedere 8 ;-------------------------------------------------------------------- heading caption = " Belvedere 8 Settings" visible = (@customize && @colorPreset == "Belvedere 8") endheading color param belvedere8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min1 caption = "Color Range 1 Low" default = rgb(92/255,92/255,122/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min2 caption = "Color Range 2 Low" default = rgb(92/255,92/255,122/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max3 caption = "Color Range 3 High" default = rgb(123/255,201/255,254/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min3 caption = "Color Range 3 Low" default = rgb(0/255,45/255,68/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max4 caption = "Color Range 4 High" default = rgb(255/255,230/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min4 caption = "Color Range 4 Low" default = rgb(162/255,28/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max5 caption = "Color Range 5 High" default = rgb(255/255,230/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min5 caption = "Color Range 5 Low" default = rgb(162/255,28/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max6 caption = "Color Range 6 High" default = rgb(0/255,255/255,217/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min6 caption = "Color Range 6 Low" default = rgb(0/255,54/255,46/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max7 caption = "Color Range 7 High" default = rgb(255/255,20/255,70/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min7 caption = "Color Range 7 Low" default = rgb(100/255,0/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Max8 caption = "Color Range 8 High" default = rgb(95/255,84/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Belvedere 8") endparam color param belvedere8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,89/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Belvedere 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Bouquet 8 ;-------------------------------------------------------------------- heading caption = " Bouquet 8 Settings" visible = (@customize && @colorPreset == "Bouquet 8") endheading color param bouquet8Max1 caption = "Color Range 1 High" default = rgb(0/255,255/255,131/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min1 caption = "Color Range 1 Low" default = rgb(0/255,84/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max2 caption = "Color Range 2 High" default = rgb(52/255,255/255,198/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min2 caption = "Color Range 2 Low" default = rgb(0/255,82/255,60/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max3 caption = "Color Range 3 High" default = rgb(0/255,244/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min3 caption = "Color Range 3 Low" default = rgb(0/255,64/255,74/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max4 caption = "Color Range 4 High" default = rgb(180/255,169/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min4 caption = "Color Range 4 Low" default = rgb(40/255,12/255,64/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max5 caption = "Color Range 5 High" default = rgb(251/255,148/255,230/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min5 caption = "Color Range 5 Low" default = rgb(100/255,20/255,67/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max6 caption = "Color Range 6 High" default = rgb(255/255,101/255,140/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min6 caption = "Color Range 6 Low" default = rgb(84/255,15/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max7 caption = "Color Range 7 High" default = rgb(255/255,149/255,111/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min7 caption = "Color Range 7 Low" default = rgb(77/255,36/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Max8 caption = "Color Range 8 High" default = rgb(255/255,252/255,125/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Bouquet 8") endparam color param bouquet8Min8 caption = "Color Range 8 Low" default = rgb(95/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Bouquet 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Color Switch 8 ;-------------------------------------------------------------------- heading caption = " Color Switch 8 Settings" visible = (@customize && @colorPreset == "Color Switch 8") endheading color param colorSwitch8Max1 caption = "Color Range 1 High" default = rgb(255/255,33/255,52/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min1 caption = "Color Range 1 Low" default = rgb(90/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max2 caption = "Color Range 2 High" default = rgb(61/255,136/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,82/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max3 caption = "Color Range 3 High" default = rgb(0/255,255/255,44/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min3 caption = "Color Range 3 Low" default = rgb(0/255,70/255,7/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max4 caption = "Color Range 4 High" default = rgb(255/255,131/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min4 caption = "Color Range 4 Low" default = rgb(105/255,40/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max5 caption = "Color Range 5 High" default = rgb(255/255,27/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min5 caption = "Color Range 5 Low" default = rgb(104/255,0/255,78/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max6 caption = "Color Range 6 High" default = rgb(168/255,87/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min6 caption = "Color Range 6 Low" default = rgb(35/255,0/255,58/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max7 caption = "Color Range 7 High" default = rgb(0/255,252/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min7 caption = "Color Range 7 Low" default = rgb(0/255,60/255,60/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,38/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Color Switch 8") endparam color param colorSwitch8Min8 caption = "Color Range 8 Low" default = rgb(90/255,90/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Color Switch 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Evening Sky 8 ;-------------------------------------------------------------------- heading caption = " Evening Sky 8 Settings" visible = (@customize && @colorPreset == "Evening Sky 8") endheading color param eveningSky8Max1 caption = "Color Range 1 High" default = rgb(255/255,238/255,222/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min1 caption = "Color Range 1 Low" default = rgb(50/255,35/255,35/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max2 caption = "Color Range 2 High" default = rgb(255/255,226/255,85/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min2 caption = "Color Range 2 Low" default = rgb(85/255,54/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max3 caption = "Color Range 3 High" default = rgb(249/255,148/255,216/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min3 caption = "Color Range 3 Low" default = rgb(79/255,20/255,57/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max4 caption = "Color Range 4 High" default = rgb(159/255,159/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min4 caption = "Color Range 4 Low" default = rgb(22/255,16/255,54/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max5 caption = "Color Range 5 High" default = rgb(255/255,175/255,79/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min5 caption = "Color Range 5 Low" default = rgb(62/255,42/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max6 caption = "Color Range 6 High" default = rgb(124/255,190/255,251/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min6 caption = "Color Range 6 Low" default = rgb(13/255,40/255,62/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max7 caption = "Color Range 7 High" default = rgb(255/255,111/255,123/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min7 caption = "Color Range 7 Low" default = rgb(57/255,24/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Max8 caption = "Color Range 8 High" default = rgb(111/255,255/255,245/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Evening Sky 8") endparam color param eveningSky8Min8 caption = "Color Range 8 Low" default = rgb(0/255,60/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Evening Sky 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fantasia 8 ;-------------------------------------------------------------------- heading caption = " Fantasia 8 Settings" visible = (@customize && @colorPreset == "Fantasia 8") endheading color param fantasia8Max1 caption = "Color Range 1 High" default = rgb(255/255,230/255,103/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min1 caption = "Color Range 1 Low" default = rgb(102/255,81/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max2 caption = "Color Range 2 High" default = rgb(230/255,78/255,208/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min2 caption = "Color Range 2 Low" default = rgb(104/255,0/255,52/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max3 caption = "Color Range 3 High" default = rgb(180/255,119/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min3 caption = "Color Range 3 Low" default = rgb(56/255,0/255,82/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max4 caption = "Color Range 4 High" default = rgb(0/255,228/255,150/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min4 caption = "Color Range 4 Low" default = rgb(0/255,50/255,30/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max5 caption = "Color Range 5 High" default = rgb(131/255,148/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min5 caption = "Color Range 5 Low" default = rgb(38/255,31/255,85/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max6 caption = "Color Range 6 High" default = rgb(255/255,182/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min6 caption = "Color Range 6 Low" default = rgb(76/255,40/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max7 caption = "Color Range 7 High" default = rgb(252/255,0/255,113/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min7 caption = "Color Range 7 Low" default = rgb(84/255,0/255,34/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Max8 caption = "Color Range 8 High" default = rgb(0/255,232/255,249/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Fantasia 8") endparam color param fantasia8Min8 caption = "Color Range 8 Low" default = rgb(0/255,64/255,78/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Fantasia 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Flowering Orchard 8 ;-------------------------------------------------------------------- heading caption = " Flowering Orchard 8 Settings" visible = (@customize && @colorPreset == "Flowering Orchard 8") endheading color param floweringOrchard8Max1 caption = "Color Range 1 High" default = rgb(255/255,188/255,213/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min1 caption = "Color Range 1 Low" default = rgb(132/255,30/255,66/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max2 caption = "Color Range 2 High" default = rgb(240/255,135/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min2 caption = "Color Range 2 Low" default = rgb(70/255,0/255,59/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max3 caption = "Color Range 3 High" default = rgb(255/255,75/255,153/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min3 caption = "Color Range 3 Low" default = rgb(104/255,15/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max4 caption = "Color Range 4 High" default = rgb(71/255,213/255,119/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min4 caption = "Color Range 4 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max5 caption = "Color Range 5 High" default = rgb(255/255,102/255,209/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min5 caption = "Color Range 5 Low" default = rgb(116/255,10/255,86/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max6 caption = "Color Range 6 High" default = rgb(154/255,199/255,51/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min6 caption = "Color Range 6 Low" default = rgb(28/255,44/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max7 caption = "Color Range 7 High" default = rgb(255/255,162/255,228/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min7 caption = "Color Range 7 Low" default = rgb(110/255,0/255,55/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Max8 caption = "Color Range 8 High" default = rgb(255/255,201/255,237/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam color param floweringOrchard8Min8 caption = "Color Range 8 Low" default = rgb(145/255,20/255,54/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Flowering Orchard 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Morning Sky 8 ;-------------------------------------------------------------------- heading caption = " Morning Sky 8 Settings" visible = (@customize && @colorPreset == "Morning Sky 8") endheading color param morningSky8Max1 caption = "Color Range 1 High" default = rgb(255/255,178/255,217/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min1 caption = "Color Range 1 Low" default = rgb(79/255,29/255,57/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max2 caption = "Color Range 2 High" default = rgb(107/255,246/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min2 caption = "Color Range 2 Low" default = rgb(13/255,70/255,75/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max3 caption = "Color Range 3 High" default = rgb(255/255,199/255,137/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min3 caption = "Color Range 3 Low" default = rgb(62/255,42/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max4 caption = "Color Range 4 High" default = rgb(241/255,245/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min4 caption = "Color Range 4 Low" default = rgb(16/255,24/255,46/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max5 caption = "Color Range 5 High" default = rgb(255/255,177/255,188/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min5 caption = "Color Range 5 Low" default = rgb(54/255,14/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max6 caption = "Color Range 6 High" default = rgb(248/255,236/255,236/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min6 caption = "Color Range 6 Low" default = rgb(49/255,38/255,35/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max7 caption = "Color Range 7 High" default = rgb(129/255,201/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min7 caption = "Color Range 7 Low" default = rgb(0/255,56/255,70/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,146/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Morning Sky 8") endparam color param morningSky8Min8 caption = "Color Range 8 Low" default = rgb(89/255,76/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Morning Sky 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Pastel 8 ;-------------------------------------------------------------------- heading caption = " Pastel 8 Settings" visible = (@customize && @colorPreset == "Pastel 8") endheading color param pastel8Max1 caption = "Color Range 1 High" default = rgb(147/255,255/255,193/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min1 caption = "Color Range 1 Low" default = rgb(0/255,48/255,16/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max2 caption = "Color Range 2 High" default = rgb(147/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min2 caption = "Color Range 2 Low" default = rgb(0/255,48/255,48/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max3 caption = "Color Range 3 High" default = rgb(148/255,148/255,253/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min3 caption = "Color Range 3 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max4 caption = "Color Range 4 High" default = rgb(199/255,149/255,253/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min4 caption = "Color Range 4 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max5 caption = "Color Range 5 High" default = rgb(255/255,147/255,221/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min5 caption = "Color Range 5 Low" default = rgb(96/255,0/255,32/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max6 caption = "Color Range 6 High" default = rgb(254/255,148/255,148/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min6 caption = "Color Range 6 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max7 caption = "Color Range 7 High" default = rgb(255/255,202/255,147/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min7 caption = "Color Range 7 Low" default = rgb(160/255,16/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,147/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Pastel 8") endparam color param pastel8Min8 caption = "Color Range 8 Low" default = rgb(152/255,64/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Pastel 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Pastel Rainbow 8 ;-------------------------------------------------------------------- heading caption = " Pastel Rainbow 8 Settings" visible = (@customize && @colorPreset == "Pastel Rainbow 8") endheading color param pastelRainbow8Max1 caption = "Color Range 1 High" default = rgb(242/255,246/255,174/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min1 caption = "Color Range 1 Low" default = rgb(20/255,48/255,12/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max2 caption = "Color Range 2 High" default = rgb(182/255,242/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min2 caption = "Color Range 2 Low" default = rgb(20/255,44/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max3 caption = "Color Range 3 High" default = rgb(202/255,202/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min3 caption = "Color Range 3 Low" default = rgb(36/255,36/255,48/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max4 caption = "Color Range 4 High" default = rgb(255/255,170/255,170/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min4 caption = "Color Range 4 Low" default = rgb(89/255,0/255,24/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max5 caption = "Color Range 5 High" default = rgb(255/255,246/255,178/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min5 caption = "Color Range 5 Low" default = rgb(40/255,0/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max6 caption = "Color Range 6 High" default = rgb(255/255,238/255,206/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min6 caption = "Color Range 6 Low" default = rgb(52/255,16/255,40/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max7 caption = "Color Range 7 High" default = rgb(214/255,222/255,161/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min7 caption = "Color Range 7 Low" default = rgb(4/255,32/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Max8 caption = "Color Range 8 High" default = rgb(255/255,230/255,246/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam color param pastelRainbow8Min8 caption = "Color Range 8 Low" default = rgb(70/255,50/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Pastel Rainbow 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Showtime 8 ;-------------------------------------------------------------------- heading caption = " Showtime 8 Settings" visible = (@customize && @colorPreset == "Showtime 8") endheading color param showtime8Max1 caption = "Color Range 1 High" default = rgb(241/255,53/255,82/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min1 caption = "Color Range 1 Low" default = rgb(88/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max2 caption = "Color Range 2 High" default = rgb(255/255,121/255,52/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min2 caption = "Color Range 2 Low" default = rgb(107/255,29/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max3 caption = "Color Range 3 High" default = rgb(253/255,168/255,67/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min3 caption = "Color Range 3 Low" default = rgb(97/255,42/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max4 caption = "Color Range 4 High" default = rgb(255/255,231/255,21/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min4 caption = "Color Range 4 Low" default = rgb(140/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max5 caption = "Color Range 5 High" default = rgb(58/255,219/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min5 caption = "Color Range 5 Low" default = rgb(0/255,36/255,83/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max6 caption = "Color Range 6 High" default = rgb(9/255,116/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min6 caption = "Color Range 6 Low" default = rgb(33/255,30/255,81/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max7 caption = "Color Range 7 High" default = rgb(105/255,71/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min7 caption = "Color Range 7 Low" default = rgb(36/255,0/255,76/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Max8 caption = "Color Range 8 High" default = rgb(187/255,32/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Showtime 8") endparam color param showtime8Min8 caption = "Color Range 8 Low" default = rgb(50/255,0/255,56/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Showtime 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Soleil 8 ;-------------------------------------------------------------------- heading caption = " Soleil 8 Settings" visible = (@customize && @colorPreset == "Soleil 8") endheading color param soleil8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,35/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min1 caption = "Color Range 1 Low" default = rgb(76/255,44/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max2 caption = "Color Range 2 High" default = rgb(255/255,209/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min2 caption = "Color Range 2 Low" default = rgb(59/255,24/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max3 caption = "Color Range 3 High" default = rgb(231/255,237/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min3 caption = "Color Range 3 Low" default = rgb(54/255,29/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max4 caption = "Color Range 4 High" default = rgb(255/255,141/255,49/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min4 caption = "Color Range 4 Low" default = rgb(92/255,32/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,156/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min5 caption = "Color Range 5 Low" default = rgb(76/255,44/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max6 caption = "Color Range 6 High" default = rgb(255/255,158/255,17/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min6 caption = "Color Range 6 Low" default = rgb(59/255,24/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,217/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min7 caption = "Color Range 7 Low" default = rgb(76/255,41/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Max8 caption = "Color Range 8 High" default = rgb(255/255,184/255,53/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Soleil 8") endparam color param soleil8Min8 caption = "Color Range 8 Low" default = rgb(76/255,29/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Soleil 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Chill 8 ;-------------------------------------------------------------------- heading caption = " Chill 8 Settings" visible = (@customize && @colorPreset == "Chill 8") endheading color param chillMax1 caption = "Color Range 1 High" default = rgb(233/255,245/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin1 caption = "Color Range 1 Low" default = rgb(0/255,21/255,60/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax2 caption = "Color Range 2 High" default = rgb(182/255,201/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,76/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax3 caption = "Color Range 3 High" default = rgb(0/255,34/255,136/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin3 caption = "Color Range 3 Low" default = rgb(9/255,9/255,59/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax4 caption = "Color Range 4 High" default = rgb(0/255,75/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,25/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax5 caption = "Color Range 5 High" default = rgb(233/255,245/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin5 caption = "Color Range 5 Low" default = rgb(0/255,21/255,60/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax6 caption = "Color Range 6 High" default = rgb(182/255,201/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,76/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax7 caption = "Color Range 7 High" default = rgb(0/255,34/255,136/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin7 caption = "Color Range 7 Low" default = rgb(9/255,9/255,59/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMax8 caption = "Color Range 8 High" default = rgb(0/255,75/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Chill 8") endparam color param chillMin8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,25/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Chill 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cloud Nine 8 ;-------------------------------------------------------------------- heading caption = " Cloud Nine 8 Settings" visible = (@customize && @colorPreset == "Cloud Nine 8") endheading color param cloudNineMax1 caption = "Color Range 1 High" default = rgb(255/255,255/255,173/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin1 caption = "Color Range 1 Low" default = rgb(143/255,60/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax2 caption = "Color Range 2 High" default = rgb(247/255,214/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin2 caption = "Color Range 2 Low" default = rgb(139/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax3 caption = "Color Range 3 High" default = rgb(212/255,255/255,249/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin3 caption = "Color Range 3 Low" default = rgb(0/255,53/255,20/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax4 caption = "Color Range 4 High" default = rgb(255/255,221/255,217/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin4 caption = "Color Range 4 Low" default = rgb(115/255,21/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax5 caption = "Color Range 5 High" default = rgb(255/255,255/255,173/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin5 caption = "Color Range 5 Low" default = rgb(140/255,63/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax6 caption = "Color Range 6 High" default = rgb(247/255,214/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin6 caption = "Color Range 6 Low" default = rgb(139/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax7 caption = "Color Range 7 High" default = rgb(212/255,255/255,249/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin7 caption = "Color Range 7 Low" default = rgb(0/255,53/255,20/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMax8 caption = "Color Range 8 High" default = rgb(255/255,221/255,217/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam color param cloudNineMin8 caption = "Color Range 8 Low" default = rgb(115/255,21/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Cloud Nine 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for La Terra 8 ;-------------------------------------------------------------------- heading caption = " La Terra 8 Settings" visible = (@customize && @colorPreset == "La Terra 8") endheading color param laTerraMax1 caption = "Color Range 1 High" default = rgb(255/255,174/255,103/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin1 caption = "Color Range 1 Low" default = rgb(102/255,47/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax2 caption = "Color Range 2 High" default = rgb(255/255,242/255,39/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin2 caption = "Color Range 2 Low" default = rgb(100/255,58/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax3 caption = "Color Range 3 High" default = rgb(170/255,86/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin3 caption = "Color Range 3 Low" default = rgb(92/255,29/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax4 caption = "Color Range 4 High" default = rgb(190/255,118/255,13/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin4 caption = "Color Range 4 Low" default = rgb(84/255,41/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax5 caption = "Color Range 5 High" default = rgb(255/255,174/255,103/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin5 caption = "Color Range 5 Low" default = rgb(102/255,47/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax6 caption = "Color Range 6 High" default = rgb(255/255,242/255,39/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin6 caption = "Color Range 6 Low" default = rgb(100/255,58/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax7 caption = "Color Range 7 High" default = rgb(170/255,86/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin7 caption = "Color Range 7 Low" default = rgb(92/255,29/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMax8 caption = "Color Range 8 High" default = rgb(190/255,118/255,13/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "La Terra 8") endparam color param laTerraMin8 caption = "Color Range 8 Low" default = rgb(84/255,41/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "La Terra 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Santa Fe 8 ;-------------------------------------------------------------------- heading caption = " Santa Fe 8 Settings" visible = (@customize && @colorPreset == "Santa Fe 8") endheading color param santaFe8Max1 caption = "Color Range 1 High" default = rgb(255/255,235/255,76/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min1 caption = "Color Range 1 Low" default = rgb(122/255,52/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max2 caption = "Color Range 2 High" default = rgb(0/255,229/255,222/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min2 caption = "Color Range 2 Low" default = rgb(0/255,48/255,51/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max3 caption = "Color Range 3 High" default = rgb(255/255,200/255,140/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min3 caption = "Color Range 3 Low" default = rgb(82/255,21/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max4 caption = "Color Range 4 High" default = rgb(255/255,157/255,82/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min4 caption = "Color Range 4 Low" default = rgb(130/255,0/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max5 caption = "Color Range 5 High" default = rgb(255/255,235/255,76/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min5 caption = "Color Range 5 Low" default = rgb(122/255,52/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max6 caption = "Color Range 6 High" default = rgb(0/255,229/255,222/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min6 caption = "Color Range 6 Low" default = rgb(0/255,48/255,51/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max7 caption = "Color Range 7 High" default = rgb(255/255,200/255,140/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min7 caption = "Color Range 7 Low" default = rgb(82/255,21/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Max8 caption = "Color Range 8 High" default = rgb(255/255,157/255,82/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Santa Fe 8") endparam color param santaFe8Min8 caption = "Color Range 8 Low" default = rgb(130/255,0/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Santa Fe 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Spring 8 ;-------------------------------------------------------------------- heading caption = " Spring 8 Settings" visible = (@customize && @colorPreset == "Spring 8") endheading color param spring8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,145/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min1 caption = "Color Range 1 Low" default = rgb(110/255,65/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max2 caption = "Color Range 2 High" default = rgb(215/255,182/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min2 caption = "Color Range 2 Low" default = rgb(86/255,0/255,110/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max3 caption = "Color Range 3 High" default = rgb(189/255,246/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min3 caption = "Color Range 3 Low" default = rgb(0/255,51/255,54/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max4 caption = "Color Range 4 High" default = rgb(255/255,181/255,237/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min4 caption = "Color Range 4 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,145/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min5 caption = "Color Range 5 Low" default = rgb(110/255,65/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max6 caption = "Color Range 6 High" default = rgb(215/255,182/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min6 caption = "Color Range 6 Low" default = rgb(86/255,0/255,110/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max7 caption = "Color Range 7 High" default = rgb(189/255,246/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min7 caption = "Color Range 7 Low" default = rgb(0/255,51/255,54/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Max8 caption = "Color Range 8 High" default = rgb(255/255,181/255,237/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Spring 8") endparam color param spring8Min8 caption = "Color Range 8 Low" default = rgb(92/255,0/255,31/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Spring 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Summer 8 ;-------------------------------------------------------------------- heading caption = " Summer 8 Settings" visible = (@customize && @colorPreset == "Summer 8") endheading color param summer8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min1 caption = "Color Range 1 Low" default = rgb(64/255,32/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max2 caption = "Color Range 2 High" default = rgb(255/255,64/255,64/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min2 caption = "Color Range 2 Low" default = rgb(64/255,0/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max3 caption = "Color Range 3 High" default = rgb(0/255,255/255,101/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min3 caption = "Color Range 3 Low" default = rgb(0/255,62/255,22/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max4 caption = "Color Range 4 High" default = rgb(64/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,64/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min5 caption = "Color Range 5 Low" default = rgb(64/255,32/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max6 caption = "Color Range 6 High" default = rgb(255/255,64/255,64/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min6 caption = "Color Range 6 Low" default = rgb(64/255,0/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max7 caption = "Color Range 7 High" default = rgb(0/255,255/255,101/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min7 caption = "Color Range 7 Low" default = rgb(0/255,62/255,22/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Max8 caption = "Color Range 8 High" default = rgb(64/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Summer 8") endparam color param summer8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,64/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Summer 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fall 8 ;-------------------------------------------------------------------- heading caption = " Fall 8 Settings" visible = (@customize && @colorPreset == "Fall 8") endheading color param fall8Max1 caption = "Color Range 1 High" default = rgb(255/255,235/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min1 caption = "Color Range 1 Low" default = rgb(136/255,46/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max2 caption = "Color Range 2 High" default = rgb(255/255,61/255,32/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min2 caption = "Color Range 2 Low" default = rgb(96/255,26/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max3 caption = "Color Range 3 High" default = rgb(255/255,184/255,26/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min3 caption = "Color Range 3 Low" default = rgb(86/255,24/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max4 caption = "Color Range 4 High" default = rgb(255/255,107/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min4 caption = "Color Range 4 Low" default = rgb(112/255,29/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max5 caption = "Color Range 5 High" default = rgb(255/255,235/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min5 caption = "Color Range 5 Low" default = rgb(136/255,46/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max6 caption = "Color Range 6 High" default = rgb(255/255,61/255,32/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min6 caption = "Color Range 6 Low" default = rgb(96/255,26/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max7 caption = "Color Range 7 High" default = rgb(255/255,184/255,26/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min7 caption = "Color Range 7 Low" default = rgb(86/255,24/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Max8 caption = "Color Range 8 High" default = rgb(255/255,107/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Fall 8") endparam color param fall8Min8 caption = "Color Range 8 Low" default = rgb(112/255,29/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Fall 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Winter 8 ;-------------------------------------------------------------------- heading caption = " Winter 8 Settings" visible = (@customize && @colorPreset == "Winter 8") endheading color param winter8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min1 caption = "Color Range 1 Low" default = rgb(65/255,65/255,87/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max2 caption = "Color Range 2 High" default = rgb(163/255,186/255,209/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min2 caption = "Color Range 2 Low" default = rgb(35/255,35/255,61/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max3 caption = "Color Range 3 High" default = rgb(173/255,166/255,157/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min3 caption = "Color Range 3 Low" default = rgb(78/255,65/255,52/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max4 caption = "Color Range 4 High" default = rgb(113/255,118/255,140/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min4 caption = "Color Range 4 Low" default = rgb(20/255,32/255,68/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min5 caption = "Color Range 5 Low" default = rgb(65/255,65/255,87/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max6 caption = "Color Range 6 High" default = rgb(163/255,186/255,209/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min6 caption = "Color Range 6 Low" default = rgb(35/255,35/255,61/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max7 caption = "Color Range 7 High" default = rgb(173/255,166/255,157/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min7 caption = "Color Range 7 Low" default = rgb(78/255,65/255,52/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Max8 caption = "Color Range 8 High" default = rgb(113/255,118/255,140/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Winter 8") endparam color param winter8Min8 caption = "Color Range 8 Low" default = rgb(20/255,32/255,68/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Winter 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Mojave 8 ;-------------------------------------------------------------------- heading caption = " Mojave 8 Settings" visible = (@customize && @colorPreset == "Mojave 8") endheading color param mojave8Max1 caption = "Color Range 1 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min1 caption = "Color Range 1 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max2 caption = "Color Range 2 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min2 caption = "Color Range 2 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max3 caption = "Color Range 3 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min3 caption = "Color Range 3 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max4 caption = "Color Range 4 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min4 caption = "Color Range 4 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max5 caption = "Color Range 5 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min5 caption = "Color Range 5 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max6 caption = "Color Range 6 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min6 caption = "Color Range 6 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max7 caption = "Color Range 7 High" default = rgb(255/255,169/255,50/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min7 caption = "Color Range 7 Low" default = rgb(116/255,0/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Max8 caption = "Color Range 8 High" default = rgb(255/255,243/255,120/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Mojave 8") endparam color param mojave8Min8 caption = "Color Range 8 Low" default = rgb(86/255,31/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Mojave 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green 8 ;-------------------------------------------------------------------- heading caption = " Gold/Green 8 Settings" visible = (@customize && @colorPreset == "Gold/Green 8") endheading color param goldGreen8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min2 caption = "Color Range 2 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min4 caption = "Color Range 4 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max5 caption = "Color Range 5 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min5 caption = "Color Range 5 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max6 caption = "Color Range 6 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min6 caption = "Color Range 6 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max7 caption = "Color Range 7 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min7 caption = "Color Range 7 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Max8 caption = "Color Range 8 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Green 8") endparam color param goldGreen8Min8 caption = "Color Range 8 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Green 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green Alt 8 ;-------------------------------------------------------------------- heading caption = " Gold/Green Alt 8 Settings" visible = (@customize && @colorPreset == "Gold/Green Alt 8") endheading color param goldGreenAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max2 caption = "Color Range 2 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min2 caption = "Color Range 2 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max4 caption = "Color Range 4 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min4 caption = "Color Range 4 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min5 caption = "Color Range 5 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max6 caption = "Color Range 6 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min6 caption = "Color Range 6 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min7 caption = "Color Range 7 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Max8 caption = "Color Range 8 High" default = rgb(0/255,129/255,8/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam color param goldGreenAlt8Min8 caption = "Color Range 8 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Green Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Silver 8 ;-------------------------------------------------------------------- heading caption = " Gold/Silver 8 Settings" visible = (@customize && @colorPreset == "Gold/Silver 8") endheading color param goldSilver8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min2 caption = "Color Range 2 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min4 caption = "Color Range 4 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min5 caption = "Color Range 5 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min6 caption = "Color Range 6 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min7 caption = "Color Range 7 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam color param goldSilver8Min8 caption = "Color Range 8 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Silver Alt 8 ;-------------------------------------------------------------------- heading caption = " Gold/Silver Alt 8 Settings" visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endheading color param goldSilverAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min2 caption = "Color Range 2 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min3 caption = "Color Range 3 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min4 caption = "Color Range 4 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min5 caption = "Color Range 5 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min6 caption = "Color Range 6 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min7 caption = "Color Range 7 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam color param goldSilverAlt8Min8 caption = "Color Range 8 Low" default = rgb(125/255,125/255,125/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Gold/Silver Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow 8 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow 8 Settings" visible = (@customize && @colorPreset == "Purple/Yellow 8") endheading color param purpleYellow8Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max2 caption = "Color Range 2 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min2 caption = "Color Range 2 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max3 caption = "Color Range 3 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min3 caption = "Color Range 3 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max4 caption = "Color Range 4 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min4 caption = "Color Range 4 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min5 caption = "Color Range 5 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min6 caption = "Color Range 6 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min7 caption = "Color Range 7 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam color param purpleYellow8Min8 caption = "Color Range 8 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow Alt 8 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow Alt 8 Settings" visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endheading color param purpleYellowAlt8Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max3 caption = "Color Range 3 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min3 caption = "Color Range 3 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min4 caption = "Color Range 4 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max5 caption = "Color Range 5 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min5 caption = "Color Range 5 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max6 caption = "Color Range 6 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min6 caption = "Color Range 6 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max7 caption = "Color Range 7 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min7 caption = "Color Range 7 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Max8 caption = "Color Range 8 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam color param purpleYellowAlt8Min8 caption = "Color Range 8 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Purple/Yellow Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Silver/Blue 8 ;-------------------------------------------------------------------- heading caption = " Silver/Blue 8 Settings" visible = (@customize && @colorPreset == "Silver/Blue 8") endheading color param silverBlue8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min1 caption = "Color Range 1 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min2 caption = "Color Range 2 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min3 caption = "Color Range 3 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max4 caption = "Color Range 4 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min4 caption = "Color Range 4 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max5 caption = "Color Range 5 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min5 caption = "Color Range 5 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max6 caption = "Color Range 6 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max7 caption = "Color Range 7 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min7 caption = "Color Range 7 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Max8 caption = "Color Range 8 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam color param silverBlue8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Silver/Blue Alt 8 ;-------------------------------------------------------------------- heading caption = " Silver/Blue Alt 8 Settings" visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endheading color param silverBlueAlt8Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min1 caption = "Color Range 1 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max2 caption = "Color Range 2 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min3 caption = "Color Range 3 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #3." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max4 caption = "Color Range 4 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min4 caption = "Color Range 4 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #4." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max5 caption = "Color Range 5 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min5 caption = "Color Range 5 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #5." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max6 caption = "Color Range 6 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min6 caption = "Color Range 6 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #6." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max7 caption = "Color Range 7 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min7 caption = "Color Range 7 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #7." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Max8 caption = "Color Range 8 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam color param silverBlueAlt8Min8 caption = "Color Range 8 Low" default = rgb(0/255,0/255,96/255) hint = "Specifies the color at the low end of Range #8." visible = (@customize && @colorPreset == "Silver/Blue Alt 8") endparam ;-------------------------------------------------------------------- ; Color Defaults for Fourth of July 3 ;-------------------------------------------------------------------- heading caption = " Fourth of July 3 Settings" visible = (@customize && @colorPreset == "Fourth of July 3") endheading color param fourthOfJuly3Max1 caption = "Color Range 1 High" default = rgb(255/255,0/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min1 caption = "Color Range 1 Low" default = rgb(128/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Max2 caption = "Color Range 2 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min2 caption = "Color Range 2 Low" default = rgb(0/255,0/255,128/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Max3 caption = "Color Range 3 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam color param fourthOfJuly3Min3 caption = "Color Range 3 Low" default = rgb(128/255,128/255,128/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Fourth of July 3") endparam ;-------------------------------------------------------------------- ; Color Defaults for Blue/Silver 2 ;-------------------------------------------------------------------- heading caption = " Blue/Silver 2 Settings" visible = (@customize && @colorPreset == "Blue/Silver 2") endheading color param blueSilver2Max1 caption = "Color Range 1 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Min1 caption = "Color Range 1 Low" default = rgb(0/255,0/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam color param blueSilver2Min2 caption = "Color Range 2 Low" default = rgb(97/255,97/255,97/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Blue/Silver 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Blue/White 2 ;-------------------------------------------------------------------- heading caption = " Blue/White 2 Settings" visible = (@customize && @colorPreset == "Blue/White 2") endheading color param blueWhite2Max1 caption = "Color Range 1 High" default = rgb(64/255,64/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Min1 caption = "Color Range 1 Low" default = rgb(0/255,0/255,97/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Blue/White 2") endparam color param blueWhite2Min2 caption = "Color Range 2 Low" default = rgb(124/255,124/255,124/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Blue/White 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cyan/Magenta 2 ;-------------------------------------------------------------------- heading caption = " Cyan/Magenta 2 Settings" visible = (@customize && @colorPreset == "Cyan/Magenta 2") endheading color param cyanMagenta2Max1 caption = "Color Range 1 High" default = rgb(128/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Min1 caption = "Color Range 1 Low" default = rgb(0/255,64/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Max2 caption = "Color Range 2 High" default = rgb(255/255,128/255,255/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam color param cyanMagenta2Min2 caption = "Color Range 2 Low" default = rgb(64/255,0/255,64/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cyan/Magenta 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Cyan/Yellow 2 ;-------------------------------------------------------------------- heading caption = " Cyan/Yellow 2 Settings" visible = (@customize && @colorPreset == "Cyan/Yellow 2") endheading color param cyanYellow2Max1 caption = "Color Range 1 High" default = rgb(128/255,255/255,255/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Min1 caption = "Color Range 1 Low" default = rgb(0/255,64/255,64/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam color param cyanYellow2Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Cyan/Yellow 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Gold/Green 2 ;-------------------------------------------------------------------- heading caption = " Gold/Green 2 Settings" visible = (@customize && @colorPreset == "Gold/Green 2") endheading color param goldGreen2Max1 caption = "Color Range 1 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Min1 caption = "Color Range 1 Low" default = rgb(153/255,64/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Max2 caption = "Color Range 2 High" default = rgb(0/255,129/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 2") endparam color param goldGreen2Min2 caption = "Color Range 2 Low" default = rgb(0/255,32/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Gold/Green 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Purple/Yellow 2 ;-------------------------------------------------------------------- heading caption = " Purple/Yellow 2 Settings" visible = (@customize && @colorPreset == "Purple/Yellow 2") endheading color param purpleYellow2Max1 caption = "Color Range 1 High" default = rgb(172/255,96/255,252/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Min1 caption = "Color Range 1 Low" default = rgb(72/255,0/255,80/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Max2 caption = "Color Range 2 High" default = rgb(255/255,255/255,0/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam color param purpleYellow2Min2 caption = "Color Range 2 Low" default = rgb(155/255,65/255,0/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Purple/Yellow 2") endparam ;-------------------------------------------------------------------- ; Color Defaults for Red/Tan 2 ;-------------------------------------------------------------------- heading caption = " Red/Tan 2 Settings" visible = (@customize && @colorPreset == "Red/Tan 2") endheading color param redTan2Max1 caption = "Color Range 1 High" default = rgb(255/255,32/255,32/255) hint = "Specifies the color at the high end of Range #1." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Min1 caption = "Color Range 1 Low" default = rgb(96/255,0/255,0/255) hint = "Specifies the color at the low end of Range #1." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Max2 caption = "Color Range 2 High" default = rgb(255/255,208/255,152/255) hint = "Specifies the color at the high end of Range #2." visible = (@customize && @colorPreset == "Red/Tan 2") endparam color param redTan2Min2 caption = "Color Range 2 Low" default = rgb(128/255,108/255,60/255) hint = "Specifies the color at the low end of Range #2." visible = (@customize && @colorPreset == "Red/Tan 2") endparam ;-------------------------------------------------------------------- ; General Color Parameters ;-------------------------------------------------------------------- heading caption = " General Color Parameters" endheading color param maxColor caption = "Max Iter Color" default = rgb(0,0,0) hint = "Specifies the color assigned when the Maximum Iterations \ is reached before the orbit is trapped." endparam color param backColor caption = "Background Color" default = rgb(0,0,0) hint = "Specifies the color assigned to the background of the image." visible = (@solid == false) endparam color param borderColor caption = "Border Color" default = rgb(0,0,0) hint = "Specifies the color assigned to the border of the shapes." visible = (@solidBorder == false) && (@colorPreset == "Gradient") && \ (@colorMode != "Normal") && (@borderWidth > 0.0) endparam bool param solidBorder caption = "Solid Border" hint = "If this is enabled orbits, the border around the shapes is \ made solid." default = false visible = (@colorPreset == "Gradient") && (@colorMode != "Normal") && \ (@borderWidth > 0.0) endparam int param colorOffset caption = "Range Offset" default = 0 min = 0 max = 23 hint = "This is used to rotate the color ranges. The offset can \ range from 0 to 23, where 23 is the maximum number of ranges \ that can be specified using the 'Generate' Color Preset." visible = (@colorPreset != "Gradient") endparam bool param solid caption = "Solid Background" hint = "If this is enabled orbits that aren't trapped become solid. \ This is used to make the background transparent for use in \ multi-layer images." default = false endparam ;-------------------------------------------------------------------- ; Texture Settings ;-------------------------------------------------------------------- heading caption = "Texture Settings" visible = (@colorPreset == "Gradient") endheading param useFBM caption = "Use fBm" hint = "Check this box to enable use of FBM texturing on the areas \ that are trapped." default = false visible = (@colorPreset == "Gradient") endparam param mask_type caption = "Mask Type" enum = "Distance" "Iteration" "Range" visible = (@useFBM && @colorPreset == "Gradient") endparam param mask caption = "Mask Threshold" default = 0.0 min = 0.0 hint = "With the Distance Mask Type orbits that don't come at least \ this close to the trap are made solid. A value of zero means \ that no pixels are made solid." visible = (@useFBM && @colorPreset == "Gradient") endparam param mask_mod caption = "Mask Modulation" default = 0 hint = "With the Modulation Mask Type the iteration that the orbit \ was caught by the trap is modulated by this value, and if \ the Mask Threshold is smaller the pixel is made solid." visible = (@useFBM && @colorPreset == "Gradient") endparam param inverse caption = "Mask Reversed" default = false visible = (@useFBM && @colorPreset == "Gradient") endparam param texture_type caption = "Texture Type" enum = "Random" "fBm" "Corrected fBm" hint = "This is the type of texture to add to the coloring. The \ Texture Amount parameter must be non-zero for texture to be added." visible = (@useFBM && @colorPreset == "Gradient") endparam param rnd caption = "Texture Amount" default = 0.0 hint = "This is the amount of texturing to add to the coloring." visible = (@useFBM && @colorPreset == "Gradient") endparam param initial caption = "fBm Initialisation" enum = "Pixel" "Orbit" ;"Trap" hint = "Different ways of starting the fBm formula. With \ Orbit and Trap the texture will follow the orbit trap \ elements in some way." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmfunc caption = "fBm Function" enum = "Ident" "Abs" "Sqr" "Sqrt" "Ceil" hint = "This is a function that is added to the fBm to chnage \ the way that it looks." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmscale caption = "fBm Scale" default = 1.0 hint = "This is the overall scale of the noise." visible = (@useFBM && @colorPreset == "Gradient") endparam param fbmoffset caption = "fBm Offset" default = (0,0) hint = "This is the offset of the pattern. You can use this to shift \ the pattern around on the complex plane." visible = (@useFBM && @colorPreset == "Gradient") endparam param angle caption = "fBm Rotation" default = 0.0 hint = "This is the angle, in degrees, of the noise." visible = (@useFBM && @colorPreset == "Gradient") endparam param step caption = "fBm Scale Step" default = 0.5 hint = "This is the step in scale between noise iterations." visible = (@useFBM && @colorPreset == "Gradient") endparam param anglestep caption = "fBm Rotation Step" default = 37.0 hint = "This is the angle, in degrees, to rotate between noise \ iterations." visible = (@useFBM && @colorPreset == "Gradient") endparam param octaves caption = "fBm Octaves" default = 7 min = 1 hint = "This is the number of iterations of the noise formula." visible = (@useFBM && @colorPreset == "Gradient") endparam param power caption = "fBm Exponent" default = 2.0 hint = "This is the exponent used to scramble numbers." visible = (@useFBM && @colorPreset == "Gradient") endparam param pattern caption = "fBm Pattern" enum = "None" "Marble" "Wood" "Cells" "Squares" hint = "This creates a repeating pattern to be disturbed by the fBm." visible = (@useFBM && @colorPreset == "Gradient") endparam param pfreq caption = "fBm Frequency" default = 1.0 hint = "This controls the frequency of the Pattern." visible = (@useFBM && @colorPreset == "Gradient") endparam param turb caption = "fBm Turbulence" default = 1.0 hint = "With a Pattern other than None this effects how \ the pattern will be by the fBm." visible = (@useFBM && @colorPreset == "Gradient") endparam }