I wonder if this might be related to the color picker/knobs differences bug? 

Concerning that bug:
> any knob that is
> using a color picker is rounding the results to 3 decimal places, or a funny
> rounded floating point which is still not correct. It's a surprisingly obvious
> bug - just use the picker in any knob and scrub. If you scrub an image, the
> picker returns only 3 decimal places,regardless of the true value that you
> will see in the viewer.

From the foundry:
I can confirm that this issue is logged as Bug 5819 and I have added your
comments to the bug.  Sadly there is no work around for this as there appears
to be some integral changes that have been made.

Our workaround for our specific problem was to get the values via python and 
sample coordinates instead of the color picker. It makes me wonder if the chan 
file export is using the same rounded math as the picker? I think Nathan's 
suggestion is unfortunately the solution. I hope foundry can give a priority 
boost to that bug - it seems pretty old?

JRAB

On Feb 26, 2011, at 2:35 PM, Ean Carr wrote:

> Hey Deke, I thought that at fist, too, so I fired up the chan file in a text 
> editor. Still the issue.
> 
> Nathan, I think something like what you said is going on here. Some quick 
> googling suggests that tcl uses double float precision internally so would 
> this really be the root of the problem? I admit I don't fully understand the 
> difference, anyway.
> 
> On Monday I might fire up an old Nuke 5.x to see if it has the problem.
> 
> Thanks for the replies, guys.
> 
> -E
> 
> 
> On Fri, Feb 25, 2011 at 5:54 PM, Nathan Rusch <nathan_ru...@hotmail.com> 
> wrote:
> The expression parser (which is being called by export_chan_file.tcl) seems 
> to be operating in single-precision float. Easiest way around this that I can 
> see is to roll your own in Python.
>  
> -Nathan
> 
>  
> From: Ean Carr
> Sent: Friday, February 25, 2011 4:20 AM
> To: Ron Ganbar
> Cc: Nuke user discussion
> Subject: Re: [Nuke-users] Re: chan exporter rounding values?
>  
> No, this is a chan file exported from Nuke (using the menu in the camera 
> node's properties). So Nuke itself is doing the rounding.
> 
> I just thought to have a look at export_chan_file.tcl (pasted below), which 
> presumably contains the proc that actually does the work. However my tcl 
> skills are almost non-existent. Can anyone comment on why the below might be 
> rounding in this case?
> 
> Thanks, -E
> 
> 
> 
> # Copyright (c) 2007 The Foundry Visionmongers Ltd.  All Rights Reserved.
> 
> # Write the animation from the current Camera or Axis node to a .chan file
> 
> proc export_chan_file {filename} {
>   set start [animation_start]
>   set increment [animation_increment]
>   set end [animation_end]
> 
>   set not_camera ![exists this.vaperture]
> 
>   set f [open $filename w]
>   for {set x $start} {$x<$end+1} {incr x} {
>     set line $x\t
>     append line [expression translate.x($x)]\t
>     append line [expression translate.y($x)]\t
>     append line [expression translate.z($x)]\t
>     append line [expression rotate.x($x)]\t
>     append line [expression rotate.y($x)]\t
>     append line [expression rotate.z($x)]
>     if $not_camera {
>       puts $f $line
>     } else {
>       append line \t
>       set va [expression vaperture($x)]
>       set vao [expression focal($x)]
>       append line [expr 2.0 * atan($va / (2.0 * $vao)) * 57.29577951]
>       puts $f $line
>     }
>   }
>   close $f
> }
> 
> 
> On Fri, Feb 25, 2011 at 11:52 AM, Ron Ganbar <ron...@gmail.com> wrote:
> Is this from Maya?
> Recently I had to copy and paste values from Nuke to Maya, and Maya kept 
> rounding numbers, which I found very odd.
> 
> 
> Ron Ganbar
> email: ron...@gmail.com
> tel: +44 (0)7968 007 309 [UK]
>      +972 (0)54 255 9765 [Israel]
> url: http://ronganbar.wordpress.com/
> 
> 
> On 25 February 2011 11:27, Ean Carr <eanc...@gmail.com> wrote:
> I should also mention that writing the camera to an FBX file doesn't show 
> this problem when reading it back into Nuke. 
> 
> 6.1v1 linux
> 
> -E
> 
> 
> On Fri, Feb 25, 2011 at 9:25 AM, Ean Carr <eanc...@gmail.com> wrote:
> Hi everyone,
> 
> I have a camera and when I export a chan file and bring it back in, it's 
> slightly off. Values are rounded anywhere from the nearest tenth to 
> thousandth. Comparing the two cameras in the 3D viewer shows a very 
> noticeable difference. I've been using the chan exporter for years and never 
> saw this until now. Or maybe I've been missing this the whole time.
> 
> The original camera is below and the chan file it exported is attached. You 
> can see the rounding right off the bat: the first value on frame 1, 
> translate.x:
> 
> original camera: -7013.19873
> exported chan: -7013.2
> 
> Anyone seeing similar behavior?
> 
> Thanks,
> Ean
> 
> 
> 
> set cut_paste_input [stack 0]
> version 6.1 v1
> push $cut_paste_input
> Camera2 {
> file_menu Axis/File
> snap_menu Axis/Snap
> translate {{curve x1 -7013.19873 -7008.010254 -7003.206543 -6998.695312 
> -6998.114258 -6993.770508 -6989.310547 -6986.418945 -6981.655762 -6976.792969 
> -6971.252441 -6965.768555 -6961.075684 -6956.264648 -6951.940918 -6946.859863 
> -6941.85498 -6936.835449 -6931.625 -6926.59375 -6921.889648 -6916.307617 
> -6911.214844 -6906.608887 -6901.141113 -6894.78418 -6888.626465 -6884.121094 
> -6880.199219 -6875.712891 -6870.659668 -6866.109375 -6861.953613 -6857.102051 
> -6850.068359 -6846.15625 -6841.564941 -6836.300781 -6830.316406 -6825.726074 
> -6820.286621 -6815.300293 -6809.902344 -6805.126465 -6800.987793 -6794.915039 
> -6789.164062 -6784.064453 -6778.237793 -6774.32959 -6770.494141 -6765.811035 
> -6761.964844 -6757.499512 -6753.363281 -6749.567383 -6745.240234 -6740.689941 
> -6736.453125 -6732.233887 -6727.983887 -6723.213867 -6718.593262 -6714.065918 
> -6709.305176 -6704.720703 -6700.060059 -6695.265137 -6690.556152 -6685.711426 
> -6680.805664 -6676.520508 -6671.10498 -6666.279785 -6661.427734 -6656.455078 
> -6651.59668 -6646.587891 -6641.73584 -6636.631836 -6631.989258 -6626.833984 
> -6621.936523 -6616.96875 -6611.912598 -6606.967773 -6601.942383 -6597.120605 
> -6591.960449 -6587.016602 -6580.932129 -6576.091309 -6571.113281 -6566.078125 
> -6561.171387 -6556.254395 -6551.396973 -6546.549805 -6541.731934 -6536.820801 
> -6531.987305 -6527.188965 -6522.36084 -6517.502441 -6512.584961 -6507.915527 
> -6503.244141 -6498.484375 -6494.185059 -6488.259277 -6483.14502 -6478.160156 
> -6473.367188 -6469.619141 -6463.240723 -6456.921387 -6450.993164 -6445.617188 
> -6439.720703 -6434.220703 -6428.648438 -6422.081543 -6415.60498 -6410.683594 
> -6405.362305 -6400.720703 -6395.57666 -6390.192383 -6385.178711 -6378.875977 
> -6373.686523 -6368.91748 -6363.972656 -6359.166504 -6354.373535 -6349.499512 
> -6344.248535 -6339.412109 -6334.489746 -6329.562988 -6324.543457 -6319.518555 
> -6314.543457} {curve x1 4552.32959 4548.408691 4544.687988 4541.094727 
> 4536.491699 4533.203613 4529.69873 4528.416504 4524.717285 4521.064453 
> 4516.684082 4512.192871 4508.533691 4504.614258 4501.361328 4497.233398 
> 4493.300781 4489.425293 4485.078125 4480.995605 4477.154297 4472.73584 
> 4468.764648 4465.125977 4460.527344 4455.135742 4449.927246 4446.257812 
> 4443.755371 4440.303223 4436.413086 4432.98877 4429.878418 4426.041016 
> 4418.873535 4416.15332 4412.671387 4408.40625 4403.663574 4400.022949 
> 4395.506836 4391.322266 4386.932617 4382.83252 4379.364258 4374.154297 
> 4369.34375 4365.285645 4360.157715 4357.120605 4354.092773 4350.362305 
> 4347.721191 4344.288086 4341.113281 4338.123047 4335.001953 4331.432129 
> 4328.396973 4325.444824 4322.259766 4318.620605 4315.305664 4312.095215 
> 4308.686035 4305.312012 4302.023926 4298.711914 4295.345703 4291.773926 
> 4288.015625 4284.789062 4280.26416 4276.712402 4272.958984 4269.305664 
> 4265.868164 4262.134766 4258.584961 4254.765625 4251.166016 4247.217773 
> 4243.6875 4239.769531 4235.880371 4232.33252 4228.625 4224.908203 4221.055664 
> 4217.388184 4212.181641 4208.53418 4204.855957 4201.087891 4197.501953 
> 4193.903809 4189.94873 4186.481934 4182.597168 4179.022949 4175.179688 
> 4171.505859 4167.652832 4164.056641 4160.394043 4156.723633 4153.14209 
> 4149.45459 4146.870605 4141.968262 4137.748535 4133.657227 4129.90625 
> 4129.624023 4124.646484 4119.41748 4114.480469 4110.231934 4105.331055 
> 4100.963867 4096.681641 4090.957031 4086.073486 4082.320557 4078.540039 
> 4075.308594 4071.352295 4066.909424 4063.049072 4057.713379 4053.874756 
> 4050.47876 4047.210205 4043.510254 4039.865723 4036.296387 4032.652832 
> 4029.043945 4025.340088 4021.500488 4017.869873 4014.22583 4010.380615} 
> {curve x1 6578.242188 6569.63916 6561.753418 6554.188477 6541.977051 
> 6534.942383 6527.773438 6523.839844 6516.130859 6508.005859 6498.790527 
> 6489.489258 6482.056152 6473.943848 6466.878906 6458.259766 6450.016602 
> 6441.714355 6432.803223 6424.450195 6416.597168 6407.116699 6398.477539 
> 6390.801758 6381.1875 6370.349609 6359.649414 6352.074707 6346.063965 
> 6338.613281 6330.237305 6322.688477 6315.68457 6307.429199 6294.30127 
> 6287.790039 6280.098633 6271.254883 6261.370605 6253.585938 6244.216309 
> 6235.688965 6226.512207 6218.23291 6211.071289 6200.705566 6190.898438 
> 6182.335449 6172.438965 6166.023438 6159.452148 6151.644043 6145.392578 
> 6137.935547 6131.055664 6124.645508 6117.649414 6109.980469 6103.224121 
> 6096.301758 6089.54834 6081.702637 6074.34082 6067.077637 6059.512207 
> 6052.025391 6044.736328 6037.197266 6029.801758 6021.950684 6014.022949 
> 6006.407227 5997.493652 5989.869629 5982.034668 5974.125488 5966.387207 
> 5958.376953 5950.531738 5942.342773 5934.805176 5926.412109 5918.664551 
> 5910.737305 5902.742188 5894.911133 5886.851074 5879.030273 5870.795898 
> 5862.840332 5853.223633 5845.398438 5837.418457 5829.376953 5821.42627 
> 5813.55957 5805.541504 5797.882324 5789.899414 5782.180664 5774.22168 
> 5766.568359 5758.713867 5751.012695 5743.0625 5735.478027 5727.775879 
> 5720.054688 5713.293945 5703.622559 5695.222656 5686.962402 5679.106445 
> 5676.717285 5667.01123 5656.655273 5646.945312 5638.400879 5628.730469 
> 5620.013672 5611.253418 5600.629883 5590.63916 5582.783203 5574.858398 
> 5567.918457 5559.818848 5551.224121 5543.385742 5533.231934 5525.080566 
> 5517.76123 5510.559082 5502.969727 5495.496582 5487.95752 5480.49707 
> 5472.973145 5465.279785 5457.789551 5450.016113 5442.320801 5434.506348}}
> rotate {{curve x1 -25.30667904 -25.30780943 -25.31289109 -25.32227406 
> -25.29857502 -25.27442176 -25.28997922 -25.28948233 -25.30002814 -25.29954149 
> -25.301331 -25.30798872 -25.31700287 -25.32697153 -25.335359 -25.34380965 
> -25.34957775 -25.35051348 -25.36702376 -25.37906026 -25.38639076 -25.37839944 
> -25.37589788 -25.39693657 -25.4017177 -25.39229546 -25.38745285 -25.40617611 
> -25.42694842 -25.41373713 -25.4094085 -25.41534564 -25.42183773 -25.42694501 
> -25.42582486 -25.43299826 -25.43993603 -25.4287977 -25.42809248 -25.4385273 
> -25.440631 -25.45684587 -25.45770647 -25.43291971 -25.45220646 -25.4692068 
> -25.47019376 -25.47652023 -25.45619188 -25.47227356 -25.48392415 -25.47876394 
> -25.48491624 -25.48828181 -25.47897397 -25.4606998 -25.46689478 -25.48034343 
> -25.48781736 -25.47962967 -25.45849707 -25.47124391 -25.4834836 -25.47972188 
> -25.47865295 -25.47186204 -25.47218818 -25.47682246 -25.4837534 -25.49665392 
> -25.49462535 -25.4814926 -25.46222293 -25.45726251 -25.47254676 -25.48138674 
> -25.49216136 -25.49835805 -25.4997958 -25.50692823 -25.47887323 -25.48953344 
> -25.49448362 -25.51219772 -25.52476185 -25.52553708 -25.52380392 -25.51215162 
> -25.51679444 -25.52237129 -25.5382566 -25.53170474 -25.53990438 -25.55058851 
> -25.55568895 -25.55858666 -25.54076157 -25.5414702 -25.5658813 -25.56996063 
> -25.54578518 -25.53654564 -25.55714549 -25.56576006 -25.57261245 -25.55788315 
> -25.54225226 -25.57011602 -25.60970038 -25.623733 -25.60137096 -25.57855642 
> -25.57005796 -25.59743165 -25.62134927 -25.62593574 -25.62127584 -25.61533187 
> -25.6343881 -25.66543814 -25.67708532 -25.65591002 -25.64960234 -25.6675333 
> -25.67527702 -25.70281122 -25.70271219 -25.69172753 -25.68470269 -25.67765905 
> -25.68979118 -25.69349826 -25.69694238 -25.67817132 -25.66937745 -25.67284548 
> -25.69598274 -25.69434008 -25.67932562 -25.67485526 -25.68846783 -25.6997957 
> -25.68829366} {curve x1 -47.62530399 -47.63127016 -47.63895754 -47.65391565 
> -47.73382886 -47.7541999 -47.76066468 -47.77156907 -47.78092985 -47.80183023 
> -47.82206466 -47.84489115 -47.86596229 -47.88491606 -47.89963512 -47.91874599 
> -47.92738276 -47.94336199 -47.95642814 -47.96939526 -47.98082216 -47.99587249 
> -48.01771885 -48.03406007 -48.06548577 -48.08490742 -48.10895993 -48.12055417 
> -48.13125025 -48.13492148 -48.13948063 -48.14719191 -48.16174705 -48.18158874 
> -48.19994488 -48.22556492 -48.23906479 -48.25395118 -48.26721541 -48.28251162 
> -48.3021689 -48.31914875 -48.3373273 -48.35606251 -48.37847919 -48.39580055 
> -48.41138363 -48.42123276 -48.43391642 -48.43547029 -48.43715052 -48.43989625 
> -48.44037095 -48.45621699 -48.47578207 -48.49932915 -48.52330311 -48.54868409 
> -48.58061181 -48.60349978 -48.63591244 -48.66588331 -48.68731303 -48.69693335 
> -48.7118539 -48.73625475 -48.76560065 -48.78833835 -48.81401645 -48.83112266 
> -48.84847817 -48.86851112 -48.88680236 -48.91352548 -48.94002661 -48.97133278 
> -49.00431577 -49.02189667 -49.03628788 -49.04224039 -49.06716375 -49.0820843 
> -49.11708219 -49.14548212 -49.17485534 -49.19613821 -49.20830961 -49.22991008 
> -49.24180144 -49.26549879 -49.27257486 -49.29107784 -49.30696145 -49.32526977 
> -49.34565789 -49.36637726 -49.3800274 -49.40052821 -49.41794861 -49.44289929 
> -49.45912099 -49.48459076 -49.50064854 -49.52396339 -49.54101496 -49.55992433 
> -49.58149066 -49.60271205 -49.62551464 -49.65250072 -49.66373979 -49.67079197 
> -49.67436757 -49.6785374 -49.71145891 -49.7515248 -49.79261863 -49.82296858 
> -49.85533343 -49.86703696 -49.88511306 -49.90001994 -49.91628262 -49.92580391 
> -49.94988032 -49.97151495 -50.01007478 -50.04158927 -50.0654403 -50.09561607 
> -50.1152597 -50.13937709 -50.1533824 -50.17380125 -50.18947312 -50.20776778 
> -50.2274797 -50.25379301 -50.27392157 -50.29413552 -50.31566769 -50.33523618 
> -50.35357183} {curve x1 -0.006908065166 -0.01534019466 -0.01952487781 
> -0.01295775681 0.03963739869 0.04046041314 0.03362498793 0.02698433651 
> 0.02197928028 0.0230985175 0.0229630543 0.02510019648 0.01234122969 
> 0.01186104955 0.007395946779 0.0032799749 0.001853152802 0.001847977424 
> 0.006766879019 0.007807490689 0.008923869768 0.006543102362 0.006422835337 
> 0.01043655907 0.01539328371 0.009486920981 0.007610211447 0.002003035308 
> 0.005722035167 0.001878555486 -2.071890141e-05 -0.00329917647 -0.005804053299 
> -0.007778549931 -0.003464778125 0.003009066019 -3.831926418e-05 
> -0.004554233735 -0.01126973876 -0.01072449256 -0.01642633815 -0.01426541204 
> -0.01704163881 -0.01692731985 -0.01308527675 -0.01301174216 -0.01511850367 
> -0.01885250772 -0.02682979181 -0.03726532535 -0.03966272175 -0.04037485234 
> -0.03873016414 -0.03334845865 -0.03039887414 -0.02713857939 -0.03158234782 
> -0.0324648663 -0.03125923452 -0.03502310565 -0.03519010844 -0.03526847886 
> -0.03861264686 -0.04619793212 -0.04146484115 -0.03146133208 -0.02106326453 
> -0.01333338387 -0.01013123327 -0.01025818207 -0.01384608161 -0.01776264732 
> -0.01814653697 -0.01436977253 -0.007662521759 0.0002898417705 0.007111438384 
> 0.003802433512 -0.006131681849 -0.01606762482 -0.01429271779 -0.01338497714 
> -0.01073235995 -0.00641970539 0.002856712238 0.004097818767 0.001849762303 
> -0.002817499723 -0.01208138985 -0.01046044722 -0.01083288763 -0.005243866896 
> -0.001575312742 0.001365488071 0.002249641656 0.0003106111537 -0.001339759803 
> 0.0004434507823 0.007538888831 0.008557298218 0.004185411024 -0.001156263711 
> -0.007101730044 -0.01387119456 -0.0153966988 -0.0121412107 -0.006165720236 
> 9.080042836e-05 0.0007547512237 0.01611009672 0.02158981609 0.01260247275 
> -0.004202707444 -0.03410564249 -0.03128748909 -0.01641778874 -0.003149412149 
> 0.003422555725 0.00443404967 -0.006046761803 -0.007073404602 -0.007904234749 
> -0.007493232785 -0.009742246826 -0.007162678977 -0.01127290289 0.002173338763 
> 0.01242860392 0.01000216671 0.00105640888 -0.009575865185 -0.01368789586 
> -0.01391358059 -0.009570472404 -0.007022363279 -0.00289607212 0.001351682722 
> 0.007993393231 0.008169844231 0.0170960352 0.01679946725 0.01618879231 
> 0.01731990232}}
> scaling {{curve x1 1 0.9999999404 1.000000119 1 0.9999999404 0.9999999404 
> 0.9999999404 1 0.9999999404 1 1 1 1 0.9999999404 0.9999998808 1 1 1 1 1 1 
> 0.9999999404 1 1 1 1 1 0.9999999404 1 1 0.9999999404 1 1 1 0.9999999404 1 
> 0.9999999404 1 1 1 1 1 1 0.9999999404 0.9999999404 0.9999999404 1 1 
> 1.000000119 1.000000119 1 1 1 1 1 0.9999999404 0.9999999404 0.9999999404 1 1 
> 1 1 0.9999999404 1 1 0.9999999404 1 1 1 1 1 1 1 0.9999999404 1 1 0.9999999404 
> 1 0.9999999404 1 0.9999999404 1 0.9999999404 1 1 1 1 1 1 1 1 1 1 0.9999999404 
> 1 1 1 0.9999999404 0.9999999404 0.9999999404 1 0.9999999404 0.9999999404 1 
> 0.9999999404 1 1 0.9999999404 1 1 0.9999999404 1 1 1 1 1 1 0.9999999404 
> 0.9999999404 1 1 1 1 1 0.9999999404 0.9999999404 1 0.9999999404 1 1 1 
> 0.9999999404 0.9999999404 1 1 1 1 0.9999999404 0.9999999404 0.9999999404 1 
> 0.9999999404 1} {curve x1 0.9999999404 0.9999999404 1 1 0.9999999404 1 
> 0.9999998808 1 0.9999999404 0.9999999404 0.9999999404 0.9999999404 1 
> 0.9999999404 1 1 1 1 1 0.9999999404 0.9999999404 0.9999999404 1 0.9999999404 
> 0.9999999404 1 1 1 1 1 1 0.9999999404 1 0.9999998808 0.9999999404 
> 0.9999998808 0.9999999404 0.9999999404 0.9999999404 0.9999999404 1 
> 0.9999999404 0.9999999404 0.9999999404 1 0.9999999404 1 1 0.9999999404 
> 0.9999999404 1 1 0.9999999404 1 1 1 1 1 1 0.9999999404 1 0.9999999404 
> 0.9999999404 1 0.9999999404 0.9999999404 1 1 1 1 1 0.9999999404 0.9999999404 
> 0.9999998808 1 1 1 1 1 1 0.9999999404 0.9999999404 0.9999999404 1 
> 0.9999999404 1 1 1 1 1 1 1 1 0.9999999404 1 1 1 1 0.9999999404 1 1 
> 0.9999999404 1 1 0.9999999404 0.9999998808 0.9999999404 0.9999999404 1 
> 0.9999999404 0.9999999404 1 1 0.9999999404 1 0.9999999404 1 1 1 1 1 1 
> 0.9999999404 1 1 0.9999999404 0.9999998808 1 1 0.9999998808 0.9999999404 1 1 
> 0.9999999404 1 1 0.9999999404 0.9999999404 1 0.9999999404 0.9999999404 1 1} 
> {curve x1 1 0.9999998808 1 1 0.9999998808 1 1 1 1 0.9999999404 1 1 1 1 
> 0.9999998808 0.9999999404 1 0.9999999404 1 0.9999998808 1 0.9999999404 
> 0.9999999404 1 1 1 0.9999999404 0.9999999404 1 1.000000119 0.9999999404 
> 0.9999998808 1 1 0.9999999404 0.9999999404 0.9999999404 1 1 1 1 1 1 
> 0.9999998808 1 1 1 1 1 1 0.9999999404 1 1 0.9999999404 1 1 1 0.9999999404 
> 0.9999999404 1 1 1 0.9999999404 1 1 0.9999999404 0.9999999404 1 1 1 1 1 1 
> 0.9999999404 1 1 0.9999999404 1 0.9999999404 0.9999999404 1 0.9999998808 
> 0.9999999404 1 1 1 1 0.9999999404 1 1 1 0.9999999404 1 0.9999998808 
> 0.9999999404 1 1 0.9999999404 0.9999998808 0.9999999404 1 0.9999998808 1 1 
> 0.9999998808 1 1 0.9999999404 1 0.9999999404 0.9999999404 1 1 1 1 1 1 1 1 
> 0.9999999404 1 1 1 1 0.9999999404 0.9999998808 0.9999999404 0.9999999404 1 1 
> 0.9999999404 0.9999999404 1 1 0.9999999404 0.9999999404 1 1 1 1 0.9999998808 
> 1 1}}
> focal 31.5
> haperture 59.7509304
> vaperture 22.6922173
> near 5000
> far 20000
> win_translate {-0.09012138623 0}
> focal_point 5
> name Camera10_original
> selected true
> xpos 1953
> ypos 385
> }
> 
>  
>  
> _______________________________________________
> Nuke-users mailing list
> Nuke-users@support.thefoundry.co.uk
> http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
> 
>  
> 
> 
> _______________________________________________
> Nuke-users mailing list
> Nuke-users@support.thefoundry.co.uk
> http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
> 
> 
> _______________________________________________
> Nuke-users mailing list
> Nuke-users@support.thefoundry.co.uk
> http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
> 
> 
> _______________________________________________
> Nuke-users mailing list
> Nuke-users@support.thefoundry.co.uk
> http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

_______________________________________________
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Reply via email to