diff options
author | Anthony LaTorre <tlatorre9@gmail.com> | 2011-07-30 21:03:45 -0400 |
---|---|---|
committer | Anthony LaTorre <tlatorre9@gmail.com> | 2011-07-30 21:03:45 -0400 |
commit | 2b1a23e20c08423dd6f0d290ec87bef2f836fbe1 (patch) | |
tree | 5746b37bdb1152d37b8943193242ab4c4ef0010b /solids/__init__.py | |
parent | 1a6dc30108d3e78f72f773ec025fc98e246f68f5 (diff) | |
download | chroma-2b1a23e20c08423dd6f0d290ec87bef2f836fbe1.tar.gz chroma-2b1a23e20c08423dd6f0d290ec87bef2f836fbe1.tar.bz2 chroma-2b1a23e20c08423dd6f0d290ec87bef2f836fbe1.zip |
you can rotate just the camera by holding the control key and take movies by pressing the m key.
Diffstat (limited to 'solids/__init__.py')
-rw-r--r-- | solids/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solids/__init__.py b/solids/__init__.py index 072c220..d37af7e 100644 --- a/solids/__init__.py +++ b/solids/__init__.py @@ -28,9 +28,9 @@ def build_12inch_pmt_with_lc(outer_material=water, theta=np.pi/8): return pmt + build_light_collector(pmt, a=lc_12inch_a, b=lc_12inch_b, d=lc_12inch_d, rmin=lc_12inch_rmin, rmax=lc_12inch_rmax) @buildable('12inch_pmt_with_lc_hd') -def build_12inch_pmt_with_lc_hd(outer_material=water, theta=np.pi/32): +def build_12inch_pmt_with_lc_hd(outer_material=water, theta=np.pi/64): pmt = build_12inch_pmt(outer_material, theta) - return pmt + build_light_collector(pmt, a=lc_12inch_a, b=lc_12inch_b, d=lc_12inch_d, rmin=lc_12inch_rmin, rmax=lc_12inch_rmax, npoints=25) + return pmt + build_light_collector(pmt, a=lc_12inch_a, b=lc_12inch_b, d=lc_12inch_d, rmin=lc_12inch_rmin, rmax=lc_12inch_rmax, npoints=100) @buildable('8inch_pmt') |