0707070000010000000006660000000000000000010000001102415664600000700000000260.startfplayback -i on -r off -f 1 -e off -h on -t on -a on -k on -s 1 tcur 0 fps 24 tset 0 14.583333651224772 frange 1 350 unitlength 1 unitmass 1 prompt '`strcat(oppwf(), " -> ")`' 0707070000010000000006660000000000000000010000001102415664600001300000000577.variablesset -g ACTIVETAKE = 'Main' set -g E = '2.7182818284590452354' set -g HIP = 'H:/Houdini Tutorials/Particle Trails' set -g HIPNAME = 'particle_trails.hip' set -g JOB = '/local/a/scratch/testScene' set -g PI = '3.1415926535897932384' set -g POSE = '/home/song/houdini9.1/poselib' set -g _HIP_SAVETIME = 'Thu Jun 12 01:26:14 2008' set -g _HIP_SAVEVERSION = '9.1.218' set -g status = '0' 0707070000010000000006660000000000000000010000001102415664600001100000000267.aliasesalias cd 'opcf' alias cp 'opcp' alias h 'history' alias hython 'python' alias ls 'opls' alias matramp 'opramp' alias opcd 'opcf' alias oppwd 'oppwf' alias pwd 'oppwf' alias rm 'oprm' 0707070000010000000006660000000000000000010000001102415664600001400000000021.takeconfigtakename -g take 0707070000010000000006660000000000000000010000001102415664600001500000000006.hou.session 0707070000010000000006660000000000000000010000001102415664600001500000000000.OPlibraries0707070000010000000006660000000000000000010000001102415664600001700000000000.OPpreferences0707070000010000000006660000000000000000010000001102415664600001500000000316.OPfallbacksVop/importattrib C:/PROGRA~1/SIDEEF~1/HOUDIN~1.218/houdini/otls/OPlibVop.otl Vop/importattrib otls/OPlibVop.otl Vop/mix C:/PROGRA~1/SIDEEF~1/HOUDIN~1.218/houdini/otls/OPlibVop.otl Vop/mix otls/OPlibVop.otl 0707070000010000000006660000000000000000010000001102415664600001500000010643.OPdummydefsINDX INDEX_SECTIONHPݦVop/importattrib HPªGVop/mix¹ †HPª^ importattribImport Attribute(oplib:/Vop/importattrib?Vop/importattribVOP_importattribVopvopVOPallsop popHPݦmixMixoplib:/Vop/mix?Vop/mixVOP_mixVopvopVOPall*HPݦINDX DialogScripttG¡pk/* * PROPRIETARY INFORMATION. This software is proprietary to * Side Effects Software Inc., and is not to be reproduced, * transmitted, or disclosed in any way without written permission. * * Produced by: * Side Effects Software Inc * 477 Richmond Street West * Toronto, Ontario * Canada M5V 3E7 * 416-504-9876 * */ { name "importattrib" script "importattrib" label "importattrib" code { "if( $isconnected_ptnum )" " $success = import($attrib, $adata, $input_index, $ptnum);" "else" " $success = import($attrib, $adata, $input_index);" } input string attrib "Attribute Name" input int input_index "OP Input Index" input int ptnum "Point Number" output int success "Return 1 For Success, 0 For Failure" output vector adata "Attribute Value" signature "Float Attribute" f { string int int int float } signature "Integer Attribute" i { string int int int int } signature "Vector Attribute" default { } signature "Vector4 Attribute" v4 { string int int int vector4 } signature "Matrix3 Attribute" m3 { string int int int matrix3 } signature "Matrix Attribute" m { string int int int matrix } parm { name attrib label "Attribute" type string default { "Cd" } } parm { name input_index label "OP Input Index" type int size 1 default { 0 } range { 0 3 } } } INDX DialogScript ZG¡pp/* * PROPRIETARY INFORMATION. This software is proprietary to * Side Effects Software Inc., and is not to be reproduced, * transmitted, or disclosed in any way without written permission. * * Produced by: * Side Effects Software Inc * 477 Richmond Street West * Toronto, Ontario * Canada M5V 3E7 * 416-504-9876 * */ #include { name "mix" script "mix" label "mix" code { "#ifdef __vex" " $blend = lerp($input1, $input2, $bias);" "#else" " $blend = mix($input1, $input2, $bias);" "#endif" } input float input1 "Input 1" input float input2 "Input 2" input float bias "Interpolation Bias" output float blend "Interpolated Value" signature "1D Values" default { } signature "3D Vector Values" v { vector vector float vector } signature "3D Point Values" p { point point float point } signature "3D Normal Values" n { normal normal float normal } signature "3D Color Values" c { color color float color } signature "4D Values" v4 { vector4 vector4 float vector4 } signature "1D Uniform Float" uf { ufloat ufloat ufloat ufloat } signature "3D Uniform Vector" uv { uvector uvector ufloat uvector } signature "3D Uniform Point" up { upoint upoint ufloat upoint } signature "3D Uniform Normal" un { unormal unormal ufloat unormal } signature "3D Uniform Color" uc { ucolor ucolor ufloat ucolor } VOP_FLT_PARM_R(bias, "Bias", .5, 0, 1) group { name "gf" label "1D Defaults" VOP_FLT_PARM(input1, "Input 1", 0) VOP_FLT_PARM(input2, "Input 2", 1) } group { name "gv" label "3D Defaults" VOP_VEC_PARM(input1_v, "Input 1", 0, 0, 0) VOP_VEC_PARM(input2_v, "Input 2", 1, 1, 1) VOP_VEC_PARM(input1_p, "Input 1", 0, 0, 0) VOP_VEC_PARM(input2_p, "Input 2", 1, 1, 1) VOP_VEC_PARM(input1_n, "Input 1", 0, 0, 0) VOP_VEC_PARM(input2_n, "Input 2", 1, 1, 1) VOP_CLR_PARM(input1_c, "Input 1", 0, 0, 0) VOP_CLR_PARM(input2_c, "Input 2", 1, 1, 1) } group { name "gv4" label "4D Defaults" VOP_VEC4_PARM(input1_v4, "Input 1", 0, 0, 0, 0) VOP_VEC4_PARM(input2_v4, "Input 2", 1, 1, 1, 1) } group { name "gv" label "Uniform Defaults" VOP_FLT_PARM(input1_uf, "Input 1", 0) VOP_FLT_PARM(input2_uf, "Input 2", 1) VOP_VEC_PARM(input1_uv, "Input 1", 0, 0, 0) VOP_VEC_PARM(input2_uv, "Input 2", 1, 1, 1) VOP_VEC_PARM(input1_up, "Input 1", 0, 0, 0) VOP_VEC_PARM(input2_up, "Input 2", 1, 1, 1) VOP_VEC_PARM(input1_un, "Input 1", 0, 0, 0) VOP_VEC_PARM(input2_un, "Input 2", 1, 1, 1) VOP_CLR_PARM(input1_uc, "Input 1", 0, 0, 0) VOP_CLR_PARM(input2_uc, "Input 2", 1, 1, 1) } } 0707070000010000000006660000000000000000010000001102415664600002000000000012expression.func# 0 bytes 0707070000010000000006660000000000000000010000001102415664600001000000000562obj.defcomment "" position 5 2 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render on highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215026 modify 1213246627 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600001100000000020obj.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600004700000000032obj/Particle_Vines_Using_PointSOP.inittype = geo matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600004600000001077obj/Particle_Vines_Using_PointSOP.defobjflags objflags = origin off pretransform UT_DMatrix4 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 comment "This network creates a vine type effect using the point sop to create particle curves." position -3.19116 4.13605 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render off highlight off unload off savedata off compress off exposed on selectable on inputs { } stat { create 1211972358 modify 1213258946 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005700000012510obj/Particle_Vines_Using_PointSOP.spareparmdef group { name stdswitcher5 label Transform parm { name "keeppos" baseparm export none } parm { name "pre_xform" baseparm export none } parm { name "xOrd" baseparm export none } parm { name "rOrd" baseparm export none } parm { name "t" baseparm export all } parm { name "r" baseparm export all } parm { name "s" baseparm export none } parm { name "p" baseparm export none } parm { name "scale" baseparm export none } parm { name "lookatpath" baseparm export none } parm { name "lookup" baseparm export none } parm { name "pathobjpath" baseparm export none } parm { name "roll" baseparm export none } parm { name "pos" baseparm export none } parm { name "uparmtype" baseparm export none } parm { name "pathorient" baseparm export none } parm { name "up" baseparm export none } parm { name "bank" baseparm export none } } group { name stdswitcher5_1 label Material parm { name "shop_materialpath" baseparm joinnext export none } parm { name "shop_materialopts" baseparm export none } } group { name stdswitcher5_2 label Render parm { name "tdisplay" baseparm export none } parm { name "display" baseparm export none } parm { name "vm_phantom" label "Phantom" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Render" } } parm { name "vm_renderable" label "Renderable" type toggle default { "1" } range { 0 1 } export none parmtag { "spare_category" "Render" } } group { name folder0 label Shading parm { name "categories" label "Categories" type string default { "" } range { 0 1 } export none parmtag { "spare_category" "Shading" } } parm { name "reflectmask" label "Reflection Mask" type oplist default { "*" } range { 0 1 } export none parmtag { "oprelative" "/obj" } parmtag { "opfilter" "!!OBJ/GEOMETRY!!" } parmtag { "spare_category" "Shading" } parmtag { "opexpand" "1" } } parm { name "lightmask" label "Light Mask" type oplist default { "*" } range { 0 1 } export none parmtag { "oprelative" "/obj" } parmtag { "opfilter" "!!OBJ/LIGHT!!" } parmtag { "spare_category" "Shading" } parmtag { "opexpand" "1" } } parm { name "vm_matte" label "Matte shading" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Shading" } } } group { name folder0_1 label Sampling parm { name "geo_velocityblur" label "Geometry Velocity Blur" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Sampling" } } } group { name folder0_2 label Dicing parm { name "vm_shadingquality" label "Shading Quality" type float default { "1" } range { 0 10 } export none parmtag { "spare_category" "Dicing" } } parm { name "vm_rayshadingquality" label "Ray Shading Quality" type float default { "1" } range { 0 10 } export none parmtag { "spare_category" "Dicing" } } } group { name folder0_3 label Geometry parm { name "vm_rmbackface" label "Backface Removal" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "shop_geometrypath" label "Procedural Shader" type oppath default { "" } range { 0 1 } export none parmtag { "oprelative" "." } parmtag { "opfilter" "!!SHOP/GEOMETRY!!" } parmtag { "spare_category" "Geometry" } } parm { name "vm_rendersubd" label "Polygons As Subdivision" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_renderpoints" label "Render As Points" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_metavolume" label "Metaballs as Volume" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_coving" label "Coving" type integer default { "1" } menu { "0" "Disable Coving" "1" "Coving for displacement/sub-d" "2" "Coving for all primitives" } range { 0 10 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_computeN" label "Automatically Compute Normals" type toggle default { "1" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } } } group { name stdswitcher5_3 label Misc parm { name "use_dcolor" baseparm export none } parm { name "dcolor" baseparm export none } parm { name "picking" baseparm export none } parm { name "pickscript" baseparm export none } parm { name "caching" baseparm export none } parm { name "vport_shadeopen" baseparm export none } parm { name "vport_displayassubdiv" baseparm invisible export none } } 0707070000010000000006660000000000000000010000001102415664600004700000003076obj/Particle_Vines_Using_PointSOP.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) keeppos [ 0 locks=0 ] ( "off" ) pre_xform [ 0 locks=0 ] ( 0 ) xOrd [ 0 locks=0 ] ( "srt" ) rOrd [ 0 locks=0 ] ( "xyz" ) t [ 0 locks=0 ] ( 0 0 0 ) r [ 0 locks=0 ] ( 0 0 0 ) s [ 0 locks=0 ] ( 1 1 1 ) p [ 0 locks=0 ] ( 0 0 0 ) scale [ 0 locks=0 ] ( 1 ) lookatpath [ 0 locks=0 ] ( "" ) lookup [ 0 locks=0 ] ( on ) pathobjpath [ 0 locks=0 ] ( "" ) roll [ 0 locks=0 ] ( 0 ) pos [ 0 locks=0 ] ( 0 ) uparmtype [ 0 locks=0 ] ( "arc" ) pathorient [ 0 locks=0 ] ( 1 ) up [ 0 locks=0 ] ( 0 1 0 ) bank [ 0 locks=0 ] ( 0 ) shop_materialpath [ 0 locks=0 ] ( "" ) shop_materialopts [ 0 locks=0 ] ( 0 ) tdisplay [ 0 locks=0 ] ( "off" ) display [ 0 locks=0 ] ( 1 ) use_dcolor [ 0 locks=0 ] ( "off" ) dcolor [ 0 locks=0 ] ( 1 1 1 ) picking [ 0 locks=0 ] ( "on" ) pickscript [ 0 locks=0 ] ( "" ) caching [ 0 locks=0 ] ( "off" ) vport_shadeopen [ 0 locks=0 ] ( "off" ) vport_displayassubdiv [ 0 locks=0 ] ( "off" ) stdswitcher5 [ 0 locks=0 ] ( 0 0 0 0 ) vm_phantom [ 0 locks=0 ] ( "off" ) vm_renderable [ 0 locks=0 ] ( "on" ) folder0 [ 0 locks=0 ] ( 0 0 0 0 ) categories [ 0 locks=0 ] ( "" ) reflectmask [ 0 locks=0 ] ( * ) lightmask [ 0 locks=0 ] ( * ) vm_matte [ 0 locks=0 ] ( "off" ) geo_velocityblur [ 0 locks=0 ] ( "off" ) vm_shadingquality [ 0 locks=0 ] ( 1 ) vm_rayshadingquality [ 0 locks=0 ] ( 1 ) vm_rmbackface [ 0 locks=0 ] ( "off" ) shop_geometrypath [ 0 locks=0 ] ( "" ) vm_rendersubd [ 0 locks=0 ] ( "off" ) vm_renderpoints [ 0 locks=0 ] ( "off" ) vm_metavolume [ 0 locks=0 ] ( "off" ) vm_coving [ 0 locks=0 ] ( 1 ) vm_computeN [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600005700000000035obj/Particle_Vines_Using_PointSOP/popnet1.inittype = popnet matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005600000000764obj/Particle_Vines_Using_PointSOP/popnet1.defsopflags sopflags = comment "The particle system will create the point trail in which the curve will be formed." position -2.12005 -0.3221 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 force1 } stat { create 1211972614 modify 1213257496 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005700000000735obj/Particle_Vines_Using_PointSOP/popnet1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 ) timestart [ 0 locks=0 ] ( 0 ) timepreroll [ 0 locks=0 ] ( 0 ) initialstate [ 0 locks=0 ] ( "" ) seed [ 0 locks=0 ] ( 0 ) oversample [ 0 locks=0 ] ( 1 ) maxparticles [ 0 locks=0 ] ( 0 ) rmunused [ 0 locks=0 ] ( "on" ) path1 [ 0 locks=0 ] ( "" ) path2 [ 0 locks=0 ] ( "" ) path3 [ 0 locks=0 ] ( "" ) path4 [ 0 locks=0 ] ( "" ) doppath [ 0 locks=0 ] ( "" ) objpattern [ 0 locks=0 ] ( "" ) geodatapath [ 0 locks=0 ] ( Geometry ) } 0707070000010000000006660000000000000000010000001102415664600007600000000035obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles.inittype = voppop matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600007500000000620obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles.defcomment "" position -3.20386 -1.76502 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 Stop_Pos } stat { create 1213245982 modify 1213246787 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600010600000000732obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles.spareparmdef parm { name "Stop" label "Stop Speed" type float default { "0" } range { 0 1 } export none } parm { name "activate" baseparm export none } parm { name "cacheincoming" baseparm export none } parm { name "vex_source" baseparm export none } parm { name "vex_numthreads" baseparm export none } parm { name "vop_compiler" baseparm export none } parm { name "vop_forcecompile" baseparm export none } 0707070000010000000006660000000000000000010000001102415664600007500000000335obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles.chn{ channel Stop { lefttype = extend righttype = extend default = 0.983 flags = 0 segment { length = 0 value = 0.98299998044967651 0.98299998044967651 expr = "if($F < 150,0,1)" } } } 0707070000010000000006660000000000000000010000001102415664600007600000000521obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) cacheincoming [ 0 locks=0 ] ( "off" ) vex_source [ 0 locks=0 ] ( "" ) vex_numthreads [ 0 locks=0 ] ( "none" ) vop_compiler [ 0 locks=0 ] ( "vcc -q $VOP_INCLUDEPATH -o $VOP_OBJECTFILE -e $VOP_ERRORFILE $VOP_SOURCEFILE" ) vop_forcecompile [ 0 locks=0 ] ( 0 ) Stop [ 8 locks=0 ] ( [ Stop 0 ] ) } 0707070000010000000006660000000000000000010000001102415664600010600000000035obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/output1.inittype = output matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600010500000000664obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/output1.defcomment "" position 2.3636 0.73636 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render on highlight off unload off savedata off compress off exposed on lowdetail off mediumdetail off highdetail on inputs { 0 mix1 } stat { create 1213245982 modify 1213246093 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600010600000000125obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/output1.parm{ version 0.8 outputcodelast [ 0 locks=0 ] ( "on" ) parmorder [ 0 locks=0 ] ( "" ) } 0707070000010000000006660000000000000000010000001102415664600010600000000035obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/global1.inittype = global matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600010500000000660obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/global1.defcomment "" position -3.16829 2.54504 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on lowdetail off mediumdetail off highdetail on inputs { } stat { create 1213245997 modify 1213246007 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600010600000000113obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/global1.parm{ version 0.8 usemenu [ 0 locks=0 ] ( "on" ) varname [ 0 locks=0 ] ( P ) } 0707070000010000000006660000000000000000010000001102415664600011400000000043obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/importattrib1.inittype = importattrib matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600011300000000661obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/importattrib1.defcomment "" position -3.08627 0.898201 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on lowdetail off mediumdetail off highdetail on inputs { } stat { create 1213246023 modify 1213246093 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600011400000000161obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/importattrib1.parm{ version 0.8 signature [ 0 locks=0 ] ( default ) attrib [ 0 locks=0 ] ( pos ) input_index [ 0 locks=0 ] ( 0 ) } 0707070000010000000006660000000000000000010000001102415664600011100000000040obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/parameter1.inittype = parameter matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600011000000000662obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/parameter1.defcomment "" position -3.00693 -0.491798 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on lowdetail off mediumdetail off highdetail on inputs { } stat { create 1213246027 modify 1213246040 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600011100000002357obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/parameter1.parm{ version 0.8 parmtype [ 0 locks=0 ] ( "float" ) parmname [ 0 locks=0 ] ( Stop ) useasparmdefiner [ 0 locks=0 ] ( "off" ) parmlabel [ 0 locks=0 ] ( "Stop Speed" ) parmuniform [ 0 locks=0 ] ( "on" ) usebound [ 0 locks=0 ] ( "off" ) exportparm [ 0 locks=0 ] ( "off" ) invisible [ 0 locks=0 ] ( "off" ) providemenu [ 0 locks=0 ] ( "off" ) menuchoices [ 0 locks=0 ] ( "" ) disablewhen [ 0 locks=0 ] ( "" ) callback [ 0 locks=0 ] ( "" ) help [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 0 0 ) floatdef [ 0 locks=0 ] ( 0 ) rangeflt [ 0 locks=0 ] ( 0 1 ) intdef [ 0 locks=0 ] ( 0 ) rangeint [ 0 locks=0 ] ( 0 10 ) toggledef [ 0 locks=0 ] ( "off" ) angledef [ 0 locks=0 ] ( 0 ) float3def [ 0 locks=0 ] ( 0 0 0 ) vectordef [ 0 locks=0 ] ( 0 0 0 ) normaldef [ 0 locks=0 ] ( 0 0 0 ) pointdef [ 0 locks=0 ] ( 0 0 0 ) directiondef [ 0 locks=0 ] ( 1 0 0 ) float4def [ 0 locks=0 ] ( 0 0 0 0 ) float9def [ 0 locks=0 ] ( 1 0 0 0 1 0 0 0 1 ) float16def [ 0 locks=0 ] ( 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 ) stringdef [ 0 locks=0 ] ( "" ) stringtype [ 0 locks=0 ] ( off ) opfilter [ 0 locks=0 ] ( !!OBJ/LIGHT!! ) filedef [ 0 locks=0 ] ( "" ) imagedef [ 0 locks=0 ] ( "" ) geometrydef [ 0 locks=0 ] ( "" ) colordef [ 0 locks=0 ] ( 0 0 0 ) color4def [ 0 locks=0 ] ( 0 0 0 0 ) } 0707070000010000000006660000000000000000010000001102415664600010300000000032obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/mix1.inittype = mix matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600010200000000735obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/mix1.defcomment "" position -0.352003 1.24927 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on lowdetail off mediumdetail off highdetail on inputs { 0 global1 1 importattrib1 1 2 parameter1 } stat { create 1213246046 modify 1213247416 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600010300000001470obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles/mix1.parm{ version 0.8 signature [ 0 locks=0 ] ( v ) bias [ 0 locks=0 ] ( 0.5 ) gf [ 0 locks=0 ] ( 0 0 0 0 ) input1 [ 0 locks=0 ] ( 0 ) input2 [ 0 locks=0 ] ( 1 ) input1_v [ 0 locks=0 ] ( 0 0 0 ) input2_v [ 0 locks=0 ] ( 1 1 1 ) input1_p [ 0 locks=0 ] ( 0 0 0 ) input2_p [ 0 locks=0 ] ( 1 1 1 ) input1_n [ 0 locks=0 ] ( 0 0 0 ) input2_n [ 0 locks=0 ] ( 1 1 1 ) input1_c [ 0 locks=0 ] ( 0 0 0 ) input2_c [ 0 locks=0 ] ( 1 1 1 ) input1_v4 [ 0 locks=0 ] ( 0 0 0 0 ) input2_v4 [ 0 locks=0 ] ( 1 1 1 1 ) input1_uf [ 0 locks=0 ] ( 0 ) input2_uf [ 0 locks=0 ] ( 1 ) input1_uv [ 0 locks=0 ] ( 0 0 0 ) input2_uv [ 0 locks=0 ] ( 1 1 1 ) input1_up [ 0 locks=0 ] ( 0 0 0 ) input2_up [ 0 locks=0 ] ( 1 1 1 ) input1_un [ 0 locks=0 ] ( 0 0 0 ) input2_un [ 0 locks=0 ] ( 1 1 1 ) input1_uc [ 0 locks=0 ] ( 0 0 0 ) input2_uc [ 0 locks=0 ] ( 1 1 1 ) } 0707070000010000000006660000000000000000010000001102415664600001000000000570vex.defcomment "" position 5.5 2.5 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215026 modify 1206215027 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600001100000000020vex.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600005100000000032obj/Particle_Curves_Using_Trail_SOP.inittype = geo matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005000000001061obj/Particle_Curves_Using_Trail_SOP.defobjflags objflags = origin off pretransform UT_DMatrix4 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 comment "This network is an example of creating particle trails using the Trail SOP" position -3.13117 6.48587 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render off highlight off unload off savedata off compress off exposed on selectable on inputs { } stat { create 1206215031 modify 1213247388 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006100000013750obj/Particle_Curves_Using_Trail_SOP.spareparmdef group { name standardfolder label Standard group { name stdswitcher5 label Transform parm { name "keeppos" baseparm joinnext export none } parm { name "pre_xform" baseparm export none } parm { name "xOrd" baseparm joinnext export none } parm { name "rOrd" baseparm export none } parm { name "t" baseparm export all } parm { name "r" baseparm export all } parm { name "s" baseparm export none } parm { name "p" baseparm export none } parm { name "scale" baseparm export none } parm { name "lookatpath" baseparm export none } parm { name "lookup" baseparm export none } parm { name "pathobjpath" baseparm export none } parm { name "roll" baseparm export none } parm { name "pos" baseparm export none } parm { name "uparmtype" baseparm export none } parm { name "pathorient" baseparm export none } parm { name "up" baseparm export none } parm { name "bank" baseparm export none } } group { name stdswitcher5_1 label Material parm { name "shop_materialpath" baseparm joinnext export none } parm { name "shop_materialopts" baseparm export none } } group { name stdswitcher5_2 label Render parm { name "tdisplay" baseparm export none } parm { name "display" baseparm export none } } group { name stdswitcher5_3 label Misc tabbreak parm { name "use_dcolor" baseparm export none } parm { name "dcolor" baseparm export none } parm { name "picking" baseparm export none } parm { name "pickscript" baseparm export none } parm { name "caching" baseparm export none } parm { name "vport_shadeopen" baseparm export none } parm { name "vport_displayassubdiv" baseparm invisible export none } } } group { name standardfolder_1 label Spare group { name stdswitcher6 label Transform } group { name stdswitcher6_1 label Material } group { name stdswitcher6_2 label Render parm { name "vm_phantom" label "Phantom" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Render" } } parm { name "vm_renderable" label "Renderable" type toggle default { "1" } range { 0 1 } export none parmtag { "spare_category" "Render" } } group { name folder0 label Shading parm { name "categories" label "Categories" type string default { "" } range { 0 1 } export none parmtag { "spare_category" "Shading" } } parm { name "reflectmask" label "Reflection Mask" type oplist default { "*" } range { 0 1 } export none parmtag { "oprelative" "/obj" } parmtag { "opfilter" "!!OBJ/GEOMETRY!!" } parmtag { "spare_category" "Shading" } parmtag { "opexpand" "1" } } parm { name "lightmask" label "Light Mask" type oplist default { "*" } range { 0 1 } export none parmtag { "oprelative" "/obj" } parmtag { "opfilter" "!!OBJ/LIGHT!!" } parmtag { "spare_category" "Shading" } parmtag { "opexpand" "1" } } parm { name "vm_matte" label "Matte shading" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Shading" } } } group { name folder0_1 label Sampling parm { name "geo_velocityblur" label "Geometry Velocity Blur" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Sampling" } } } group { name folder0_2 label Dicing parm { name "vm_shadingquality" label "Shading Quality" type float default { "1" } range { 0 10 } export none parmtag { "spare_category" "Dicing" } } parm { name "vm_rayshadingquality" label "Ray Shading Quality" type float default { "1" } range { 0 10 } export none parmtag { "spare_category" "Dicing" } } } group { name folder0_3 label Geometry parm { name "vm_rmbackface" label "Backface Removal" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "shop_geometrypath" label "Procedural Shader" type oppath default { "" } range { 0 1 } export none parmtag { "oprelative" "." } parmtag { "opfilter" "!!SHOP/GEOMETRY!!" } parmtag { "spare_category" "Geometry" } } parm { name "vm_rendersubd" label "Polygons As Subdivision" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_renderpoints" label "Render As Points" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_metavolume" label "Metaballs as Volume" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_coving" label "Coving" type integer default { "1" } menu { "0" "Disable Coving" "1" "Coving for displacement/sub-d" "2" "Coving for all primitives" } range { 0 10 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_computeN" label "Automatically Compute Normals" type toggle default { "1" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } } } group { name stdswitcher6_3 label Misc } } 0707070000010000000006660000000000000000010000001102415664600005100000003212obj/Particle_Curves_Using_Trail_SOP.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) keeppos [ 0 locks=0 ] ( "off" ) pre_xform [ 0 locks=0 ] ( 0 ) xOrd [ 0 locks=0 ] ( "srt" ) rOrd [ 0 locks=0 ] ( "xyz" ) t [ 0 locks=0 ] ( 0 0 0 ) r [ 0 locks=0 ] ( 0 0 0 ) s [ 0 locks=0 ] ( 1 1 1 ) p [ 0 locks=0 ] ( 0 0 0 ) scale [ 0 locks=0 ] ( 1 ) lookatpath [ 0 locks=0 ] ( "" ) lookup [ 0 locks=0 ] ( on ) pathobjpath [ 0 locks=0 ] ( "" ) roll [ 0 locks=0 ] ( 0 ) pos [ 0 locks=0 ] ( 0 ) uparmtype [ 0 locks=0 ] ( "arc" ) pathorient [ 0 locks=0 ] ( 1 ) up [ 0 locks=0 ] ( 0 1 0 ) bank [ 0 locks=0 ] ( 0 ) shop_materialpath [ 0 locks=0 ] ( "" ) shop_materialopts [ 0 locks=0 ] ( 0 ) tdisplay [ 0 locks=0 ] ( "off" ) display [ 0 locks=0 ] ( 1 ) use_dcolor [ 0 locks=0 ] ( "off" ) dcolor [ 0 locks=0 ] ( 1 1 1 ) picking [ 0 locks=0 ] ( "on" ) pickscript [ 0 locks=0 ] ( "" ) caching [ 0 locks=0 ] ( "off" ) vport_shadeopen [ 0 locks=0 ] ( "off" ) vport_displayassubdiv [ 0 locks=0 ] ( "off" ) standardfolder [ 0 locks=0 ] ( 0 0 ) stdswitcher5 [ 0 locks=0 ] ( 0 0 0 0 ) stdswitcher6 [ 0 locks=0 ] ( 0 0 0 0 ) vm_phantom [ 0 locks=0 ] ( "off" ) vm_renderable [ 0 locks=0 ] ( "on" ) folder0 [ 0 locks=0 ] ( 0 0 0 0 ) categories [ 0 locks=0 ] ( "" ) reflectmask [ 0 locks=0 ] ( * ) lightmask [ 0 locks=0 ] ( * ) vm_matte [ 0 locks=0 ] ( "off" ) geo_velocityblur [ 0 locks=0 ] ( "off" ) vm_shadingquality [ 0 locks=0 ] ( 1 ) vm_rayshadingquality [ 0 locks=0 ] ( 1 ) vm_rmbackface [ 0 locks=0 ] ( "off" ) shop_geometrypath [ 0 locks=0 ] ( "" ) vm_rendersubd [ 0 locks=0 ] ( "off" ) vm_renderpoints [ 0 locks=0 ] ( "off" ) vm_metavolume [ 0 locks=0 ] ( "off" ) vm_coving [ 0 locks=0 ] ( 1 ) vm_computeN [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600005700000000033obj/Particle_Curves_Using_Trail_SOP/grid1.inittype = grid matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005600000000712obj/Particle_Curves_Using_Trail_SOP/grid1.defsopflags sopflags = comment "The grid acts as an emitter source for the particles" position 0.582353 1.23529 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215040 modify 1213142234 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005700000000516obj/Particle_Curves_Using_Trail_SOP/grid1.parm{ version 0.8 type [ 0 locks=0 ] ( "poly" ) surftype [ 0 locks=0 ] ( "quads" ) orient [ 0 locks=0 ] ( "zx" ) size [ 0 locks=0 ] ( 10 10 ) t [ 0 locks=0 ] ( 0 0 0 ) rows [ 0 locks=0 ] ( 10 ) cols [ 0 locks=0 ] ( 10 ) orderu [ 0 locks=0 ] ( 4 ) orderv [ 0 locks=0 ] ( 4 ) interpu [ 0 locks=0 ] ( "on" ) interpv [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600006100000000035obj/Particle_Curves_Using_Trail_SOP/popnet1.inittype = popnet matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006000000001060obj/Particle_Curves_Using_Trail_SOP/popnet1.defsopflags sopflags = comment "A simple particle network. The interact pop is used to add repulsive force between particles. This keeps the line we create from intersecting." position 0.358824 0.0759527 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 grid1 } stat { create 1206215047 modify 1213144348 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006100000000735obj/Particle_Curves_Using_Trail_SOP/popnet1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 ) timestart [ 0 locks=0 ] ( 0 ) timepreroll [ 0 locks=0 ] ( 0 ) initialstate [ 0 locks=0 ] ( "" ) seed [ 0 locks=0 ] ( 0 ) oversample [ 0 locks=0 ] ( 1 ) maxparticles [ 0 locks=0 ] ( 0 ) rmunused [ 0 locks=0 ] ( "on" ) path1 [ 0 locks=0 ] ( "" ) path2 [ 0 locks=0 ] ( "" ) path3 [ 0 locks=0 ] ( "" ) path4 [ 0 locks=0 ] ( "" ) doppath [ 0 locks=0 ] ( "" ) objpattern [ 0 locks=0 ] ( "" ) geodatapath [ 0 locks=0 ] ( Geometry ) } 0707070000010000000006660000000000000000010000001102415664600007100000000035obj/Particle_Curves_Using_Trail_SOP/popnet1/source1.inittype = source matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600007000000002346obj/Particle_Curves_Using_Trail_SOP/popnet1/source1.defcomment "SOURCE: The geomtry source menu has been set to \"Use First Context Geometry.\" This allows particles to be emitted from any geomtry connected into the first input of the Pop Network SOP. The emission type is set to randomly create particles from the surface of the geomtry. BIRTH: The Impulse Activitation is set to $FF == 1 so that particles are only emitted at frame 1 of the simulation. Impulse birth rate is set to 50 so that 50 particles are born on frame one. By using impulse particles we birth said amount on each frame. Where constant birthing is based on time and not frame. Therefore by frame 24 or 1 second 50 particles would be born. ATTRIBUTES: Here I have changed the Initial Velocity from inherited to set initial. Since the grid had no normals, or velocity to it there was none to inherit. Changing this allows user defined velocities. " position 3.02329 4.22364 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215050 modify 1213143155 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600007000000000264obj/Particle_Curves_Using_Trail_SOP/popnet1/source1.chn{ channel impulseactivate { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $FF==1 } } } 0707070000010000000006660000000000000000010000001102415664600007100000002160obj/Particle_Curves_Using_Trail_SOP/popnet1/source1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 1 1 1 1 ) emittype [ 0 locks=0 ] ( "surfacerandom" ) usecontextgeo [ 0 locks=0 ] ( "first" ) soppath [ 0 locks=0 ] ( "" ) source [ 0 locks=0 ] ( "" ) ignorexform [ 0 locks=0 ] ( "off" ) distributionattrib [ 0 locks=0 ] ( area ) threshold [ 0 locks=0 ] ( 1 ) densitymin [ 0 locks=0 ] ( 0 ) usedensity [ 0 locks=0 ] ( "off" ) impulseactivate [ 8 locks=0 ] ( [ impulseactivate 1 ] ) impulserate [ 0 locks=0 ] ( 50 ) constantactivate [ 0 locks=0 ] ( 0 ) constantrate [ 0 locks=0 ] ( 0 ) prob [ 0 locks=0 ] ( 1 1 ) group [ 0 locks=0 ] ( "" ) preservegroup [ 0 locks=0 ] ( "off" ) life [ 0 locks=0 ] ( 100 ) lifevar [ 0 locks=0 ] ( 0 ) accuratebirths [ 0 locks=0 ] ( "off" ) attrib [ 0 locks=0 ] ( * ) createlocalvar [ 0 locks=0 ] ( "off" ) initvel [ 0 locks=0 ] ( "set" ) inheritvel [ 0 locks=0 ] ( 1 ) vel [ 0 locks=0 ] ( 0 2 0 ) var [ 0 locks=0 ] ( 1 0.100000001 1 ) doellipse [ 0 locks=0 ] ( "on" ) doid [ 0 locks=0 ] ( "on" ) dogen [ 0 locks=0 ] ( "off" ) doorigin [ 0 locks=0 ] ( "off" ) originuse [ 0 locks=0 ] ( "indexgeo" ) originindex [ 0 locks=0 ] ( 0 ) dospeed [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600007000000000034obj/Particle_Curves_Using_Trail_SOP/popnet1/force1.inittype = force matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006700000000717obj/Particle_Curves_Using_Trail_SOP/popnet1/force1.defcomment "The force pop was added to just apply some noise to the particles. " position 3.04456 3.17938 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 source1 } stat { create 1206215108 modify 1213143157 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600007000000001013obj/Particle_Curves_Using_Trail_SOP/popnet1/force1.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 1 1 ) forcepath [ 0 locks=0 ] ( "" ) force [ 0 locks=0 ] ( 0 0 0 ) scale [ 0 locks=0 ] ( 1 ) ignoremass [ 0 locks=0 ] ( "off" ) overridemass [ 0 locks=0 ] ( "off" ) mass [ 0 locks=0 ] ( 1 ) seed [ 0 locks=0 ] ( 1 ) turb [ 0 locks=0 ] ( 1 ) rough [ 0 locks=0 ] ( 0.0500000007 ) atten [ 0 locks=0 ] ( 1 ) freq [ 0 locks=0 ] ( 1 1 1 ) amp [ 0 locks=0 ] ( 4 4 4 ) offset [ 0 locks=0 ] ( 0 0 0 ) ntype [ 0 locks=0 ] ( "fast" ) } 0707070000010000000006660000000000000000010000001102415664600007300000000037obj/Particle_Curves_Using_Trail_SOP/popnet1/interact1.inittype = interact matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600007200000001070obj/Particle_Curves_Using_Trail_SOP/popnet1/interact1.defcomment "The interact pop will make particles repel or attract to other particles. Since the same charge is being applied to all the particles they have like charges and will repel. " position 3.01189 1.99792 cachesize 1 flags = lock off model off template on footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 force1 } stat { create 1206215111 modify 1213144727 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600007300000001253obj/Particle_Curves_Using_Trail_SOP/popnet1/interact1.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 ) usepradius [ 0 locks=0 ] ( "instance" ) pscale [ 0 locks=0 ] ( 1 ) pradius [ 0 locks=0 ] ( 1 ) useeradius [ 0 locks=0 ] ( "partrad" ) escale [ 0 locks=0 ] ( 1 ) eradius [ 0 locks=0 ] ( 1 ) overlap [ 0 locks=0 ] ( "nothing" ) influence [ 0 locks=0 ] ( "center" ) chargebehavior [ 0 locks=0 ] ( "both" ) exponent [ 0 locks=0 ] ( 10 ) multiplier [ 0 locks=0 ] ( 0.5 0.5 0.5 ) ignorecharge [ 0 locks=0 ] ( "off" ) overridecharge [ 0 locks=0 ] ( "off" ) charge [ 0 locks=0 ] ( -1 ) ignoremass [ 0 locks=0 ] ( "off" ) overridemass [ 0 locks=0 ] ( "off" ) mass [ 0 locks=0 ] ( 1 ) } 0707070000010000000006660000000000000000010000001102415664600007000000000034obj/Particle_Curves_Using_Trail_SOP/popnet1/color1.inittype = color matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006700000001737obj/Particle_Curves_Using_Trail_SOP/popnet1/color1.defcomment "Color is added just for visualization. The lookup value for the color ramp is based on the $LIFE attribute. This means as the particles get older their color changes in correlation to the ramp. The particle life expectancy currently is 100. For each second the particle is aged and therefore its lifespan is 100 seconds. To allow for the color to cycle through the ramp quicker $LIFE is multiplied by 10. **To see the age, and color change in effect right click on the node and click on spreadsheet. This will show a spreadsheet of the particle attributes and their changes over time." position 3.02061 0.856552 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render on highlight off unload off savedata off compress off exposed on inputs { 0 interact1 } stat { create 1211971933 modify 1213143938 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006700000002023obj/Particle_Curves_Using_Trail_SOP/popnet1/color1.chn{ channel diffr { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CR } } channel diffg { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CG } } channel diffb { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CB } } channel colorrampu { lefttype = extend righttype = extend default = 0.004 flags = 0 segment { length = 0 value = 0.0040000001899898052 0.0040000001899898052 expr = $LIFE*10 } } channel alpha { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CA } } channel alpharampu { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "$F / $NFRAMES" } } } 0707070000010000000006660000000000000000010000001102415664600007000000001322obj/Particle_Curves_Using_Trail_SOP/popnet1/color1.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) mswitcher [ 0 locks=0 ] ( 0 0 ) cswitcher [ 0 locks=0 ] ( 2 2 2 2 ) diff [ 0 locks=0 ] ( [ diffr 0 ] [ diffg 0 ] [ diffb 0 ] ) colorramp [ 0 locks=0 ] ( 0.463333011 1 0 1 ) colorrampu [ 8 locks=0 ] ( [ colorrampu 0 ] ) colorpath [ 0 locks=0 ] ( "" ) colorcopu [ 0 locks=0 ] ( 0 ) colorcopv [ 0 locks=0 ] ( 0 ) aswitcher [ 0 locks=0 ] ( 0 0 0 0 0 ) alpha [ 0 locks=0 ] ( [ alpha 0 ] ) alpharamp [ 0 locks=0 ] ( 0.463333011 1 0 1 ) alpharampu [ 0 locks=0 ] ( [ alpharampu 0.479999989 ] ) alphapath [ 0 locks=0 ] ( "" ) alphacopu [ 0 locks=0 ] ( 0 ) alphacopv [ 0 locks=0 ] ( 0 ) alpha0speed [ 0 locks=0 ] ( 100 ) alpha1speed [ 0 locks=0 ] ( 0 ) } 0707070000010000000006660000000000000000010000001102415664600006700000000145obj/Particle_Curves_Using_Trail_SOP/popnet1/color1.rmp4 0 1 0.0994843 0 1 0.364035 0 0.0302478 0.698026 1 0.657895 0.440789 1 0.918915 1 1 0.463333 1 0 1 0707070000010000000006660000000000000000010000001102415664600006200000000042obj/Particle_Curves_Using_Trail_SOP/popnet1.order4 source1 force1 interact1 color1 0707070000010000000006660000000000000000010000001102415664600006000000000002obj/Particle_Curves_Using_Trail_SOP/popnet1.net1 0707070000010000000006660000000000000000010000001102415664600006000000000034obj/Particle_Curves_Using_Trail_SOP/trail1.inittype = trail matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005700000002130obj/Particle_Curves_Using_Trail_SOP/trail1.defsopflags sopflags = comment "This sop creates a trail on each point over a frame duration. The trail length is based off frame increments. By setting the trail length to $F it creates a continuous curve throughout the duration of the time range. If the value was 5 the trail length would only be the size of the segments created wihtin the first 5 frames. The cache size is the number of frames cached to RAM. Generally it is equal to the trail length. Closed rows is turned off to keep the polygons from connecting to form a mesh. The result is a curve. If crazy stuff starts happening resetting the cache may resolve any issues. That is one downfall of the trail sop the cache should be reset before recooking." position -1.05774 -1.4832 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 popnet1 } stat { create 1206215145 modify 1213247338 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005700000000454obj/Particle_Curves_Using_Trail_SOP/trail1.chn{ channel cache { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $F } } channel length { lefttype = extend righttype = extend default = 10 flags = 0 segment { length = 0 value = 10 10 expr = $F } } } 0707070000010000000006660000000000000000010000001102415664600006000000000455obj/Particle_Curves_Using_Trail_SOP/trail1.parm{ version 0.8 result [ 0 locks=0 ] ( "poly" ) length [ 8 locks=0 ] ( [ length 1 ] ) inc [ 0 locks=0 ] ( 1 ) cache [ 8 locks=0 ] ( [ cache 1 ] ) clear [ 0 locks=0 ] ( 0 ) evalframe [ 0 locks=0 ] ( "on" ) surftype [ 0 locks=0 ] ( "quads" ) close [ 0 locks=0 ] ( "off" ) velscale [ 0 locks=0 ] ( 1 ) } 0707070000010000000006660000000000000000010000001102415664600007100000000045obj/Particle_Curves_Using_Trail_SOP/attribtransfer1.inittype = attribtransfer matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600007000000000765obj/Particle_Curves_Using_Trail_SOP/attribtransfer1.defsopflags sopflags = comment "This transfer the color attribute from pops and applies it to the curve." position 3.33812 -1.99297 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 trail1 1 popnet1 } stat { create 1211972175 modify 1213144573 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600007100000001411obj/Particle_Curves_Using_Trail_SOP/attribtransfer1.parm{ version 0.8 srcgroups [ 0 locks=0 ] ( "" ) srcgrouptype [ 0 locks=0 ] ( "primitive" ) dstgroups [ 0 locks=0 ] ( "" ) dstgrouptype [ 0 locks=0 ] ( "primitive" ) cardswitcher [ 0 locks=0 ] ( 0 0 ) detailattribs [ 0 locks=0 ] ( "off" ) detailattriblist [ 0 locks=0 ] ( "" ) primitiveattribs [ 0 locks=0 ] ( "on" ) primattriblist [ 0 locks=0 ] ( "" ) pointattribs [ 0 locks=0 ] ( "on" ) pointattriblist [ 0 locks=0 ] ( Cd ) vertexattribs [ 0 locks=0 ] ( "off" ) vertexattriblist [ 0 locks=0 ] ( "" ) copyvariable [ 0 locks=0 ] ( "on" ) kernel [ 0 locks=0 ] ( elendt ) kernelradius [ 0 locks=0 ] ( 1 ) maxsamplecount [ 0 locks=0 ] ( 1 ) threshold [ 0 locks=0 ] ( "on" ) thresholddist [ 0 locks=0 ] ( 7.07999992 ) blendwidth [ 0 locks=0 ] ( 0 ) uniformbias [ 0 locks=0 ] ( 0.5 ) } 0707070000010000000006660000000000000000010000001102415664600006300000000033obj/Particle_Curves_Using_Trail_SOP/Wire_Test.inittype = wire matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006200000000651obj/Particle_Curves_Using_Trail_SOP/Wire_Test.defsopflags sopflags = comment "" position -1.57304 -4.12172 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render on highlight off unload off savedata off compress off exposed on inputs { 0 Gradient_Color } stat { create 1213144517 modify 1213258985 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006300000000253obj/Particle_Curves_Using_Trail_SOP/Wire_Test.parm{ version 0.8 group [ 0 locks=0 ] ( "" ) radius [ 0 locks=0 ] ( 0.0500000007 ) corners [ 0 locks=0 ] ( "on" ) caps [ 0 locks=0 ] ( "off" ) remove [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600006500000000033obj/Particle_Curves_Using_Trail_SOP/Solid_Color.inittype = null matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006400000000652obj/Particle_Curves_Using_Trail_SOP/Solid_Color.defsopflags sopflags = comment "" position 3.57031 -3.7558 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 attribtransfer1 } stat { create 1213144523 modify 1213258985 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006500000000063obj/Particle_Curves_Using_Trail_SOP/Solid_Color.parm{ version 0.8 cacheinput [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600007000000000033obj/Particle_Curves_Using_Trail_SOP/Gradient_Color.inittype = null matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006700000000643obj/Particle_Curves_Using_Trail_SOP/Gradient_Color.defsopflags sopflags = comment "" position -1.53238 -2.88163 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 trail1 } stat { create 1213144552 modify 1213144608 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600007000000000063obj/Particle_Curves_Using_Trail_SOP/Gradient_Color.parm{ version 0.8 cacheinput [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005200000000114obj/Particle_Curves_Using_Trail_SOP.order7 grid1 popnet1 trail1 attribtransfer1 Wire_Test Solid_Color Gradient_Color 0707070000010000000006660000000000000000010000001102415664600005000000000002obj/Particle_Curves_Using_Trail_SOP.net1 0707070000010000000006660000000000000000010000001102415664600004200000000032obj/Particle_Trail_Using_Add.inittype = geo matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600004100000001075obj/Particle_Trail_Using_Add.defobjflags objflags = origin off pretransform UT_DMatrix4 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 comment "This network contains an example of creating trails using particles and the add SOP." position -3.13541 5.33705 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render off highlight off unload off savedata off compress off exposed on selectable on inputs { } stat { create 1211971027 modify 1213245663 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005200000012510obj/Particle_Trail_Using_Add.spareparmdef group { name stdswitcher5 label Transform parm { name "keeppos" baseparm export none } parm { name "pre_xform" baseparm export none } parm { name "xOrd" baseparm export none } parm { name "rOrd" baseparm export none } parm { name "t" baseparm export all } parm { name "r" baseparm export all } parm { name "s" baseparm export none } parm { name "p" baseparm export none } parm { name "scale" baseparm export none } parm { name "lookatpath" baseparm export none } parm { name "lookup" baseparm export none } parm { name "pathobjpath" baseparm export none } parm { name "roll" baseparm export none } parm { name "pos" baseparm export none } parm { name "uparmtype" baseparm export none } parm { name "pathorient" baseparm export none } parm { name "up" baseparm export none } parm { name "bank" baseparm export none } } group { name stdswitcher5_1 label Material parm { name "shop_materialpath" baseparm joinnext export none } parm { name "shop_materialopts" baseparm export none } } group { name stdswitcher5_2 label Render parm { name "tdisplay" baseparm export none } parm { name "display" baseparm export none } parm { name "vm_phantom" label "Phantom" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Render" } } parm { name "vm_renderable" label "Renderable" type toggle default { "1" } range { 0 1 } export none parmtag { "spare_category" "Render" } } group { name folder0 label Shading parm { name "categories" label "Categories" type string default { "" } range { 0 1 } export none parmtag { "spare_category" "Shading" } } parm { name "reflectmask" label "Reflection Mask" type oplist default { "*" } range { 0 1 } export none parmtag { "oprelative" "/obj" } parmtag { "opfilter" "!!OBJ/GEOMETRY!!" } parmtag { "spare_category" "Shading" } parmtag { "opexpand" "1" } } parm { name "lightmask" label "Light Mask" type oplist default { "*" } range { 0 1 } export none parmtag { "oprelative" "/obj" } parmtag { "opfilter" "!!OBJ/LIGHT!!" } parmtag { "spare_category" "Shading" } parmtag { "opexpand" "1" } } parm { name "vm_matte" label "Matte shading" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Shading" } } } group { name folder0_1 label Sampling parm { name "geo_velocityblur" label "Geometry Velocity Blur" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Sampling" } } } group { name folder0_2 label Dicing parm { name "vm_shadingquality" label "Shading Quality" type float default { "1" } range { 0 10 } export none parmtag { "spare_category" "Dicing" } } parm { name "vm_rayshadingquality" label "Ray Shading Quality" type float default { "1" } range { 0 10 } export none parmtag { "spare_category" "Dicing" } } } group { name folder0_3 label Geometry parm { name "vm_rmbackface" label "Backface Removal" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "shop_geometrypath" label "Procedural Shader" type oppath default { "" } range { 0 1 } export none parmtag { "oprelative" "." } parmtag { "opfilter" "!!SHOP/GEOMETRY!!" } parmtag { "spare_category" "Geometry" } } parm { name "vm_rendersubd" label "Polygons As Subdivision" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_renderpoints" label "Render As Points" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_metavolume" label "Metaballs as Volume" type toggle default { "0" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_coving" label "Coving" type integer default { "1" } menu { "0" "Disable Coving" "1" "Coving for displacement/sub-d" "2" "Coving for all primitives" } range { 0 10 } export none parmtag { "spare_category" "Geometry" } } parm { name "vm_computeN" label "Automatically Compute Normals" type toggle default { "1" } range { 0 1 } export none parmtag { "spare_category" "Geometry" } } } } group { name stdswitcher5_3 label Misc parm { name "use_dcolor" baseparm export none } parm { name "dcolor" baseparm export none } parm { name "picking" baseparm export none } parm { name "pickscript" baseparm export none } parm { name "caching" baseparm export none } parm { name "vport_shadeopen" baseparm export none } parm { name "vport_displayassubdiv" baseparm invisible export none } } 0707070000010000000006660000000000000000010000001102415664600004200000003076obj/Particle_Trail_Using_Add.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) keeppos [ 0 locks=0 ] ( "off" ) pre_xform [ 0 locks=0 ] ( 0 ) xOrd [ 0 locks=0 ] ( "srt" ) rOrd [ 0 locks=0 ] ( "xyz" ) t [ 0 locks=0 ] ( 0 0 0 ) r [ 0 locks=0 ] ( 0 0 0 ) s [ 0 locks=0 ] ( 1 1 1 ) p [ 0 locks=0 ] ( 0 0 0 ) scale [ 0 locks=0 ] ( 1 ) lookatpath [ 0 locks=0 ] ( "" ) lookup [ 0 locks=0 ] ( on ) pathobjpath [ 0 locks=0 ] ( "" ) roll [ 0 locks=0 ] ( 0 ) pos [ 0 locks=0 ] ( 0 ) uparmtype [ 0 locks=0 ] ( "arc" ) pathorient [ 0 locks=0 ] ( 1 ) up [ 0 locks=0 ] ( 0 1 0 ) bank [ 0 locks=0 ] ( 0 ) shop_materialpath [ 0 locks=0 ] ( "" ) shop_materialopts [ 0 locks=0 ] ( 0 ) tdisplay [ 0 locks=0 ] ( "off" ) display [ 0 locks=0 ] ( 1 ) use_dcolor [ 0 locks=0 ] ( "off" ) dcolor [ 0 locks=0 ] ( 1 1 1 ) picking [ 0 locks=0 ] ( "on" ) pickscript [ 0 locks=0 ] ( "" ) caching [ 0 locks=0 ] ( "off" ) vport_shadeopen [ 0 locks=0 ] ( "off" ) vport_displayassubdiv [ 0 locks=0 ] ( "off" ) stdswitcher5 [ 0 locks=0 ] ( 0 0 0 0 ) vm_phantom [ 0 locks=0 ] ( "off" ) vm_renderable [ 0 locks=0 ] ( "on" ) folder0 [ 0 locks=0 ] ( 0 0 0 0 ) categories [ 0 locks=0 ] ( "" ) reflectmask [ 0 locks=0 ] ( * ) lightmask [ 0 locks=0 ] ( * ) vm_matte [ 0 locks=0 ] ( "off" ) geo_velocityblur [ 0 locks=0 ] ( "off" ) vm_shadingquality [ 0 locks=0 ] ( 1 ) vm_rayshadingquality [ 0 locks=0 ] ( 1 ) vm_rmbackface [ 0 locks=0 ] ( "off" ) shop_geometrypath [ 0 locks=0 ] ( "" ) vm_rendersubd [ 0 locks=0 ] ( "off" ) vm_renderpoints [ 0 locks=0 ] ( "off" ) vm_metavolume [ 0 locks=0 ] ( "off" ) vm_coving [ 0 locks=0 ] ( 1 ) vm_computeN [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600004700000000032obj/Particle_Trail_Using_Add/box1.inittype = box matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600004600000000740obj/Particle_Trail_Using_Add/box1.defsopflags sopflags = comment "The box is used as source geometry to emit particles from points on it." position 0.294024 0.541147 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1211971098 modify 1213245543 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600004700000000557obj/Particle_Trail_Using_Add/box1.parm{ version 0.8 type [ 0 locks=0 ] ( "poly" ) surftype [ 0 locks=0 ] ( "quads" ) size [ 0 locks=0 ] ( 1 1 1 ) t [ 0 locks=0 ] ( 0 0 0 ) divrate [ 0 locks=0 ] ( 4 4 4 ) orderrate [ 0 locks=0 ] ( 4 4 4 ) dodivs [ 0 locks=0 ] ( "off" ) divs [ 0 locks=0 ] ( 3 3 3 ) rebar [ 0 locks=0 ] ( "off" ) consolidatepts [ 0 locks=0 ] ( "on" ) orientedbbox [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005100000000034obj/Particle_Trail_Using_Add/xform1.inittype = xform matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005000000000723obj/Particle_Trail_Using_Add/xform1.defsopflags sopflags = comment "Expressions applied to give the box some movement." position 0.211671 -0.40003 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 box1 } stat { create 1211971107 modify 1211977715 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005000000001457obj/Particle_Trail_Using_Add/xform1.chn{ channel tx { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = sin($F*4)*10 } } channel ty { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = sin($F*10)*3 } } channel tz { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = cos($F*3)*5 } } channel rx { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = "$F * 4" } } channel ry { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = "$F * 4" } } channel rz { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = "$F * 4" } } } 0707070000010000000006660000000000000000010000001102415664600005100000000733obj/Particle_Trail_Using_Add/xform1.parm{ version 0.8 group [ 0 locks=0 ] ( "" ) grouptype [ 0 locks=0 ] ( "guess" ) xOrd [ 0 locks=0 ] ( "srt" ) rOrd [ 0 locks=0 ] ( "xyz" ) t [ 8 locks=0 ] ( [ tx 0.697564721 ] [ ty 0.520944536 ] [ tz 4.99314737 ] ) r [ 8 locks=0 ] ( [ rx 4 ] [ ry 4 ] [ rz 4 ] ) s [ 0 locks=0 ] ( 1 1 1 ) shear [ 0 locks=0 ] ( 0 0 0 ) p [ 0 locks=0 ] ( 0 0 0 ) scale [ 0 locks=0 ] ( 1 ) updatenmls [ 0 locks=0 ] ( "on" ) vlength [ 0 locks=0 ] ( "on" ) invertxform [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005100000000034obj/Particle_Trail_Using_Add/point1.inittype = group matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005000000000740obj/Particle_Trail_Using_Add/point1.defsopflags sopflags = comment "Create groups to isolate points on box for particle emission." position -0.905975 -1.56474 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight on unload off savedata off compress off exposed on inputs { 0 xform1 } stat { create 1211971260 modify 1211977726 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005000000000213obj/Particle_Trail_Using_Add/point1.chn{ channel rangeend { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $N } } } 0707070000010000000006660000000000000000010000001102415664600005100000003343obj/Particle_Trail_Using_Add/point1.parm{ version 0.8 group [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 ) crname [ 0 locks=0 ] ( point1 ) entity [ 0 locks=0 ] ( "point" ) geotype [ 0 locks=0 ] ( "all" ) switcher2 [ 0 locks=0 ] ( 0 0 0 0 ) groupnumber [ 0 locks=0 ] ( "on" ) ordered [ 0 locks=0 ] ( "off" ) groupop [ 0 locks=0 ] ( "grppattern" ) filter [ 8 locks=0 ] ( 1 ) transfer [ 0 locks=0 ] ( 0 ) pattern [ 0 locks=0 ] ( 0 ) range [ 8 locks=0 ] ( 0 [ rangeend 7 ] ) select [ 0 locks=0 ] ( 1 2 ) groupbounding [ 0 locks=0 ] ( "off" ) boundtype [ 0 locks=0 ] ( "usebbox" ) t [ 0 locks=0 ] ( 0 0 0 ) size [ 0 locks=0 ] ( 1 1 1 ) groupnormal [ 0 locks=0 ] ( "off" ) dir [ 0 locks=0 ] ( 0 0 1 ) angle [ 0 locks=0 ] ( 180 ) camerapath [ 0 locks=0 ] ( "" ) nonplanar [ 0 locks=0 ] ( "off" ) nonplanartol [ 0 locks=0 ] ( 0.00100000005 ) groupedges [ 0 locks=0 ] ( "off" ) doangle [ 0 locks=0 ] ( "off" ) edgeangle [ 0 locks=0 ] ( 20 ) dodepth [ 0 locks=0 ] ( "off" ) edgestep [ 0 locks=0 ] ( 0 ) edgeptgrp [ 0 locks=0 ] ( 0 ) unshared [ 0 locks=0 ] ( "off" ) boundarygroups [ 0 locks=0 ] ( "off" ) combineentity [ 0 locks=0 ] ( "guess" ) grpequal [ 0 locks=0 ] ( "" ) not1 [ 0 locks=0 ] ( "off" ) grp1 [ 0 locks=0 ] ( "" ) op1 [ 0 locks=0 ] ( "none" ) not2 [ 0 locks=0 ] ( "off" ) grp2 [ 0 locks=0 ] ( "" ) op2 [ 0 locks=0 ] ( "none" ) not3 [ 0 locks=0 ] ( "off" ) grp3 [ 0 locks=0 ] ( "" ) op3 [ 0 locks=0 ] ( "none" ) not4 [ 0 locks=0 ] ( "off" ) grp4 [ 0 locks=0 ] ( "" ) switcher3 [ 0 locks=0 ] ( 0 0 0 ) cnvtype [ 0 locks=0 ] ( "toprim" ) convertg [ 0 locks=0 ] ( "" ) cnvtname [ 0 locks=0 ] ( "" ) preserve [ 0 locks=0 ] ( "off" ) primswithallpts [ 0 locks=0 ] ( "off" ) oldname [ 0 locks=0 ] ( "" ) newname [ 0 locks=0 ] ( "" ) destroyname [ 0 locks=0 ] ( "" ) type [ 0 locks=0 ] ( 1 ) } 0707070000010000000006660000000000000000010000001102415664600005100000000034obj/Particle_Trail_Using_Add/point2.inittype = group matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005000000000641obj/Particle_Trail_Using_Add/point2.defsopflags sopflags = comment "" position 1.26235 -1.63418 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight on unload off savedata off compress off exposed on inputs { 0 xform1 } stat { create 1211971260 modify 1211971308 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005000000000213obj/Particle_Trail_Using_Add/point2.chn{ channel rangeend { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $N } } } 0707070000010000000006660000000000000000010000001102415664600005100000003343obj/Particle_Trail_Using_Add/point2.parm{ version 0.8 group [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 ) crname [ 0 locks=0 ] ( point2 ) entity [ 0 locks=0 ] ( "point" ) geotype [ 0 locks=0 ] ( "all" ) switcher2 [ 0 locks=0 ] ( 0 0 0 0 ) groupnumber [ 0 locks=0 ] ( "on" ) ordered [ 0 locks=0 ] ( "off" ) groupop [ 0 locks=0 ] ( "grppattern" ) filter [ 8 locks=0 ] ( 1 ) transfer [ 0 locks=0 ] ( 0 ) pattern [ 0 locks=0 ] ( 6 ) range [ 8 locks=0 ] ( 0 [ rangeend 7 ] ) select [ 0 locks=0 ] ( 1 2 ) groupbounding [ 0 locks=0 ] ( "off" ) boundtype [ 0 locks=0 ] ( "usebbox" ) t [ 0 locks=0 ] ( 0 0 0 ) size [ 0 locks=0 ] ( 1 1 1 ) groupnormal [ 0 locks=0 ] ( "off" ) dir [ 0 locks=0 ] ( 0 0 1 ) angle [ 0 locks=0 ] ( 180 ) camerapath [ 0 locks=0 ] ( "" ) nonplanar [ 0 locks=0 ] ( "off" ) nonplanartol [ 0 locks=0 ] ( 0.00100000005 ) groupedges [ 0 locks=0 ] ( "off" ) doangle [ 0 locks=0 ] ( "off" ) edgeangle [ 0 locks=0 ] ( 20 ) dodepth [ 0 locks=0 ] ( "off" ) edgestep [ 0 locks=0 ] ( 0 ) edgeptgrp [ 0 locks=0 ] ( 0 ) unshared [ 0 locks=0 ] ( "off" ) boundarygroups [ 0 locks=0 ] ( "off" ) combineentity [ 0 locks=0 ] ( "guess" ) grpequal [ 0 locks=0 ] ( "" ) not1 [ 0 locks=0 ] ( "off" ) grp1 [ 0 locks=0 ] ( "" ) op1 [ 0 locks=0 ] ( "none" ) not2 [ 0 locks=0 ] ( "off" ) grp2 [ 0 locks=0 ] ( "" ) op2 [ 0 locks=0 ] ( "none" ) not3 [ 0 locks=0 ] ( "off" ) grp3 [ 0 locks=0 ] ( "" ) op3 [ 0 locks=0 ] ( "none" ) not4 [ 0 locks=0 ] ( "off" ) grp4 [ 0 locks=0 ] ( "" ) switcher3 [ 0 locks=0 ] ( 0 0 0 ) cnvtype [ 0 locks=0 ] ( "toprim" ) convertg [ 0 locks=0 ] ( "" ) cnvtname [ 0 locks=0 ] ( "" ) preserve [ 0 locks=0 ] ( "off" ) primswithallpts [ 0 locks=0 ] ( "off" ) oldname [ 0 locks=0 ] ( "" ) newname [ 0 locks=0 ] ( "" ) destroyname [ 0 locks=0 ] ( "" ) type [ 0 locks=0 ] ( 1 ) } 0707070000010000000006660000000000000000010000001102415664600005200000000035obj/Particle_Trail_Using_Add/popnet1.inittype = popnet matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005100000000761obj/Particle_Trail_Using_Add/popnet1.defsopflags sopflags = comment "The popnet will create a particle trail in which we can create curves out of." position -1.03798 -2.82318 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 point1 } stat { create 1211971304 modify 1213245609 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005200000000735obj/Particle_Trail_Using_Add/popnet1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 ) timestart [ 0 locks=0 ] ( 0 ) timepreroll [ 0 locks=0 ] ( 0 ) initialstate [ 0 locks=0 ] ( "" ) seed [ 0 locks=0 ] ( 0 ) oversample [ 0 locks=0 ] ( 1 ) maxparticles [ 0 locks=0 ] ( 0 ) rmunused [ 0 locks=0 ] ( "on" ) path1 [ 0 locks=0 ] ( "" ) path2 [ 0 locks=0 ] ( "" ) path3 [ 0 locks=0 ] ( "" ) path4 [ 0 locks=0 ] ( "" ) doppath [ 0 locks=0 ] ( "" ) objpattern [ 0 locks=0 ] ( "" ) geodatapath [ 0 locks=0 ] ( Geometry ) } 0707070000010000000006660000000000000000010000001102415664600006200000000035obj/Particle_Trail_Using_Add/popnet1/source1.inittype = source matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006100000000712obj/Particle_Trail_Using_Add/popnet1/source1.defcomment "Remember to set source group to the isolated point from the SOP network." position -2.42136 -2.72947 cachesize 1 flags = lock off model off template on footprint off xray off bypass off display on render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1211971325 modify 1213245625 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006200000002114obj/Particle_Trail_Using_Add/popnet1/source1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) emittype [ 0 locks=0 ] ( "point" ) usecontextgeo [ 0 locks=0 ] ( "first" ) soppath [ 0 locks=0 ] ( "" ) source [ 0 locks=0 ] ( point1 ) ignorexform [ 0 locks=0 ] ( "off" ) distributionattrib [ 0 locks=0 ] ( area ) threshold [ 0 locks=0 ] ( 1 ) densitymin [ 0 locks=0 ] ( 0 ) usedensity [ 0 locks=0 ] ( "off" ) impulseactivate [ 0 locks=0 ] ( 0 ) impulserate [ 0 locks=0 ] ( 0 ) constantactivate [ 0 locks=0 ] ( 1 ) constantrate [ 0 locks=0 ] ( 100 ) prob [ 0 locks=0 ] ( 1 1 ) group [ 0 locks=0 ] ( "" ) preservegroup [ 0 locks=0 ] ( "off" ) life [ 0 locks=0 ] ( 2 ) lifevar [ 0 locks=0 ] ( 0 ) accuratebirths [ 0 locks=0 ] ( "off" ) attrib [ 0 locks=0 ] ( * ) createlocalvar [ 0 locks=0 ] ( "off" ) initvel [ 0 locks=0 ] ( "use" ) inheritvel [ 0 locks=0 ] ( 1 ) vel [ 0 locks=0 ] ( 0 0 0 ) var [ 0 locks=0 ] ( 1 1 1 ) doellipse [ 0 locks=0 ] ( "on" ) doid [ 0 locks=0 ] ( "on" ) dogen [ 0 locks=0 ] ( "off" ) doorigin [ 0 locks=0 ] ( "off" ) originuse [ 0 locks=0 ] ( "indexgeo" ) originindex [ 0 locks=0 ] ( 0 ) dospeed [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600006100000000034obj/Particle_Trail_Using_Add/popnet1/color1.inittype = color matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006000000000660obj/Particle_Trail_Using_Add/popnet1/color1.defcomment "Color is added for visualization." position -2.40969 -3.91186 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 source1 } stat { create 1211971441 modify 1213245698 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006000000002020obj/Particle_Trail_Using_Add/popnet1/color1.chn{ channel diffr { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CR } } channel diffg { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CG } } channel diffb { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CB } } channel colorrampu { lefttype = extend righttype = extend default = 0.004 flags = 0 segment { length = 0 value = 0.0040000001899898052 0.0040000001899898052 expr = $LIFE } } channel alpha { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CA } } channel alpharampu { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "$F / $NFRAMES" } } } 0707070000010000000006660000000000000000010000001102415664600006100000001300obj/Particle_Trail_Using_Add/popnet1/color1.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) mswitcher [ 0 locks=0 ] ( 0 0 ) cswitcher [ 0 locks=0 ] ( 2 2 2 2 ) diff [ 0 locks=0 ] ( [ diffr 0 ] [ diffg 0 ] [ diffb 0 ] ) colorramp [ 0 locks=0 ] ( 1 1 1 1 ) colorrampu [ 8 locks=0 ] ( [ colorrampu 0 ] ) colorpath [ 0 locks=0 ] ( "" ) colorcopu [ 0 locks=0 ] ( 0 ) colorcopv [ 0 locks=0 ] ( 0 ) aswitcher [ 0 locks=0 ] ( 0 0 0 0 0 ) alpha [ 0 locks=0 ] ( [ alpha 0 ] ) alpharamp [ 0 locks=0 ] ( 1 1 1 1 ) alpharampu [ 0 locks=0 ] ( [ alpharampu 0.00285714283 ] ) alphapath [ 0 locks=0 ] ( "" ) alphacopu [ 0 locks=0 ] ( 0 ) alphacopv [ 0 locks=0 ] ( 0 ) alpha0speed [ 0 locks=0 ] ( 100 ) alpha1speed [ 0 locks=0 ] ( 0 ) } 0707070000010000000006660000000000000000010000001102415664600006000000000217obj/Particle_Trail_Using_Add/popnet1/color1.rmp5 0 0.850725 0.995 0 1 0.27193 0.952 0.590561 0.821279 1 0.524123 0.479665 0.548999 0.913 1 0.828947 0.0164684 0.968728 0.0164684 1 1 1 1 1 1 0707070000010000000006660000000000000000010000001102415664600006700000000034obj/Particle_Trail_Using_Add/popnet1/color2_alpha.inittype = color matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006600000000763obj/Particle_Trail_Using_Add/popnet1/color2_alpha.defcomment "Another color is added, but used only for the alpha. This will cause the end of the trail to fade off." position -2.38038 -4.99565 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render on highlight off unload off savedata off compress off exposed on inputs { 0 color1 } stat { create 1211971839 modify 1213245738 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006600000002020obj/Particle_Trail_Using_Add/popnet1/color2_alpha.chn{ channel diffr { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CR } } channel diffg { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CG } } channel diffb { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CB } } channel colorrampu { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "$F / $NFRAMES" } } channel alpha { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CA } } channel alpharampu { lefttype = extend righttype = extend default = 0.004 flags = 0 segment { length = 0 value = 0.0040000001899898052 0.0040000001899898052 expr = $LIFE } } } 0707070000010000000006660000000000000000010000001102415664600006700000001300obj/Particle_Trail_Using_Add/popnet1/color2_alpha.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) mswitcher [ 0 locks=0 ] ( 1 1 ) cswitcher [ 0 locks=0 ] ( 0 0 0 0 ) diff [ 0 locks=0 ] ( [ diffr 0 ] [ diffg 0 ] [ diffb 0 ] ) colorramp [ 0 locks=0 ] ( 1 1 1 0 ) colorrampu [ 0 locks=0 ] ( [ colorrampu 0.00285714283 ] ) colorpath [ 0 locks=0 ] ( "" ) colorcopu [ 0 locks=0 ] ( 0 ) colorcopv [ 0 locks=0 ] ( 0 ) aswitcher [ 0 locks=0 ] ( 2 2 2 2 2 ) alpha [ 0 locks=0 ] ( [ alpha 0 ] ) alpharamp [ 0 locks=0 ] ( 1 1 1 0 ) alpharampu [ 8 locks=0 ] ( [ alpharampu 0 ] ) alphapath [ 0 locks=0 ] ( "" ) alphacopu [ 0 locks=0 ] ( 0 ) alphacopv [ 0 locks=0 ] ( 0 ) alpha0speed [ 0 locks=0 ] ( 100 ) alpha1speed [ 0 locks=0 ] ( 0 ) } 0707070000010000000006660000000000000000010000001102415664600006600000000027obj/Particle_Trail_Using_Add/popnet1/color2_alpha.rmp2 0 0 0 0 1 1 1 1 1 0 0707070000010000000006660000000000000000010000001102415664600005300000000036obj/Particle_Trail_Using_Add/popnet1.order3 source1 color1 color2_alpha 0707070000010000000006660000000000000000010000001102415664600005100000000002obj/Particle_Trail_Using_Add/popnet1.net1 0707070000010000000006660000000000000000010000001102415664600005200000000035obj/Particle_Trail_Using_Add/popnet2.inittype = popnet matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005100000000642obj/Particle_Trail_Using_Add/popnet2.defsopflags sopflags = comment "" position 1.47628 -2.83954 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 point2 } stat { create 1211971304 modify 1211971889 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005200000000735obj/Particle_Trail_Using_Add/popnet2.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 ) timestart [ 0 locks=0 ] ( 0 ) timepreroll [ 0 locks=0 ] ( 0 ) initialstate [ 0 locks=0 ] ( "" ) seed [ 0 locks=0 ] ( 0 ) oversample [ 0 locks=0 ] ( 1 ) maxparticles [ 0 locks=0 ] ( 0 ) rmunused [ 0 locks=0 ] ( "on" ) path1 [ 0 locks=0 ] ( "" ) path2 [ 0 locks=0 ] ( "" ) path3 [ 0 locks=0 ] ( "" ) path4 [ 0 locks=0 ] ( "" ) doppath [ 0 locks=0 ] ( "" ) objpattern [ 0 locks=0 ] ( "" ) geodatapath [ 0 locks=0 ] ( Geometry ) } 0707070000010000000006660000000000000000010000001102415664600006200000000035obj/Particle_Trail_Using_Add/popnet2/source1.inittype = source matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006100000000602obj/Particle_Trail_Using_Add/popnet2/source1.defcomment "" position -2.42136 -2.72947 cachesize 1 flags = lock off model off template on footprint off xray off bypass off display on render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1211971325 modify 1211971407 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006200000002114obj/Particle_Trail_Using_Add/popnet2/source1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) emittype [ 0 locks=0 ] ( "point" ) usecontextgeo [ 0 locks=0 ] ( "first" ) soppath [ 0 locks=0 ] ( "" ) source [ 0 locks=0 ] ( point2 ) ignorexform [ 0 locks=0 ] ( "off" ) distributionattrib [ 0 locks=0 ] ( area ) threshold [ 0 locks=0 ] ( 1 ) densitymin [ 0 locks=0 ] ( 0 ) usedensity [ 0 locks=0 ] ( "off" ) impulseactivate [ 0 locks=0 ] ( 0 ) impulserate [ 0 locks=0 ] ( 0 ) constantactivate [ 0 locks=0 ] ( 1 ) constantrate [ 0 locks=0 ] ( 100 ) prob [ 0 locks=0 ] ( 1 1 ) group [ 0 locks=0 ] ( "" ) preservegroup [ 0 locks=0 ] ( "off" ) life [ 0 locks=0 ] ( 2 ) lifevar [ 0 locks=0 ] ( 0 ) accuratebirths [ 0 locks=0 ] ( "off" ) attrib [ 0 locks=0 ] ( * ) createlocalvar [ 0 locks=0 ] ( "off" ) initvel [ 0 locks=0 ] ( "use" ) inheritvel [ 0 locks=0 ] ( 1 ) vel [ 0 locks=0 ] ( 0 0 0 ) var [ 0 locks=0 ] ( 1 1 1 ) doellipse [ 0 locks=0 ] ( "on" ) doid [ 0 locks=0 ] ( "on" ) dogen [ 0 locks=0 ] ( "off" ) doorigin [ 0 locks=0 ] ( "off" ) originuse [ 0 locks=0 ] ( "indexgeo" ) originindex [ 0 locks=0 ] ( 0 ) dospeed [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600006100000000034obj/Particle_Trail_Using_Add/popnet2/color1.inittype = color matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006000000000617obj/Particle_Trail_Using_Add/popnet2/color1.defcomment "" position -2.49774 -3.86479 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 source1 } stat { create 1211971441 modify 1211971519 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006000000002020obj/Particle_Trail_Using_Add/popnet2/color1.chn{ channel diffr { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CR } } channel diffg { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CG } } channel diffb { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CB } } channel colorrampu { lefttype = extend righttype = extend default = 0.004 flags = 0 segment { length = 0 value = 0.0040000001899898052 0.0040000001899898052 expr = $LIFE } } channel alpha { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CA } } channel alpharampu { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "$F / $NFRAMES" } } } 0707070000010000000006660000000000000000010000001102415664600006100000001276obj/Particle_Trail_Using_Add/popnet2/color1.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) mswitcher [ 0 locks=0 ] ( 0 0 ) cswitcher [ 0 locks=0 ] ( 2 2 2 2 ) diff [ 0 locks=0 ] ( [ diffr 0 ] [ diffg 0 ] [ diffb 0 ] ) colorramp [ 0 locks=0 ] ( 1 1 1 1 ) colorrampu [ 8 locks=0 ] ( [ colorrampu 0 ] ) colorpath [ 0 locks=0 ] ( "" ) colorcopu [ 0 locks=0 ] ( 0 ) colorcopv [ 0 locks=0 ] ( 0 ) aswitcher [ 0 locks=0 ] ( 0 0 0 0 0 ) alpha [ 0 locks=0 ] ( [ alpha 0 ] ) alpharamp [ 0 locks=0 ] ( 1 1 1 1 ) alpharampu [ 0 locks=0 ] ( [ alpharampu 0.275999993 ] ) alphapath [ 0 locks=0 ] ( "" ) alphacopu [ 0 locks=0 ] ( 0 ) alphacopv [ 0 locks=0 ] ( 0 ) alpha0speed [ 0 locks=0 ] ( 100 ) alpha1speed [ 0 locks=0 ] ( 0 ) } 0707070000010000000006660000000000000000010000001102415664600006000000000217obj/Particle_Trail_Using_Add/popnet2/color1.rmp5 0 0.850725 0.995 0 1 0.27193 0.952 0.590561 0.821279 1 0.524123 0.479665 0.548999 0.913 1 0.828947 0.0164684 0.968728 0.0164684 1 1 1 1 1 1 0707070000010000000006660000000000000000010000001102415664600007000000000034obj/Particle_Trail_Using_Add/popnet2/color2__alpha.inittype = color matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006700000000614obj/Particle_Trail_Using_Add/popnet2/color2__alpha.defcomment "" position -2.5743 -5.08247 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render on highlight off unload off savedata off compress off exposed on inputs { 0 color1 } stat { create 1211971839 modify 1211971893 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006700000002020obj/Particle_Trail_Using_Add/popnet2/color2__alpha.chn{ channel diffr { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CR } } channel diffg { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CG } } channel diffb { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CB } } channel colorrampu { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "$F / $NFRAMES" } } channel alpha { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CA } } channel alpharampu { lefttype = extend righttype = extend default = 0.004 flags = 0 segment { length = 0 value = 0.0040000001899898052 0.0040000001899898052 expr = $LIFE } } } 0707070000010000000006660000000000000000010000001102415664600007000000001276obj/Particle_Trail_Using_Add/popnet2/color2__alpha.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) mswitcher [ 0 locks=0 ] ( 1 1 ) cswitcher [ 0 locks=0 ] ( 0 0 0 0 ) diff [ 0 locks=0 ] ( [ diffr 0 ] [ diffg 0 ] [ diffb 0 ] ) colorramp [ 0 locks=0 ] ( 1 1 1 0 ) colorrampu [ 0 locks=0 ] ( [ colorrampu 0.275999993 ] ) colorpath [ 0 locks=0 ] ( "" ) colorcopu [ 0 locks=0 ] ( 0 ) colorcopv [ 0 locks=0 ] ( 0 ) aswitcher [ 0 locks=0 ] ( 2 2 2 2 2 ) alpha [ 0 locks=0 ] ( [ alpha 0 ] ) alpharamp [ 0 locks=0 ] ( 1 1 1 0 ) alpharampu [ 8 locks=0 ] ( [ alpharampu 0 ] ) alphapath [ 0 locks=0 ] ( "" ) alphacopu [ 0 locks=0 ] ( 0 ) alphacopv [ 0 locks=0 ] ( 0 ) alpha0speed [ 0 locks=0 ] ( 100 ) alpha1speed [ 0 locks=0 ] ( 0 ) } 0707070000010000000006660000000000000000010000001102415664600006700000000027obj/Particle_Trail_Using_Add/popnet2/color2__alpha.rmp2 0 0 0 0 1 1 1 1 1 0 0707070000010000000006660000000000000000010000001102415664600005300000000037obj/Particle_Trail_Using_Add/popnet2.order3 source1 color1 color2__alpha 0707070000010000000006660000000000000000010000001102415664600005100000000002obj/Particle_Trail_Using_Add/popnet2.net1 0707070000010000000006660000000000000000010000001102415664600004700000000032obj/Particle_Trail_Using_Add/add1.inittype = add matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600004600000001117obj/Particle_Trail_Using_Add/add1.defsopflags sopflags = comment "The add sop creates the curve. By switching to the polygons tab, and selecting by group, polygons can be created based on input points. In this case it forms the curve. " position -1.13202 -3.92746 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 popnet1 } stat { create 1211971421 modify 1211978315 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600004700000000743obj/Particle_Trail_Using_Add/add1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 1 1 ) keep [ 0 locks=0 ] ( "off" ) points [ 0 locks=0 ] ( 1 ) remove [ 0 locks=0 ] ( "off" ) switcher [ 0 locks=0 ] ( 1 1 ) prims [ 0 locks=0 ] ( 1 ) group [ 0 locks=0 ] ( "" ) add [ 0 locks=0 ] ( "all" ) inc [ 0 locks=0 ] ( 2 ) attrname [ 0 locks=0 ] ( "" ) closedall [ 0 locks=0 ] ( "off" ) usept0 [ 0 locks=0 ] ( "off" ) pt0 [ 0 locks=0 ] ( 0 0 0 ) weight0 [ 0 locks=0 ] ( 1 ) prim0 [ 0 locks=0 ] ( "" ) closed0 [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005200000000035obj/Particle_Trail_Using_Add/delete1.inittype = delete matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005100000001564obj/Particle_Trail_Using_Add/delete1.defsopflags sopflags = comment "The delete has been applied to remove the particle system. If you middle mouse over the add node it reveals the number of primitives as well as shows 1 particle system. Since the skin sop used to make the mesh will not recognize this as a valid primitive type it must be removed. When primitive numbers are displayed, and the add sop display flag is on, you can see there are two primitves. In this case 0 represented the particle system so primitive 0 is deleted." position -1.14593 -5.02809 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 add1 } stat { create 1211971486 modify 1211978319 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005100000000213obj/Particle_Trail_Using_Add/delete1.chn{ channel rangeend { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $N } } } 0707070000010000000006660000000000000000010000001102415664600005200000001552obj/Particle_Trail_Using_Add/delete1.parm{ version 0.8 group [ 0 locks=0 ] ( "" ) negate [ 0 locks=0 ] ( "dele" ) entity [ 0 locks=0 ] ( "primitive" ) geotype [ 0 locks=0 ] ( "all" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) affectnumber [ 0 locks=0 ] ( "on" ) groupop [ 0 locks=0 ] ( "pattern" ) filter [ 8 locks=0 ] ( 1 ) pattern [ 0 locks=0 ] ( 0 ) range [ 8 locks=0 ] ( 0 [ rangeend 1 ] ) select [ 0 locks=0 ] ( 1 2 ) affectvolume [ 0 locks=0 ] ( "off" ) boundtype [ 0 locks=0 ] ( "usebbox" ) size [ 0 locks=0 ] ( 1 1 1 ) t [ 0 locks=0 ] ( 0 0 0 ) affectnormal [ 0 locks=0 ] ( "off" ) dir [ 0 locks=0 ] ( 0 0 1 ) angle [ 0 locks=0 ] ( 180 ) camerapath [ 0 locks=0 ] ( "" ) affectdegenerate [ 0 locks=0 ] ( "off" ) degenerate [ 0 locks=0 ] ( "off" ) zaf [ 0 locks=0 ] ( "off" ) doopen [ 0 locks=0 ] ( "off" ) tol [ 0 locks=0 ] ( 0.00100000005 ) removegrp [ 0 locks=0 ] ( "on" ) keeppoints [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600004700000000032obj/Particle_Trail_Using_Add/add2.inittype = add matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600004600000000643obj/Particle_Trail_Using_Add/add2.defsopflags sopflags = comment "" position 1.50239 -3.92338 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 popnet2 } stat { create 1211971421 modify 1211971569 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600004700000000743obj/Particle_Trail_Using_Add/add2.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 1 1 ) keep [ 0 locks=0 ] ( "off" ) points [ 0 locks=0 ] ( 1 ) remove [ 0 locks=0 ] ( "off" ) switcher [ 0 locks=0 ] ( 1 1 ) prims [ 0 locks=0 ] ( 1 ) group [ 0 locks=0 ] ( "" ) add [ 0 locks=0 ] ( "all" ) inc [ 0 locks=0 ] ( 2 ) attrname [ 0 locks=0 ] ( "" ) closedall [ 0 locks=0 ] ( "off" ) usept0 [ 0 locks=0 ] ( "off" ) pt0 [ 0 locks=0 ] ( 0 0 0 ) weight0 [ 0 locks=0 ] ( 1 ) prim0 [ 0 locks=0 ] ( "" ) closed0 [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005200000000035obj/Particle_Trail_Using_Add/delete2.inittype = delete matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005100000000640obj/Particle_Trail_Using_Add/delete2.defsopflags sopflags = comment "" position 1.48848 -5.02401 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 add2 } stat { create 1211971486 modify 1211971586 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005100000000213obj/Particle_Trail_Using_Add/delete2.chn{ channel rangeend { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $N } } } 0707070000010000000006660000000000000000010000001102415664600005200000001552obj/Particle_Trail_Using_Add/delete2.parm{ version 0.8 group [ 0 locks=0 ] ( "" ) negate [ 0 locks=0 ] ( "dele" ) entity [ 0 locks=0 ] ( "primitive" ) geotype [ 0 locks=0 ] ( "all" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) affectnumber [ 0 locks=0 ] ( "on" ) groupop [ 0 locks=0 ] ( "pattern" ) filter [ 8 locks=0 ] ( 1 ) pattern [ 0 locks=0 ] ( 0 ) range [ 8 locks=0 ] ( 0 [ rangeend 1 ] ) select [ 0 locks=0 ] ( 1 2 ) affectvolume [ 0 locks=0 ] ( "off" ) boundtype [ 0 locks=0 ] ( "usebbox" ) size [ 0 locks=0 ] ( 1 1 1 ) t [ 0 locks=0 ] ( 0 0 0 ) affectnormal [ 0 locks=0 ] ( "off" ) dir [ 0 locks=0 ] ( 0 0 1 ) angle [ 0 locks=0 ] ( 180 ) camerapath [ 0 locks=0 ] ( "" ) affectdegenerate [ 0 locks=0 ] ( "off" ) degenerate [ 0 locks=0 ] ( "off" ) zaf [ 0 locks=0 ] ( "off" ) doopen [ 0 locks=0 ] ( "off" ) tol [ 0 locks=0 ] ( 0.00100000005 ) removegrp [ 0 locks=0 ] ( "on" ) keeppoints [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005100000000034obj/Particle_Trail_Using_Add/merge1.inittype = merge matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005000000000657obj/Particle_Trail_Using_Add/merge1.defsopflags sopflags = comment "" position 0.253413 -6.93172 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 delete1 1 delete2 } stat { create 1211971580 modify 1211978211 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005100000000020obj/Particle_Trail_Using_Add/merge1.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600005000000000033obj/Particle_Trail_Using_Add/LINES.inittype = null matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600004700000000643obj/Particle_Trail_Using_Add/LINES.defsopflags sopflags = comment "" position -1.72532 -8.53436 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 merge1 } stat { create 1211971609 modify 1213245756 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005000000000063obj/Particle_Trail_Using_Add/LINES.parm{ version 0.8 cacheinput [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005000000000033obj/Particle_Trail_Using_Add/skin1.inittype = skin matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600004700000001063obj/Particle_Trail_Using_Add/skin1.defsopflags sopflags = comment "The skin sop creates a mesh between curves. By merging the two particle curves we created it can be merged into the skin to form the mesh trail." position 1.59863 -8.25428 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 merge1 } stat { create 1211971799 modify 1213245823 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005000000000532obj/Particle_Trail_Using_Add/skin1.parm{ version 0.8 uprims [ 0 locks=0 ] ( "" ) vprims [ 0 locks=0 ] ( "" ) surftype [ 0 locks=0 ] ( "quads" ) keepshape [ 0 locks=0 ] ( "off" ) closev [ 0 locks=0 ] ( "nonewv" ) force [ 0 locks=0 ] ( "off" ) orderv [ 0 locks=0 ] ( 4 ) skinops [ 0 locks=0 ] ( "all" ) inc [ 0 locks=0 ] ( 2 ) prim [ 0 locks=0 ] ( "off" ) polys [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600004700000000033obj/Particle_Trail_Using_Add/MESH.inittype = null matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600004600000000637obj/Particle_Trail_Using_Add/MESH.defsopflags sopflags = comment "" position 1.63251 -9.80774 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render on highlight off unload off savedata off compress off exposed on inputs { 0 skin1 } stat { create 1211971814 modify 1213245756 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600004700000000063obj/Particle_Trail_Using_Add/MESH.parm{ version 0.8 cacheinput [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600004300000000137obj/Particle_Trail_Using_Add.order14 box1 xform1 point1 point2 popnet1 popnet2 add1 delete1 add2 delete2 merge1 LINES skin1 MESH 0707070000010000000006660000000000000000010000001102415664600004100000000002obj/Particle_Trail_Using_Add.net1 0707070000010000000006660000000000000000010000001102415664600007100000000037obj/Particle_Vines_Using_PointSOP/popnet1/location1.inittype = location matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600007000000000602obj/Particle_Vines_Using_PointSOP/popnet1/location1.defcomment "" position -3.31586 2.69026 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1211973225 modify 1213246482 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600007100000001147obj/Particle_Vines_Using_PointSOP/popnet1/location1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 1 1 1 ) method [ 0 locks=0 ] ( "ortho" ) loc [ 8 locks=0 ] ( 0 0 0 ) impulseactivate [ 0 locks=0 ] ( 1 ) impulserate [ 0 locks=0 ] ( 1 ) constantactivate [ 0 locks=0 ] ( 0 ) constantrate [ 0 locks=0 ] ( 0 ) group [ 0 locks=0 ] ( "" ) preservegroup [ 0 locks=0 ] ( "off" ) life [ 0 locks=0 ] ( 100 ) lifevar [ 0 locks=0 ] ( 0 ) vel [ 0 locks=0 ] ( 0 1 0 ) var [ 0 locks=0 ] ( 0 0 0 ) doellipse [ 0 locks=0 ] ( "on" ) doid [ 0 locks=0 ] ( "on" ) dogen [ 0 locks=0 ] ( "off" ) doorigin [ 0 locks=0 ] ( "off" ) originindex [ 0 locks=0 ] ( 0 ) dospeed [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600006600000000034obj/Particle_Vines_Using_PointSOP/popnet1/force1.inittype = force matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006500000000620obj/Particle_Vines_Using_PointSOP/popnet1/force1.defcomment "" position -3.18739 1.60932 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 location1 } stat { create 1211973279 modify 1213246482 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006500000000420obj/Particle_Vines_Using_PointSOP/popnet1/force1.chn{ channel forcex { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = -$TX } } channel forcez { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = -$TZ } } } 0707070000010000000006660000000000000000010000001102415664600006600000001043obj/Particle_Vines_Using_PointSOP/popnet1/force1.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 0 0 ) forcepath [ 0 locks=0 ] ( "" ) force [ 8 locks=0 ] ( [ forcex 0 ] 0 [ forcez 0 ] ) scale [ 0 locks=0 ] ( 1 ) ignoremass [ 0 locks=0 ] ( "off" ) overridemass [ 0 locks=0 ] ( "off" ) mass [ 0 locks=0 ] ( 1 ) seed [ 0 locks=0 ] ( 1 ) turb [ 0 locks=0 ] ( 3 ) rough [ 0 locks=0 ] ( 0.0500000007 ) atten [ 0 locks=0 ] ( 1 ) freq [ 0 locks=0 ] ( 1 1 1 ) amp [ 0 locks=0 ] ( 6 1 6 ) offset [ 0 locks=0 ] ( 0 0 0 ) ntype [ 0 locks=0 ] ( "fast" ) } 0707070000010000000006660000000000000000010000001102415664600007000000000040obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Pos.inittype = attribute matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006700000000623obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Pos.defcomment "" position -3.27162 -0.624227 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 attractor1 } stat { create 1213245942 modify 1213247403 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006700000001076obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Pos.chn{ channel activate { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "$F == 150" } } channel value1 { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $TX } } channel value2 { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $TY } } channel value3 { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $TZ } } } 0707070000010000000006660000000000000000010000001102415664600007000000000443obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Pos.parm{ version 0.8 activate [ 8 locks=0 ] ( [ activate 0 ] ) source [ 0 locks=0 ] ( "" ) name [ 0 locks=0 ] ( pos ) varname [ 0 locks=0 ] ( "" ) type [ 0 locks=0 ] ( 2 ) size [ 0 locks=0 ] ( 1 ) default [ 0 locks=0 ] ( 0 0 0 ) value [ 8 locks=0 ] ( [ value1 0 ] [ value2 0 ] [ value3 0 ] ) } 0707070000010000000006660000000000000000010000001102415664600007700000000060obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles.order5 output1 global1 importattrib1 parameter1 mix1 0707070000010000000006660000000000000000010000001102415664600007500000000002obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles.net1 0707070000010000000006660000000000000000010000001102415664600007200000000040obj/Particle_Vines_Using_PointSOP/popnet1/attractor1.inittype = attractor matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600007100000000614obj/Particle_Vines_Using_PointSOP/popnet1/attractor1.defcomment "" position -3.32386 0.43791 cachesize 1 flags = lock off model off template on footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 force1 } stat { create 1213246287 modify 1213246482 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600007200000001442obj/Particle_Vines_Using_PointSOP/popnet1/attractor1.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 ) attractmode [ 0 locks=0 ] ( "all" ) usecontextgeo [ 0 locks=0 ] ( "first" ) soppath [ 0 locks=0 ] ( "" ) ignorexform [ 0 locks=0 ] ( "off" ) stop [ 0 locks=0 ] ( "off" ) scale [ 0 locks=0 ] ( 1 ) showradius [ 0 locks=0 ] ( "off" ) showaccel [ 0 locks=0 ] ( "off" ) ignorecharge [ 0 locks=0 ] ( "off" ) overridecharge [ 0 locks=0 ] ( "off" ) charge [ 0 locks=0 ] ( 1 ) ignoremass [ 0 locks=0 ] ( "off" ) overridemass [ 0 locks=0 ] ( "off" ) mass [ 0 locks=0 ] ( 1 ) seed [ 0 locks=0 ] ( 1 ) turb [ 0 locks=0 ] ( 0 ) rough [ 0 locks=0 ] ( 0.0500000007 ) atten [ 0 locks=0 ] ( 1 ) freq [ 0 locks=0 ] ( 1 1 1 ) amp [ 0 locks=0 ] ( 0 ) offset [ 0 locks=0 ] ( 0 0 0 ) ntype [ 0 locks=0 ] ( "fast" ) } 0707070000010000000006660000000000000000010000001102415664600006600000000034obj/Particle_Vines_Using_PointSOP/popnet1/color1.inittype = color matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006500000000625obj/Particle_Vines_Using_PointSOP/popnet1/color1.defcomment "" position -3.08108 -2.89289 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render on highlight off unload off savedata off compress off exposed on inputs { 0 Stop_Particles } stat { create 1213246785 modify 1213247305 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006500000002034obj/Particle_Vines_Using_PointSOP/popnet1/color1.chn{ channel diffr { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CR } } channel diffg { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CG } } channel diffb { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CB } } channel alpha { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CA } } channel alpharampu { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "$F / $NFRAMES" } } channel colorrampu { lefttype = extend righttype = extend default = 0.485714 flags = 0 segment { length = 0 value = 0.48571428656578064 0.48571428656578064 expr = clamp($LIFE*2,0,1) } } } 0707070000010000000006660000000000000000010000001102415664600006600000001374obj/Particle_Vines_Using_PointSOP/popnet1/color1.parm{ version 0.8 activate [ 8 locks=0 ] ( 1 ) source [ 0 locks=0 ] ( "" ) mswitcher [ 0 locks=0 ] ( 0 0 ) cswitcher [ 0 locks=0 ] ( 2 2 2 2 ) diff [ 0 locks=0 ] ( [ diffr 0 ] [ diffg 0 ] [ diffb 0 ] ) colorramp [ 0 locks=0 ] ( 0.621050477 0.822315574 0.218520314 1 ) colorrampu [ 8 locks=0 ] ( [ colorrampu 0 ] ) colorpath [ 0 locks=0 ] ( "" ) colorcopu [ 0 locks=0 ] ( 0 ) colorcopv [ 0 locks=0 ] ( 0 ) aswitcher [ 0 locks=0 ] ( 0 0 0 0 0 ) alpha [ 0 locks=0 ] ( [ alpha 0 ] ) alpharamp [ 0 locks=0 ] ( 0.621050477 0.822315574 0.218520314 1 ) alpharampu [ 0 locks=0 ] ( [ alpharampu 0.00285714283 ] ) alphapath [ 0 locks=0 ] ( "" ) alphacopu [ 0 locks=0 ] ( 0 ) alphacopv [ 0 locks=0 ] ( 0 ) alpha0speed [ 0 locks=0 ] ( 100 ) alpha1speed [ 0 locks=0 ] ( 0 ) } 0707070000010000000006660000000000000000010000001102415664600006500000000163obj/Particle_Vines_Using_PointSOP/popnet1/color1.rmp4 0 0 0.292 0.0296867 1 0.309211 0.459544 0.623 0.44233 1 0.765351 0.62105 0.822316 0.21852 1 1 0.17596 1 0.019 1 0707070000010000000006660000000000000000010000001102415664600006000000000075obj/Particle_Vines_Using_PointSOP/popnet1.order6 location1 force1 Stop_Pos Stop_Particles attractor1 color1 0707070000010000000006660000000000000000010000001102415664600005600000000002obj/Particle_Vines_Using_PointSOP/popnet1.net1 0707070000010000000006660000000000000000010000001102415664600005500000000033obj/Particle_Vines_Using_PointSOP/line1.inittype = line matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005400000001406obj/Particle_Vines_Using_PointSOP/line1.defsopflags sopflags = comment "The line will form the curve based on the particle points. However, in order to do this accurately the number of points must update equally with the particle points. To do this we can retrieve the number of points in the popnet by using the npoints() funtion. npoints(\"../popnet1\")*5: This will return the number of points in the popnet and multiply them by 5." position -4.39925 -0.128061 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1211973106 modify 1213257658 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005400000000276obj/Particle_Vines_Using_PointSOP/line1.chn{ channel points { lefttype = extend righttype = extend default = 2 flags = 0 segment { length = 0 value = 2 2 expr = npoints(\"../popnet1\")*5 } } } 0707070000010000000006660000000000000000010000001102415664600005500000000304obj/Particle_Vines_Using_PointSOP/line1.parm{ version 0.8 type [ 0 locks=0 ] ( "nurbs" ) origin [ 0 locks=0 ] ( 0 0 0 ) dir [ 0 locks=0 ] ( 0 1 0 ) dist [ 0 locks=0 ] ( 1 ) points [ 0 locks=0 ] ( [ points 5 ] ) order [ 0 locks=0 ] ( 4 ) } 0707070000010000000006660000000000000000010000001102415664600005600000000034obj/Particle_Vines_Using_PointSOP/point1.inittype = point matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005500000001644obj/Particle_Vines_Using_PointSOP/point1.defsopflags sopflags = comment "This point sop is actually manipulating the point positions of the line based off the point positions of the particles. By setting the position to ($TX2, $TY2, $TZ2) we are telling the point sop to do transformations based off the point position of input 2(our particles). When played back this will form a curve from our particle system. Add Color: There are multiple ways to retrieve the color from the particles, but I just used the point() function to retrieve the point color of the particles." position -3.21572 -1.8843 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 line1 1 popnet1 } stat { create 1211973153 modify 1213258445 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005500000006452obj/Particle_Vines_Using_PointSOP/point1.chn{ channel tx { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $TX2 } } channel ty { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $TY2 } } channel tz { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $TZ2 } } channel weight { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $WEIGHT } } channel diffr { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "point(\"../popnet1\", $PT, \"Cd\", 0)" } } channel diffg { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "point(\"../popnet1\", $PT, \"Cd\", 1)" } } channel diffb { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "point(\"../popnet1\", $PT, \"Cd\", 2)" } } channel alpha { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $CA } } channel nx { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $NX } } channel ny { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $NY } } channel nz { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $NZ } } channel mapu { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $MAPU } } channel mapv { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $MAPV } } channel mapw { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $MAPW } } channel tension { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $TENSION } } channel springk { lefttype = extend righttype = extend default = 30 flags = 0 segment { length = 0 value = 30 30 expr = $SPRINGK } } channel vx { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $VX } } channel vy { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $VY } } channel vz { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $VZ } } channel upx { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $UPX } } channel upy { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $UPY } } channel upz { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $UPZ } } channel pscale { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $PSCALE } } } 0707070000010000000006660000000000000000010000001102415664600005600000003073obj/Particle_Vines_Using_PointSOP/point1.parm{ version 0.8 group [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) t [ 8 locks=0 ] ( [ tx 0 ] [ ty 0 ] [ tz 0 ] ) doweight [ 0 locks=0 ] ( "off" ) weight [ 8 locks=0 ] ( [ weight 1 ] ) doclr [ 0 locks=0 ] ( "on" ) diff [ 8 locks=0 ] ( [ diffr 0 ] [ diffg 0.291999996 ] [ diffb 0.0296866726 ] ) doalpha [ 0 locks=0 ] ( "off" ) alpha [ 8 locks=0 ] ( [ alpha 1 ] ) donml [ 0 locks=0 ] ( "off" ) n [ 8 locks=0 ] ( [ nx 0 ] [ ny 0 ] [ nz 0 ] ) douvw [ 0 locks=0 ] ( "off" ) map [ 8 locks=0 ] ( [ mapu 0 ] [ mapv 0 ] [ mapw 0 ] ) domass [ 0 locks=0 ] ( "off" ) mass [ 0 locks=0 ] ( 1 ) drag [ 0 locks=0 ] ( 1 ) dotension [ 0 locks=0 ] ( "off" ) tension [ 8 locks=0 ] ( [ tension 0 ] ) dospringk [ 0 locks=0 ] ( "off" ) springk [ 8 locks=0 ] ( [ springk 0 ] ) dovel [ 0 locks=0 ] ( "off" ) v [ 8 locks=0 ] ( [ vx 0 ] [ vy 0 ] [ vz 0 ] ) doup [ 0 locks=0 ] ( "off" ) up [ 8 locks=0 ] ( [ upx 0 ] [ upy 0 ] [ upz 0 ] ) dopscale [ 0 locks=0 ] ( "off" ) pscale [ 8 locks=0 ] ( [ pscale 0 ] ) doinstance [ 0 locks=0 ] ( "off" ) instancepath [ 0 locks=0 ] ( "" ) doradius [ 0 locks=0 ] ( "off" ) radiusf [ 0 locks=0 ] ( 1 ) doscale [ 0 locks=0 ] ( "off" ) scalef [ 0 locks=0 ] ( 1 ) doradialf [ 0 locks=0 ] ( "off" ) radialf [ 0 locks=0 ] ( 0 ) donormalf [ 0 locks=0 ] ( "off" ) normalf [ 0 locks=0 ] ( 0 ) doedgef [ 0 locks=0 ] ( "off" ) edgef [ 0 locks=0 ] ( 0 ) dodirf [ 0 locks=0 ] ( "off" ) dirf [ 0 locks=0 ] ( 0 0 0 ) numcustom [ 0 locks=0 ] ( 1 ) apply1 [ 0 locks=0 ] ( "on" ) name1 [ 0 locks=0 ] ( "" ) val1i [ 0 locks=0 ] ( 0 0 0 0 ) sval1 [ 0 locks=0 ] ( "" ) } 0707070000010000000006660000000000000000010000001102415664600005600000000034obj/Particle_Vines_Using_PointSOP/sweep1.inittype = sweep matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005500000001467obj/Particle_Vines_Using_PointSOP/sweep1.defsopflags sopflags = comment "The sweep sop will create a spine by copying the circle onto each point. The sweep sop is used over the copy sop because it automatically orients the circles in the correct direction. The sweep could also output the skinned mesh, but due to the larger base cirlce we need to do some clean up and then apply the skin. I have also adjusted the scale so that the radius of circles decrease." position -3.49941 -4.21348 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 circle1 1 point1 } stat { create 1211974968 modify 1213258858 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005500000000252obj/Particle_Vines_Using_PointSOP/sweep1.chn{ channel scale { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = $PT/20 } } } 0707070000010000000006660000000000000000010000001102415664600005600000001131obj/Particle_Vines_Using_PointSOP/sweep1.parm{ version 0.8 stdswitcher [ 0 locks=0 ] ( 0 0 ) xgrp [ 0 locks=0 ] ( "" ) pathgrp [ 0 locks=0 ] ( "" ) refgrp [ 0 locks=0 ] ( "" ) cycle [ 0 locks=0 ] ( "all" ) angle [ 0 locks=0 ] ( "off" ) noflip [ 0 locks=0 ] ( "off" ) skipcoin [ 0 locks=0 ] ( "on" ) aimatref [ 0 locks=0 ] ( "off" ) usevtx [ 0 locks=0 ] ( "off" ) vertex [ 0 locks=0 ] ( 0 ) scale [ 8 locks=0 ] ( [ scale 0.200000003 ] ) twist [ 0 locks=0 ] ( 0 ) roll [ 0 locks=0 ] ( 0 ) newg [ 0 locks=0 ] ( "off" ) sweepgrp [ 0 locks=0 ] ( sweepGroup ) skin [ 0 locks=0 ] ( "off" ) fast [ 0 locks=0 ] ( "off" ) polyout [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600005700000000035obj/Particle_Vines_Using_PointSOP/circle1.inittype = circle matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005600000000631obj/Particle_Vines_Using_PointSOP/circle1.defsopflags sopflags = comment "" position -5.39941 -2.58037 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1211974979 modify 1213258844 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005700000000447obj/Particle_Vines_Using_PointSOP/circle1.parm{ version 0.8 type [ 0 locks=0 ] ( "nurbs" ) orient [ 0 locks=0 ] ( "xy" ) rad [ 0 locks=0 ] ( 0.100000001 0.100000001 ) t [ 0 locks=0 ] ( 0 0 0 ) order [ 0 locks=0 ] ( 4 ) divs [ 0 locks=0 ] ( 20 ) arc [ 0 locks=0 ] ( "closed" ) angle [ 0 locks=0 ] ( 0 360 ) imperfect [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600005500000000033obj/Particle_Vines_Using_PointSOP/skin1.inittype = skin matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005400000000722obj/Particle_Vines_Using_PointSOP/skin1.defsopflags sopflags = comment "Creates a mesh around the backbone of circles." position -3.07337 -7.55592 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 delete1 } stat { create 1211975003 modify 1213258951 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005500000000532obj/Particle_Vines_Using_PointSOP/skin1.parm{ version 0.8 uprims [ 0 locks=0 ] ( "" ) vprims [ 0 locks=0 ] ( "" ) surftype [ 0 locks=0 ] ( "quads" ) keepshape [ 0 locks=0 ] ( "off" ) closev [ 0 locks=0 ] ( "nonewv" ) force [ 0 locks=0 ] ( "off" ) orderv [ 0 locks=0 ] ( 4 ) skinops [ 0 locks=0 ] ( "all" ) inc [ 0 locks=0 ] ( 2 ) prim [ 0 locks=0 ] ( "off" ) polys [ 0 locks=0 ] ( "on" ) } 0707070000010000000006660000000000000000010000001102415664600005700000000035obj/Particle_Vines_Using_PointSOP/delete1.inittype = delete matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005600000000705obj/Particle_Vines_Using_PointSOP/delete1.defsopflags sopflags = comment "Deletes the grouped base primitive" position -3.62325 -6.41521 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 group1 } stat { create 1211975779 modify 1213258914 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005600000000213obj/Particle_Vines_Using_PointSOP/delete1.chn{ channel rangeend { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $N } } } 0707070000010000000006660000000000000000010000001102415664600005700000001612obj/Particle_Vines_Using_PointSOP/delete1.parm{ version 0.8 group [ 0 locks=0 ] ( group1 ) negate [ 0 locks=0 ] ( "dele" ) entity [ 0 locks=0 ] ( "primitive" ) geotype [ 0 locks=0 ] ( "all" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 0 ) affectnumber [ 0 locks=0 ] ( "off" ) groupop [ 0 locks=0 ] ( "pattern" ) filter [ 8 locks=0 ] ( 1 ) pattern [ 0 locks=0 ] ( !* ) range [ 8 locks=0 ] ( 0 [ rangeend 0 ] ) select [ 0 locks=0 ] ( 1 2 ) affectvolume [ 0 locks=0 ] ( "off" ) boundtype [ 0 locks=0 ] ( "usebbox" ) size [ 0 locks=0 ] ( 4.4000001 0.300000012 4.4000001 ) t [ 0 locks=0 ] ( 0 0 0 ) affectnormal [ 0 locks=0 ] ( "off" ) dir [ 0 locks=0 ] ( 0 0 1 ) angle [ 0 locks=0 ] ( 180 ) camerapath [ 0 locks=0 ] ( "" ) affectdegenerate [ 0 locks=0 ] ( "off" ) degenerate [ 0 locks=0 ] ( "off" ) zaf [ 0 locks=0 ] ( "off" ) doopen [ 0 locks=0 ] ( "off" ) tol [ 0 locks=0 ] ( 0.00100000005 ) removegrp [ 0 locks=0 ] ( "on" ) keeppoints [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005600000000034obj/Particle_Vines_Using_PointSOP/group1.inittype = group matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005500000000705obj/Particle_Vines_Using_PointSOP/group1.defsopflags sopflags = comment "This group isolates the base circle." position -3.44678 -5.2858 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight on unload off savedata off compress off exposed on inputs { 0 sweep1 } stat { create 1211975856 modify 1213258905 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005500000000466obj/Particle_Vines_Using_PointSOP/group1.chn{ channel rangeend { lefttype = extend righttype = extend flags = 0 segment { length = 0 expr = $N } } channel filter { lefttype = extend righttype = extend default = 1 flags = 0 segment { length = 0 value = 1 1 expr = "$TY < 0.01" } } } 0707070000010000000006660000000000000000010000001102415664600005600000003367obj/Particle_Vines_Using_PointSOP/group1.parm{ version 0.8 group [ 0 locks=0 ] ( "" ) stdswitcher [ 0 locks=0 ] ( 0 0 0 ) crname [ 0 locks=0 ] ( group1 ) entity [ 0 locks=0 ] ( "primitive" ) geotype [ 0 locks=0 ] ( "all" ) switcher2 [ 0 locks=0 ] ( 0 0 0 0 ) groupnumber [ 0 locks=0 ] ( "on" ) ordered [ 0 locks=0 ] ( "off" ) groupop [ 0 locks=0 ] ( "grpexpression" ) filter [ 8 locks=0 ] ( [ filter 1 ] ) transfer [ 0 locks=0 ] ( 0 ) pattern [ 0 locks=0 ] ( "" ) range [ 8 locks=0 ] ( 0 [ rangeend 0 ] ) select [ 0 locks=0 ] ( 1 2 ) groupbounding [ 0 locks=0 ] ( "off" ) boundtype [ 0 locks=0 ] ( "usebbox" ) t [ 0 locks=0 ] ( 0 0 0 ) size [ 0 locks=0 ] ( 1 1 1 ) groupnormal [ 0 locks=0 ] ( "off" ) dir [ 0 locks=0 ] ( 0 0 1 ) angle [ 0 locks=0 ] ( 180 ) camerapath [ 0 locks=0 ] ( "" ) nonplanar [ 0 locks=0 ] ( "off" ) nonplanartol [ 0 locks=0 ] ( 0.00100000005 ) groupedges [ 0 locks=0 ] ( "off" ) doangle [ 0 locks=0 ] ( "off" ) edgeangle [ 0 locks=0 ] ( 20 ) dodepth [ 0 locks=0 ] ( "off" ) edgestep [ 0 locks=0 ] ( 0 ) edgeptgrp [ 0 locks=0 ] ( 0 ) unshared [ 0 locks=0 ] ( "off" ) boundarygroups [ 0 locks=0 ] ( "off" ) combineentity [ 0 locks=0 ] ( "guess" ) grpequal [ 0 locks=0 ] ( "" ) not1 [ 0 locks=0 ] ( "off" ) grp1 [ 0 locks=0 ] ( "" ) op1 [ 0 locks=0 ] ( "none" ) not2 [ 0 locks=0 ] ( "off" ) grp2 [ 0 locks=0 ] ( "" ) op2 [ 0 locks=0 ] ( "none" ) not3 [ 0 locks=0 ] ( "off" ) grp3 [ 0 locks=0 ] ( "" ) op3 [ 0 locks=0 ] ( "none" ) not4 [ 0 locks=0 ] ( "off" ) grp4 [ 0 locks=0 ] ( "" ) switcher3 [ 0 locks=0 ] ( 0 0 0 ) cnvtype [ 0 locks=0 ] ( "toprim" ) convertg [ 0 locks=0 ] ( "" ) cnvtname [ 0 locks=0 ] ( "" ) preserve [ 0 locks=0 ] ( "off" ) primswithallpts [ 0 locks=0 ] ( "off" ) oldname [ 0 locks=0 ] ( "" ) newname [ 0 locks=0 ] ( "" ) destroyname [ 0 locks=0 ] ( "" ) type [ 0 locks=0 ] ( 1 ) } 0707070000010000000006660000000000000000010000001102415664600006100000000037obj/Particle_Vines_Using_PointSOP/metaball1.inittype = metaball matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600006000000000733obj/Particle_Vines_Using_PointSOP/metaball1.defsopflags sopflags = comment "The metaball is used as a \"field of influece\" for the force node." position 0.257818 2.06872 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1213246269 modify 1213257383 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600006100000000312obj/Particle_Vines_Using_PointSOP/metaball1.parm{ version 0.8 rad [ 0 locks=0 ] ( 10 5.4000001 10 ) t [ 0 locks=0 ] ( 0 3.5999999 0 ) metaweight [ 0 locks=0 ] ( 2 ) kernel [ 0 locks=0 ] ( wyvill ) expxy [ 0 locks=0 ] ( 1 ) expz [ 0 locks=0 ] ( 1 ) } 0707070000010000000006660000000000000000010000001102415664600005600000000034obj/Particle_Vines_Using_PointSOP/force1.inittype = force matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005500000000750obj/Particle_Vines_Using_PointSOP/force1.defsopflags sopflags = comment "The force node applies a vortex or circular force to the particles." position -0.8725 0.897741 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { 0 metaball1 } stat { create 1213246273 modify 1213257450 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005600000000352obj/Particle_Vines_Using_PointSOP/force1.parm{ version 0.8 doradial [ 0 locks=0 ] ( "off" ) radial [ 0 locks=0 ] ( 1 ) doaxis [ 0 locks=0 ] ( "on" ) dir [ 0 locks=0 ] ( 0 1 1 ) axial [ 0 locks=0 ] ( 0.859000027 ) vortex [ 0 locks=0 ] ( 0.930000007 ) spiral [ 0 locks=0 ] ( 3 ) } 0707070000010000000006660000000000000000010000001102415664600005400000000033obj/Particle_Vines_Using_PointSOP/Grow.inittype = null matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600005300000000640obj/Particle_Vines_Using_PointSOP/Grow.defsopflags sopflags = comment "" position -2.60069 -8.77053 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display on render on highlight off unload off savedata off compress off exposed on inputs { 0 skin1 } stat { create 1213258946 modify 1213258954 author J.VAUGHN@kascop-1gmyybon access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600005400000000063obj/Particle_Vines_Using_PointSOP/Grow.parm{ version 0.8 cacheinput [ 0 locks=0 ] ( "off" ) } 0707070000010000000006660000000000000000010000001102415664600005000000000122obj/Particle_Vines_Using_PointSOP.order11 popnet1 line1 point1 sweep1 circle1 skin1 delete1 group1 metaball1 force1 Grow 0707070000010000000006660000000000000000010000001102415664600004600000000002obj/Particle_Vines_Using_PointSOP.net1 0707070000010000000006660000000000000000010000001102415664600001200000000131obj.order3 Particle_Curves_Using_Trail_SOP Particle_Trail_Using_Add Particle_Vines_Using_PointSOP 0707070000010000000006660000000000000000010000001102415664600001000000000002obj.net1 0707070000010000000006660000000000000000010000001102415664600001000000000566out.defcomment "" position 5 0.5 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215026 modify 1206215027 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600001100000000020out.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600001000000000002out.net1 0707070000010000000006660000000000000000010000001102415664600001100000000570part.defcomment "" position 5.5 1.5 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215026 modify 1206215027 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600001200000000020part.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600001100000000002part.net1 0707070000010000000006660000000000000000010000001102415664600000700000000566ch.defcomment "" position 4.5 1 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215026 modify 1206215027 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600001000000000020ch.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600000700000000002ch.net1 0707070000010000000006660000000000000000010000001102415664600001100000000564shop.defcomment "" position 5 3 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215026 modify 1206215027 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600001200000000020shop.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600001100000000002shop.net1 0707070000010000000006660000000000000000010000001102415664600001000000000570img.defcomment "" position 4.5 2.5 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215026 modify 1206215028 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600001100000000020img.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600001700000000032img/comp1.inittype = img matchesdef = 0 0707070000010000000006660000000000000000010000001102415664600001600000000564img/comp1.defcomment "" position 0 0 cachesize 1 flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress off exposed on inputs { } stat { create 1206215027 modify 1206215027 author song@lid257.rhythm.com access 0777 } color UT_Color RGB 0.8 0.8 0.8 delscript "" exprlanguage hscript end 0707070000010000000006660000000000000000010000001102415664600001700000000020img/comp1.parm{ version 0.8 } 0707070000010000000006660000000000000000010000001102415664600001600000000002img/comp1.net1 0707070000010000000006660000000000000000010000001102415664600001000000000002img.net1 0707070000010000000006660000000000000000010000001102415664600001000000000002vex.net1 0707070000010000000006660000000000000000010000001102415664600002400000000275.userdisplayoptionsviewoptadd -r vector v viewoptset v attrib ( v ) class ( point ) color ( 1 0 1 ) fade ( 1 ) icon ( SI_pointNormal ) label ( Velocity ) overridecolor ( 1 ) scale ( 1 ) selcolor ( 1 0.45 1 ) 0707070000010000000006660000000000000000010000001102415664600001500000077502.applicationneteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/particles/grid1 0 0 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/MountainSplash/SOP_network -2.2842 -11.7372 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/cop2net1 -0.959011 1.84701 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/geo1/grid1 0 0 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/MountainSplash/SOP_network/popnet1 0.00153283 0.957209 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Hand_Displace -5.66945 -1.33467 0.738232 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Hand_Displace/popnet2/voppop1 -3.09619 -0.602638 0.578703 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Trail_Using_Add -3.57022 -11.3868 0.514945 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/gas_solver -12.352 -3.49187 0.482253 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Trail_Using_PointSOP/popnet1 -5.7441 -1.98926 0.578704 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/AutoDopNetwork -2.74706 1.23554 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Disperse/show_particles/popnet1 -0.264777 -4.2488 0.694444 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/particles/popnet1/voppop_landing -0.245674 -1.34602 0.85 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Trail_Using_PointSOP -8.3685 -9.08819 0.334897 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Trail_Using_Trail_SOP -4.98061 -5.51388 0.482253 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Trail_Using_Trail_SOP/popnet1 0.10941 -0.257303 0.694444 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Vines_Using_PointSOP/popnet1 -8.49213 -4.08961 0.494964 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/boxes_to_dops/popnet1 -2.62362 -3.27062 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Hand_Imprints/popnet2/voppop1 1.73825 1.75199 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/geo1/popnet1 -2.60598 -2.82356 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/geo1 -2.6381 -1.32591 0.833335 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Vines_Using_PointSOP -10.1918 -10.7094 0.319267 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/geo1/shopnet1 -5.2936 -6.83261 1.2 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Disperse -0.95461 2.88844 0.721146 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Hand_Imprints/popnet1 -8.8162 -10.6348 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Hand_Imprints/popnet2 0.0684394 0.261706 1.2 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/particles -2.35873 -3.05879 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/vector_fields -3.46667 -3.90773 0.578703 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Curves_Using_Trail_SOP -3.1075 -4.50995 0.619737 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /img -2.72353 -2.04706 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj -7.06076 1.54084 0.590277 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Trail_Using_Add/popnet1 -4.7423 -7.34594 0.694444 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Trail_Using_Add/popnet2 -5.11538 -6.27656 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Hand_Displace/popnet1 -8.17933 -9.19485 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/particles/popnet1/voppop_goal -1.47888 -1.4477 0.694444 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Hand_Displace/popnet2 -8.51376 -22.3326 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Disperse/show_particles -1.0391 -2.63022 0.71327 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/vector_fields/popnet1 -3.1296 -2.25888 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/geo1/vopsop1 0.0352939 -0.830588 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Vines_Using_PointSOP/popnet1/Stop_Particles -3.76922 -1.41171 0.760285 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/MountainSplash -1.57049 2.83532 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Particle_Trail_Using_PointSOP/popnet1/Stop_Particles -3.8 -1.89245 0.771104 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/Hand_Imprints -16.6753 -20.4098 0.193807 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/particles/popnet1 -0.775087 0.49827 0.85 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/MountainSplash/SOP_network/grid2 0 0 1 panetab7 neteditor -d Build -b 0 -l 0 -f '' -q 1.000000 -v /obj/boxes_to_dops -4.13431 -4.4198 0.578704 panetab7 imgview -p '(' none -z 1 ')' 0 -c 0 -l on -s off -i imgview2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 1 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 3 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 4 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 5 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 6 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 7 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 8 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 9 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 10 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 11 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 12 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 13 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 14 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 15 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 16 imgview -p '(' none -z 1 ')' 0 -c 0 -l on -s off -i imgview2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 1 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 3 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 4 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 5 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 6 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 7 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 8 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 9 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 10 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 11 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 12 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 13 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 14 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 15 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 16 imgview -p '(' none -z 1 ')' 0 -c 0 -l on -s off -i imgview2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 1 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 3 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 4 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 5 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 6 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 7 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 8 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 9 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 10 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 11 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 12 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 13 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 14 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 15 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 16 imgview -p '(' none -z 1 ')' 0 -c 0 -l on -s off -i imgview2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 1 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 3 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 4 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 5 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 6 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 7 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 8 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 9 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 10 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 11 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 12 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 13 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 14 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 15 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 16 imgview -p '(' none -z 1 ')' 0 -c 0 -l on -s off -i imgview2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 1 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 2 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 3 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 4 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 5 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 6 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 7 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 8 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 9 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 10 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 11 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 12 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 13 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 14 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 15 imgview2d -G on -H on -L on -P off -V on -b 1 1 0 -c -1 -d '' -g 1 -i on -m 0 -p 0 1 -t off -X on imgview2 16 imgdispopt -m 10 -P on -M off -A off -g 1 -G C -B 0 -v split -V 2 2 -d h -a off -i 2 -b 0 0 0 -o "" -h on -H on -c 0.8 0.8 0.8 -C 1 1 1 -S 0.8 0.8 0.8 -R 6 -F dc -D "" -I "" -f "" -s off -r 256 256 -p on imgview -z 1 -p (none) 0 -c 0 -l on -s off -i imgview2 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 1 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 2 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 3 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 4 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 5 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 6 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 7 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 8 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 9 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 10 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 11 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 12 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 13 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 14 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 15 imgview2d -V on -L on -G on -H on -P off -m 0 -p 0 1 -b 1 1 0 -g 1 -d "" -c -1 -t off -i on -X on imgview2 16 imgviewtime -V on -L on -G on -H on -P off -r 24 -u fr -g 0 -f on -e on -b on -d imgview2 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 1 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 2 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 3 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 4 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 5 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 6 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 7 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 8 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 9 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 10 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 11 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 12 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 13 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 14 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 15 imgviewhist -V on -L on -G on -H on -P off -c -1 -h 0 -i on imgview2 16 viewerstow -b 0 -x 0 -l 0 -m 1 -d 0 Build.panetab1.world vieweroption -a 0 -h 0 -m 1 -r 'View: Mantra' Build.panetab1.world viewlayout -s 2 Build.panetab1.world viewtype -t perspective Build.panetab1.world.`vpname("Build.panetab1.world",2)` viewtype -t ortho_top Build.panetab1.world.`vpname("Build.panetab1.world",1)` viewtype -t ortho_front Build.panetab1.world.`vpname("Build.panetab1.world",3)` viewtype -t ortho_right Build.panetab1.world.`vpname("Build.panetab1.world",4)` viewname -l on -n aaaa3 Build.panetab1.world.`vpname("Build.panetab1.world",2)` viewname -l on -n aaaa2 Build.panetab1.world.`vpname("Build.panetab1.world",1)` viewname -l on -n aaaa1 Build.panetab1.world.`vpname("Build.panetab1.world",3)` viewname -l on -n aaaa0 Build.panetab1.world.`vpname("Build.panetab1.world",4)` viewname -l off -n persp1 Build.panetab1.world.`vpname("Build.panetab1.world",2)` viewname -l off -n top1 Build.panetab1.world.`vpname("Build.panetab1.world",1)` viewname -l off -n front1 Build.panetab1.world.`vpname("Build.panetab1.world",3)` viewname -l off -n right1 Build.panetab1.world.`vpname("Build.panetab1.world",4)` viewdisplay -a on Build.panetab1.world.persp1 viewdisplay -M unsel shade -N unsel n off -E unsel n off -I unsel n off Build.panetab1.world.persp1 viewdisplay -N unsel t off -E unsel t off -I unsel t on Build.panetab1.world.persp1 viewdisplay -N unsel l off -E unsel g off -I unsel l off Build.panetab1.world.persp1 viewdisplay -N unsel p off -I unsel p off Build.panetab1.world.persp1 viewdisplay -N unsel m off -I unsel h off Build.panetab1.world.persp1 viewdisplay -I unsel b off Build.panetab1.world.persp1 viewdisplay -I unsel f off Build.panetab1.world.persp1 viewdisplay -M templ wire -N templ n off -E templ n off -I templ n off Build.panetab1.world.persp1 viewdisplay -N templ t off -E templ t off -I templ t off Build.panetab1.world.persp1 viewdisplay -N templ l off -E templ g off -I templ l off Build.panetab1.world.persp1 viewdisplay -N templ p off -I templ p off Build.panetab1.world.persp1 viewdisplay -N templ m off -I templ h off Build.panetab1.world.persp1 viewdisplay -I templ b off Build.panetab1.world.persp1 viewdisplay -I templ f off Build.panetab1.world.persp1 viewdisplay -M curr_unsel wire -N curr_unsel n off -E curr_unsel n off -I curr_unsel n off Build.panetab1.world.persp1 viewdisplay -N curr_unsel t off -E curr_unsel t off -I curr_unsel t on Build.panetab1.world.persp1 viewdisplay -N curr_unsel l off -E curr_unsel g off -I curr_unsel l off Build.panetab1.world.persp1 viewdisplay -N curr_unsel p off -I curr_unsel p off Build.panetab1.world.persp1 viewdisplay -N curr_unsel m off -I curr_unsel h off Build.panetab1.world.persp1 viewdisplay -I curr_unsel b off Build.panetab1.world.persp1 viewdisplay -I curr_unsel f off Build.panetab1.world.persp1 viewdisplay -A templ on -B bw -b off -d off -C 0 -e 1 -F off -f off -g on -G '*' -h off -H on -j off -J off Build.panetab1.world.persp1 viewdisplay -A curr_all on -l 1 -L on -n 0.2 -o on -O on -q on -r off -s off -S on -t on Build.panetab1.world.persp1 viewdisplay -V 2 -z off -y off -x off -T on -R on -i on -D on -k off Build.panetab1.world.persp1 viewdisplay -Q on -m on -v on Build.panetab1.world.persp1 viewdisplay -W off bound_box_wire 0 Build.panetab1.world.persp1 viewdisplay -c off -P points -Z off -p 3 Build.panetab1.world.persp1 viewbackground -b off -q 1 -S file -F '' -O off -r 1 1 -C '' -p '(Default Color)' 1 -t on -a on -o 0 0 -s 1 1 -i off -m 0 0 -M 1 1 Build.panetab1.world.persp1 viewtransform Build.panetab1.world.persp1 version ( 3 ) flag ( Fx ) orthowidth ( 17.7778 ) focal ( 50 ) aperture ( 41.2136 ) window ( 0 1 0 1 ) winroll ( 0 ) clear ( 1 ) nearfar ( 0.1 32040.1 ) resxy ( 1 1 ) aspect ( 1.33333 ) pixelaspect ( 1 ) txyz ( -0.615983 2.44383 35.3802 ) pxyz ( -0.615991 2.44383 0.477077 ) rotation ( -0.682924 0.212686 -0.698831 7.76734e-008 0.956674 0.291159 0.730481 0.19884 -0.653338 ) homedistance ( 18.7839 ) homepixelwidth ( 0.00827643 ) homeorthowidth ( 17.7778 ) homeradius ( 22.6274 ) homeaxis ( 5 ) homecustom ( 0.707107 -0.353553 0.612372 0 0.866025 0.5 -0.707107 -0.353553 0.612372 ) adjustlimits ( 0 ) viewcamera -c '' Build.panetab1.world.persp1 vieworthogrid -d on -o 0 0 0 -s 0.1 0.1 -r 0 0 Build.panetab1.world.persp1 viewuvgrid -r off -s 0.1 0.1 -P on -S 1 1 -O 0 0 -C on -t on Build.panetab1.world.persp1 viewdisplay -a on Build.panetab1.world.top1 viewdisplay -M unsel shade -N unsel n off -E unsel n off -I unsel n off Build.panetab1.world.top1 viewdisplay -N unsel t off -E unsel t off -I unsel t on Build.panetab1.world.top1 viewdisplay -N unsel l off -E unsel g off -I unsel l off Build.panetab1.world.top1 viewdisplay -N unsel p off -I unsel p off Build.panetab1.world.top1 viewdisplay -N unsel m off -I unsel h off Build.panetab1.world.top1 viewdisplay -I unsel b off Build.panetab1.world.top1 viewdisplay -I unsel f off Build.panetab1.world.top1 viewdisplay -M templ wire -N templ n off -E templ n off -I templ n off Build.panetab1.world.top1 viewdisplay -N templ t off -E templ t off -I templ t off Build.panetab1.world.top1 viewdisplay -N templ l off -E templ g off -I templ l off Build.panetab1.world.top1 viewdisplay -N templ p off -I templ p off Build.panetab1.world.top1 viewdisplay -N templ m off -I templ h off Build.panetab1.world.top1 viewdisplay -I templ b off Build.panetab1.world.top1 viewdisplay -I templ f off Build.panetab1.world.top1 viewdisplay -M curr_unsel wire -N curr_unsel n off -E curr_unsel n off -I curr_unsel n off Build.panetab1.world.top1 viewdisplay -N curr_unsel t off -E curr_unsel t off -I curr_unsel t on Build.panetab1.world.top1 viewdisplay -N curr_unsel l off -E curr_unsel g off -I curr_unsel l off Build.panetab1.world.top1 viewdisplay -N curr_unsel p off -I curr_unsel p off Build.panetab1.world.top1 viewdisplay -N curr_unsel m off -I curr_unsel h off Build.panetab1.world.top1 viewdisplay -I curr_unsel b off Build.panetab1.world.top1 viewdisplay -I curr_unsel f off Build.panetab1.world.top1 viewdisplay -A templ on -B bw -b off -d off -C 0 -e 1 -F off -f off -g on -G '*' -h off -H on -j off -J off Build.panetab1.world.top1 viewdisplay -A curr_all on -l 1 -L on -n 0.2 -o on -O on -q on -r off -s off -S on -t on Build.panetab1.world.top1 viewdisplay -V 2 -z off -y off -x off -T on -R on -i on -D on -k off Build.panetab1.world.top1 viewdisplay -Q on -m on -v on Build.panetab1.world.top1 viewdisplay -W off bound_box_wire 0 Build.panetab1.world.top1 viewdisplay -c off -P points -Z off -p 3 Build.panetab1.world.top1 viewbackground -b off -q 1 -S file -F '' -O off -r 1 1 -C '' -p '(Default Color)' 1 -t on -a on -o 0 0 -s 1 1 -i off -m 0 0 -M 1 1 Build.panetab1.world.top1 viewtransform Build.panetab1.world.top1 version ( 3 ) flag ( Fo ) orthowidth ( 2.22222 ) focal ( 50 ) aperture ( 41.4214 ) window ( 0 1 0 1 ) winroll ( 0 ) clear ( 1 ) nearfar ( 0.1 100000 ) resxy ( 1 1 ) aspect ( 1.33333 ) pixelaspect ( 1 ) txyz ( 0 0 3.68246 ) pxyz ( 0 0 0 ) rotation ( 1 0 0 0 7.54979e-008 1 0 -1 7.54979e-008 ) homedistance ( 3.68246 ) homepixelwidth ( 0.246914 ) homeorthowidth ( 2.22222 ) homeradius ( 3.4641 ) homeaxis ( 5 ) homecustom ( 0.707107 -0.353553 0.612372 0 0.866025 0.5 -0.707107 -0.353553 0.612372 ) adjustlimits ( 0 ) vieworthogrid -d on -o 0 0 0 -s 0.1 0.1 -r 0 0 Build.panetab1.world.top1 viewuvgrid -r off -s 0.1 0.1 -P on -S 1 1 -O 0 0 -C on -t on Build.panetab1.world.top1 viewdisplay -a on Build.panetab1.world.front1 viewdisplay -M unsel shade -N unsel n off -E unsel n off -I unsel n off Build.panetab1.world.front1 viewdisplay -N unsel t off -E unsel t off -I unsel t on Build.panetab1.world.front1 viewdisplay -N unsel l off -E unsel g off -I unsel l off Build.panetab1.world.front1 viewdisplay -N unsel p off -I unsel p off Build.panetab1.world.front1 viewdisplay -N unsel m off -I unsel h off Build.panetab1.world.front1 viewdisplay -I unsel b off Build.panetab1.world.front1 viewdisplay -I unsel f off Build.panetab1.world.front1 viewdisplay -M templ wire -N templ n off -E templ n off -I templ n off Build.panetab1.world.front1 viewdisplay -N templ t off -E templ t off -I templ t off Build.panetab1.world.front1 viewdisplay -N templ l off -E templ g off -I templ l off Build.panetab1.world.front1 viewdisplay -N templ p off -I templ p off Build.panetab1.world.front1 viewdisplay -N templ m off -I templ h off Build.panetab1.world.front1 viewdisplay -I templ b off Build.panetab1.world.front1 viewdisplay -I templ f off Build.panetab1.world.front1 viewdisplay -M curr_unsel wire -N curr_unsel n off -E curr_unsel n off -I curr_unsel n off Build.panetab1.world.front1 viewdisplay -N curr_unsel t off -E curr_unsel t off -I curr_unsel t on Build.panetab1.world.front1 viewdisplay -N curr_unsel l off -E curr_unsel g off -I curr_unsel l off Build.panetab1.world.front1 viewdisplay -N curr_unsel p off -I curr_unsel p off Build.panetab1.world.front1 viewdisplay -N curr_unsel m off -I curr_unsel h off Build.panetab1.world.front1 viewdisplay -I curr_unsel b off Build.panetab1.world.front1 viewdisplay -I curr_unsel f off Build.panetab1.world.front1 viewdisplay -A templ on -B bw -b off -d off -C 0 -e 1 -F off -f off -g on -G '*' -h off -H on -j off -J off Build.panetab1.world.front1 viewdisplay -A curr_all on -l 1 -L on -n 0.2 -o on -O on -q on -r off -s off -S on -t on Build.panetab1.world.front1 viewdisplay -V 2 -z off -y off -x off -T on -R on -i on -D on -k off Build.panetab1.world.front1 viewdisplay -Q on -m on -v on Build.panetab1.world.front1 viewdisplay -W off bound_box_wire 0 Build.panetab1.world.front1 viewdisplay -c off -P points -Z off -p 3 Build.panetab1.world.front1 viewbackground -b off -q 1 -S file -F '' -O off -r 1 1 -C '' -p '(Default Color)' 1 -t on -a on -o 0 0 -s 1 1 -i off -m 0 0 -M 1 1 Build.panetab1.world.front1 viewtransform Build.panetab1.world.front1 version ( 3 ) flag ( Fo ) orthowidth ( 2.22222 ) focal ( 50 ) aperture ( 41.4214 ) window ( 0 1 0 1 ) winroll ( 0 ) clear ( 1 ) nearfar ( 0.1 100000 ) resxy ( 1 1 ) aspect ( 1.33333 ) pixelaspect ( 1 ) txyz ( 0 0 3.68246 ) pxyz ( 0 0 0 ) rotation ( 1 0 0 0 1 0 0 0 1 ) homedistance ( 3.68246 ) homepixelwidth ( 0.0220022 ) homeorthowidth ( 2.22222 ) homeradius ( 3.4641 ) homeaxis ( 5 ) homecustom ( 0.707107 -0.353553 0.612372 0 0.866025 0.5 -0.707107 -0.353553 0.612372 ) adjustlimits ( 0 ) vieworthogrid -d on -o 0 0 0 -s 0.1 0.1 -r 0 0 Build.panetab1.world.front1 viewuvgrid -r off -s 0.1 0.1 -P on -S 1 1 -O 0 0 -C on -t on Build.panetab1.world.front1 viewdisplay -a on Build.panetab1.world.right1 viewdisplay -M unsel shade -N unsel n off -E unsel n off -I unsel n off Build.panetab1.world.right1 viewdisplay -N unsel t off -E unsel t off -I unsel t on Build.panetab1.world.right1 viewdisplay -N unsel l off -E unsel g off -I unsel l off Build.panetab1.world.right1 viewdisplay -N unsel p off -I unsel p off Build.panetab1.world.right1 viewdisplay -N unsel m off -I unsel h off Build.panetab1.world.right1 viewdisplay -I unsel b off Build.panetab1.world.right1 viewdisplay -I unsel f off Build.panetab1.world.right1 viewdisplay -M templ wire -N templ n off -E templ n off -I templ n off Build.panetab1.world.right1 viewdisplay -N templ t off -E templ t off -I templ t off Build.panetab1.world.right1 viewdisplay -N templ l off -E templ g off -I templ l off Build.panetab1.world.right1 viewdisplay -N templ p off -I templ p off Build.panetab1.world.right1 viewdisplay -N templ m off -I templ h off Build.panetab1.world.right1 viewdisplay -I templ b off Build.panetab1.world.right1 viewdisplay -I templ f off Build.panetab1.world.right1 viewdisplay -M curr_unsel wire -N curr_unsel n off -E curr_unsel n off -I curr_unsel n off Build.panetab1.world.right1 viewdisplay -N curr_unsel t off -E curr_unsel t off -I curr_unsel t on Build.panetab1.world.right1 viewdisplay -N curr_unsel l off -E curr_unsel g off -I curr_unsel l off Build.panetab1.world.right1 viewdisplay -N curr_unsel p off -I curr_unsel p off Build.panetab1.world.right1 viewdisplay -N curr_unsel m off -I curr_unsel h off Build.panetab1.world.right1 viewdisplay -I curr_unsel b off Build.panetab1.world.right1 viewdisplay -I curr_unsel f off Build.panetab1.world.right1 viewdisplay -A templ on -B bw -b off -d off -C 0 -e 1 -F off -f off -g on -G '*' -h off -H on -j off -J off Build.panetab1.world.right1 viewdisplay -A curr_all on -l 1 -L on -n 0.2 -o on -O on -q on -r off -s off -S on -t on Build.panetab1.world.right1 viewdisplay -V 2 -z off -y off -x off -T on -R on -i on -D on -k off Build.panetab1.world.right1 viewdisplay -Q on -m on -v on Build.panetab1.world.right1 viewdisplay -W off bound_box_wire 0 Build.panetab1.world.right1 viewdisplay -c off -P points -Z off -p 3 Build.panetab1.world.right1 viewbackground -b off -q 1 -S file -F '' -O off -r 1 1 -C '' -p '(Default Color)' 1 -t on -a on -o 0 0 -s 1 1 -i off -m 0 0 -M 1 1 Build.panetab1.world.right1 viewtransform Build.panetab1.world.right1 version ( 3 ) flag ( Fo ) orthowidth ( 2.22222 ) focal ( 50 ) aperture ( 41.4214 ) window ( 0 1 0 1 ) winroll ( 0 ) clear ( 1 ) nearfar ( 0.1 100000 ) resxy ( 1 1 ) aspect ( 1.33333 ) pixelaspect ( 1 ) txyz ( 0 0 3.68246 ) pxyz ( 0 0 0 ) rotation ( -4.37114e-008 0 1 0 1 0 -1 0 -4.37114e-008 ) homedistance ( 3.68246 ) homepixelwidth ( 0.0220022 ) homeorthowidth ( 2.22222 ) homeradius ( 3.4641 ) homeaxis ( 5 ) homecustom ( 0.707107 -0.353553 0.612372 0 0.866025 0.5 -0.707107 -0.353553 0.612372 ) adjustlimits ( 0 ) vieworthogrid -d on -o 0 0 0 -s 0.1 0.1 -r 0 0 Build.panetab1.world.right1 viewuvgrid -r off -s 0.1 0.1 -P on -S 1 1 -O 0 0 -C on -t on Build.panetab1.world.right1 viewsnapshotoption -s off -h off -a 1 -v '*' Build.panetab1.world cplane -o -8 0 -8 -n 0 1 0 -x 0 0 1 -l n -s 0.5 0.5 -c 32 32 -r 8 8 -d on Build.panetab1.world panepath -d Build -f -p panetab1 /obj/Particle_Vines_Using_PointSOP panepath -d Build -f -p panetab2 /obj/Particle_Vines_Using_PointSOP panepath -d Build -f -p panetab3 /obj/Particle_Vines_Using_PointSOP panepath -d Build -f -p panetab4 /img/ panepath -d Build -f -p panetab5 /obj/Particle_Vines_Using_PointSOP panepath -d Build -f -p panetab6 /obj/ panepath -d Build -f -p panetab7 /obj/Particle_Vines_Using_PointSOP panepath -d Build -f -p panetab8 /obj/ panepath -d Build -f -p panetab9 /obj/Particle_Vines_Using_PointSOP panepath -d Build -f -p FloatingHelp /obj/ desk set Build performance -l window -c on -g off -o on -v on -f on -m off -r on -i off -h off -p off -s off -e off doublebuffer on viewupdate -u always compproject -r 100 100 -a 1 -d i8 -p 0 255 -P full -f 0 -F 0 -l on audiopanel -s p '' audiopanel -s r off audiopanel -s s 1 audiopanel -s f 45 audiopanel -t p stop audiopanel -t l off audiopanel -t r on audiopanel -o m off audiopanel -o t on audiopanel -o u on audiopanel -o l 1 audiopanel -o r 1 audiopanel -o d 0 audiopanel -r d 0.2 audiopanel -m 0 audiopanel -a '' audiopanel -f 1 audiopanel -O 0 colorsettings -p -g 1 -l "" colorsettings -s -g 1 -l "" colorsettings -i -g 0.000000 -l "" colorsettings -r -g 1 -l "" texcache -a off -r 2048 2048 -m 10000 -M 988 shopvisible +OGL +OGL2 +I3D +VMantra +MI +RIB 0707070000010000000006660000000000000000010000001102415664600000700000000060.takesHoudiniTakeFile 1.0 take name Main kids 0 e 0707070000010000000006660000000000000000010000001102415664600000500000000027.cwdopcf /obj takeset Main 0707070000010000000006660000000000000000010000001102415664600001600000000000.custompanels0707070000010000000006660000000000000000010000001102415664600001300000000000TRAILER!!!