#version 3.8; global_settings {assumed_gamma 1.0} #if (file_exists ("KeywordExamples.inc")) #include "KeywordExamples.inc" #end // Keywords Reference // http://wiki.povray.org/content/Reference:Keywords // POV-Ray has a number of reserved keywords which are listed below. // Use this to select which code example to run. #declare Keyword = 5; // ##################################################################################################### #declare this_keyword = 0; // (this mechanism allows insertion of new items in the list without having to renumber ALL the entries) #declare NO = "Stopping render of objectless scene. Check #debug stream in console output. \n" // ##################################################################################################### #if (Keyword = this_keyword) // Code example for keyword: aa_level aa_level #end #declare this_keyword = this_keyword + 1; // increment this_keyword by 1 after every example // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: aa_threshold aa_threshold #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: abs abs #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: absorption absorption #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: accuracy accuracy #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: acos // Version 0.1 // Author: Bald Eagle // March 2021 // Checked [ ] Checked by: /* Returns the angle, expressed in radians, whose cosine is N. For real input to acos (N), N should be in the range -1 to +1. For real input, the output range of ACOS is between 0 and π. */ #debug concat ("Code example for keyword: acos \n") #for (N, -1, 1, 0.1) #local N = min(max(N, -1), 1); // clamp N = -/+1 #local _Angle = acos (N); #debug concat ("acos (", str (N, 5, 2), ") = ", str (_Angle, 0, 4), " radians \n") #end #error NO // Stop render /* Coding syntax notes: Passing values outside of -1 to +1 to acos will result in an error: Parse Warning: Domain error in acos. So you may want to sanity check / limit your input as follows: #local N = min(max(N, -1), 1); #local N = max(min(N, 1), -1); #local N = (N < -1) ? -1 : ((N > 1) ? 1 : N) */ #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: acosh acosh #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: adaptive adaptive #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: adc_bailout global setting adc_bailout global setting #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: adc_bailout radiosity adc_bailout radiosity #end #declare this_keyword = this_keyword +1; // ----------------------------------------------------------------------------------------------------- #if (Keyword = this_keyword) // Code example for keyword: agate agate #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: agate_turb agate_turb #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: albedo diffuse albedo diffuse #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: albedo phong albedo phong #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: albedo specular albedo specular #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: all all #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: all_intersections all_intersections #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: alpha alpha #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: altitude altitude #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: always_sample always_sample #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ambient ambient #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ambient_light ambient_light #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: angle angle #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: aoi aoi #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: aperture aperture #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: append append #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: arc_angle arc_angle #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: area_illumination area_illumination #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: area_light area_light #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: array array #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: asc asc #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ascii ascii #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: asin asin #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: asinh asinh #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: assumed_gamma assumed_gamma #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: atan atan #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: atan2 atan2 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: atand atand #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: atanh atanh #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: autostop autostop #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: average average #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: b_spline b_spline #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: background background #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bezier_spline bezier_spline #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bicubic_patch bicubic_patch #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bitwise_and bitwise_and #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bitwise_or bitwise_or #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bitwise_xor bitwise_xor #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: black_hole black_hole #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: blend_gamma color map blend_gamma color map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: blend_gamma pigment map blend_gamma pigment map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: blend_mode color map blend_mode color map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: blend_mode pigment map blend_mode pigment map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: blob blob #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: blue blue #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: blur_samples blur_samples #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bokeh bokeh #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bounded_by bounded_by #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: box box #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: boxed boxed #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bozo bozo #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: break break #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: brick brick #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: brick_size brick_size #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: brightness brightness #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: brilliance brilliance #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bump_map bump_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bump_size bump_size #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bumps bumps #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bt709 bump map bt709 bump map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bt709 height field bt709 height field #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bt709 image map bt709 image map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bt709 image pattern bt709 image pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bt2020 bump map bt2020 bump map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bt2020 height field bt2020 height field #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bt2020 image map bt2020 image map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: bt2020 image pattern bt2020 image pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: camera camera #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: case case #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: caustics caustics #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ceil ceil #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cells cells #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: charset charset #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: checker checker #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: chr chr #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: circular circular #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: clipped_by clipped_by #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: clock clock #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: clock_delta clock_delta #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: clock_on clock_on #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: collect collect #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: color color #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: color_map color_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: colour colour #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: colour_map colour_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: component component #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: composite composite #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: concat concat #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cone cone #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: confidence confidence #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: conic_sweep conic_sweep #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: conserve_energy conserve_energy #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: contained_by contained_by #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: control0 control0 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: control1 control1 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: coords coords #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cos cos #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cosh cosh #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: count count #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: crackle crackle #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: crand crand #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cube cube #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cubic object cubic object #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cubic pattern cubic pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cubic warp cubic warp #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cubic_spline cubic_spline #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cubic_wave cubic_wave #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cutaway_textures cutaway_textures #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cylinder cylinder #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: cylindrical cylindrical #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: datetime datetime #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: debug debug #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: declare declare #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: default default #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: defined defined #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: degrees degrees #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: density density #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: density_file density_file #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: density_map density_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: dents dents #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: deprecated deprecated #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: df3 df3 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: dictionary dictionary #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: difference csg difference csg #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: difference torus difference torus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: diffuse diffuse #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: dimension_size dimension_size #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: dimensions dimensions #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: direction direction #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: disc disc #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: dispersion dispersion #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: dispersion_samples dispersion_samples #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: dist_exp dist_exp #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: distance fog distance fog #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: distance ovus distance ovus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: div div #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: double_illuminate double_illuminate #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: eccentricity eccentricity #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: else else #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: elseif elseif #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: emission finish emission finish #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: emission media emission media #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: end end #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: error error #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: error_bound error_bound #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: evaluate evaluate #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: exp exp #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: expand_thresholds expand_thresholds #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: exponent exponent #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: exterior exterior #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: extinction extinction #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: face_indices face_indices #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: facets facets #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fade_color fade_color #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fade_colour fade_colour #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fade_distance fade_distance #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fade_power fade_power #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: falloff falloff #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: falloff_angle falloff_angle #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: false false #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fclose fclose #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: file_exists file_exists #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: filter filter #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: final_clock final_clock #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: final_frame final_frame #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: finish finish #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fisheye fisheye #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: flatness flatness #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: flip flip #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: floor floor #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: focal_point focal_point #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fog fog #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fog_alt fog_alt #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fog_offset fog_offset #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fog_type fog_type #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fopen fopen #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: for for #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: form form #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: frame_number frame_number #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: frequency frequency #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: fresnel fresnel #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: function function #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gamma bump maps gamma bump maps #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gamma heightfield gamma heightfield #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gamma image map gamma image map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gamma image pattern gamma image pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gather gather #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gif gif #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: global global #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: global_lights global_lights #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: global_settings global_settings #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gradient gradient #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: granite granite #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gray gray #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: gray_threshold gray_threshold #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: green green #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: height_field height_field #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: hexagon hexagon #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: hf_gray_16 hf_gray_16 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: hierarchy hierarchy #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: hypercomplex hypercomplex #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: hollow hollow #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: if if #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ifdef ifdef #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: iff iff #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ifndef ifndef #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: image_height image_height #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: image_map image_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: image_pattern image_pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: image_width image_width #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: importance importance #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: include include #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: initial_clock initial_clock #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: initial_frame initial_frame #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: input_file_name input_file_name #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: inside inside #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: inside_vector inside_vector #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: int int #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: interior interior #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: interior_texture interior_texture #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: internal internal #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: interpolate interpolate #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: intersection csg intersection csg #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: intersection torus intersection torus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: intervals intervals #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: inverse inverse #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ior ior #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: irid irid #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: irid_wavelength irid_wavelength #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: isosurface isosurface #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: jitter jitter #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: jpeg jpeg #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: julia julia #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: julia_fractal julia_fractal #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: lambda lambda #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: lathe lathe #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: lemon lemon #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: leopard leopard #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: light_group light_group #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: light_source light_source #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: linear_spline linear_spline #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: linear_sweep linear_sweep #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ln ln #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: load_file load_file #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: local directive local directive #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: local dictionary local dictionary #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: location location #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: log log #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: look_at look_at #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: looks_like looks_like #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: low_error_factor low_error_factor #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: macro macro #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: magnet magnet #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: major_radius major_radius #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: mandel mandel #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: map_type map_type #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: marble marble #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: material material #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: material_map material_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: matrix matrix #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: max max #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: maximum_reuse maximum_reuse #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: max_extent max_extent #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: max_gradient max_gradient #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: max_intersections max_intersections #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: max_iteration max_iteration #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: max_sample max_sample #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: max_trace max_trace #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: max_trace_level max_trace_level #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: media media #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: media_attenuation media_attenuation #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: media_interaction media_interaction #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: merge csg merge csg #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: merge torus merge torus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: mesh mesh #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: mesh2 mesh2 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: metallic metallic #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: method method #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: metric metric #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: min min #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: min_extent min_extent #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: minimum_reuse minimum_reuse #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: mixed mixed #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: mm_per_unit mm_per_unit #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: mod mod #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: mortar mortar #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: natural_spline natural_spline #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: nearest_count nearest_count #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: no no #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: no_bump_scale no_bump_scale #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: no_image no_image #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: no_radiosity no_radiosity #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: no_reflection no_reflection #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: no_shadow no_shadow #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: noise_generator noise_generator #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: normal normal #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: normal_indices normal_indices #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: normal_map normal_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: normal_vectors normal_vectors #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: now now #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: number_of_waves number_of_waves #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: object object #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: octaves octaves #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: off off #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: offset offset #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: omega omega #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: omnimax omnimax #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: on on #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: once once #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: onion onion #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: open open #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: optional optional #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: orient orient #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: orientation orientation #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: orthographic orthographic #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ovus ovus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: panoramic panoramic #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: parallel parallel #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: parametric parametric #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pass_through pass_through #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pattern pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pavement pavement #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: perspective perspective #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pgm pgm #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: phase phase #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: phong phong #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: phong_size phong_size #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: photons photons #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pi pi #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pigment pigment #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pigment_map pigment_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pigment_pattern pigment_pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: planar planar #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: plane plane #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: png png #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: point_at point_at #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: polarity polarity #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: poly poly #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: polynomial polynomial #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: poly_wave poly_wave #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: polygon polygon #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pot pot #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: potential potential #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pow pow #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ppm ppm #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: precision julia precision julia #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: precision ovus precision ovus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: precompute precompute #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: premultiplied premultiplied #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pretrace_end pretrace_end #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pretrace_start pretrace_start #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: prism prism #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: prod prod #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: projected_through projected_through #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: pwr pwr #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: quadratic_spline quadratic_spline #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: quadric quadric #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: quartic quartic #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: quaternion quaternion #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: quick_color quick_color #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: quick_colour quick_colour #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: quilted quilted #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: radial radial #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: radians radians #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: radiosity radiosity #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: radius spotlight radius spotlight #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: radius ovus radius ovus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: rainbow rainbow #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ramp_wave ramp_wave #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: rand rand #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: range range #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ratio ratio #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: read read #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: reciprocal reciprocal #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: recursion_limit recursion_limit #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: red red #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: reflection reflection #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: reflection_exponent reflection_exponent #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: refraction refraction #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: render render #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: repeat crackle pattern repeat crackle pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: repeat warp repeat warp #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: rgb rgb #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: rgbf rgbf #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: rgbft rgbft #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: rgbt rgbt #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: right right #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ripples ripples #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: rotate rotate #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: roughness roughness #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: samples media samples media #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: samples subsurface samples subsurface #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: save_file save_file #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: scale scale #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: scallop_wave scallop_wave #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: scattering scattering #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: seed seed #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: select select #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: shadowless shadowless #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sin sin #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sine_wave sine_wave #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sinh sinh #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sint8 sint8 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sint16be sint16be #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sint16le sint16le #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sint32be sint32be #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sint32le sint32le #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: size size #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sky sky #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sky_sphere sky_sphere #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: slice slice #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: slope slope #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: slope_map slope_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: smooth smooth #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: smooth_triangle smooth_triangle #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: solid solid #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sor sor #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: spacing spacing #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: specular specular #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sphere sphere #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sphere_sweep sphere_sweep #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: spherical spherical #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: spiral1 spiral1 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: spiral2 spiral2 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: spline spline #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: split_union split_union #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: spotlight spotlight #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: spotted spotted #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sqr sqr #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sqrt sqrt #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: square square #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: srgb bump maps srgb bump maps #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: srgb color literals srgb color literals #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: srgb heightfield srgb heightfield #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: srgb image maps srgb image maps #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: srgb image pattern srgb image pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: srgbf srgbf #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: srgbt srgbt #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: srgbft srgbft #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: statistics statistics #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: str str #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: strcmp strcmp #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: strength strength #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: strlen strlen #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: strlwr strlwr #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: strupr strupr #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sturm sturm #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: substr substr #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: subsurface subsurface #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sum sum #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: superellipsoid superellipsoid #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: switch switch #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: sys sys #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: t t #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tan tan #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tanh tanh #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: target target #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tau tau #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: text text #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: texture texture #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: texture_list texture_list #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: texture_map texture_map #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tga tga #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: thickness thickness #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: threshold blob threshold blob #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: threshold isosurface threshold isosurface #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: threshold potential pattern threshold potential pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tiff tiff #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tightness tightness #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tile2 tile2 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tiles tiles #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tiling tiling #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: tolerance tolerance #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: toroidal toroidal #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: torus torus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: trace trace #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: transform transform #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: translate translate #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: translucency translucency #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: transmit transmit #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: triangle triangle #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: triangle_wave triangle_wave #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: triangular triangular #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: true true #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ttf ttf #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: turb_depth turb_depth #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: turbulence turbulence #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: type type #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: u u #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: uint8 uint8 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: uint16be uint16be #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: uint16le uint16le #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: u_steps u_steps #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: ultra_wide_angle ultra_wide_angle #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: undef undef #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: union csg union csg #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: union torus union torus #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: up up #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: use_alpha image pattern use_alpha image pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: use_alpha finish use_alpha finish #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: use_color use_color #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: use_colour use_colour #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: use_index use_index #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: user_defined projection user_defined projection #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: user_defined pattern user_defined pattern #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: utf8 utf8 #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: uv_indices uv_indices #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: uv_mapping uv_mapping #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: uv_vectors uv_vectors #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: v v #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: v_steps v_steps #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: val val #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: variance variance #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vaxis_rotate vaxis_rotate #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vcross vcross #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vdot vdot #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: version version #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vertex_vectors vertex_vectors #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vlength vlength #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vnormalize vnormalize #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vrotate vrotate #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vstr vstr #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: vturbulence vturbulence #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: warning warning #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: warp warp #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: water_level water_level #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: waves waves #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: while while #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: width width #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: wood wood #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: wrinkles wrinkles #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: write write #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: x x #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: y y #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: yes yes #end #declare this_keyword = this_keyword +1; #if (Keyword = this_keyword) // Code example for keyword: #end #declare this_keyword = this_keyword +1;