# HG changeset patch # User Matthew Turk # Date 1282840793 21600 # Branch yt2-reorganization # Node ID dc8e6ae6842c1d736381e4db493beda5835f37af # Parent bc8c75c16f4381751f1ff69b3b75829fa076df81 Adding api.py modules for everthing diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af clean.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/clean.sh Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,4 @@ +find . -name "*.so" -exec rm -v {} \; +find . -name "*.pyc" -exec rm -v {} \; +find . -name "__config__.py" -exec rm -v {} \; +rm -rvf build dist diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af make_apipy.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/make_apipy.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,42 @@ +ss = r"""\"\"\" +API for %s + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" +""" + +import sys, os +n = sys.argv[-1] + +fn = os.path.join(os.path.abspath(n), "api.py") +if os.path.exists(fn): + print "%s exists! Not overwriting." % fn +bn = n.replace("/",".") + +print "%s -> %s" % (bn, fn) + +open(fn, "w").write(ss % (bn)) diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af make_setuppy.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/make_setuppy.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,25 @@ +ss = r"""#!/usr/bin/env python +import setuptools +import os, sys, os.path + +import os.path + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + config = Configuration('%s',parent_package,top_path) + config.make_config_py() # installs __config__.py + config.make_svn_version_py() + return config +""" + +import sys, os +n = sys.argv[-1] + +fn = os.path.join(os.path.abspath(n), "setup.py") +if os.path.exists(fn): + print "%s exists! Not overwriting." % fn +bn = os.path.basename(n) + +print "%s -> %s" % (bn, fn) + +open(fn, "w").write(ss % bn) diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/analysis_modules/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/analysis_modules/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.analysis_modules + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/data_objects/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/data_objects/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.data_objects + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/fido/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/fido/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.fido + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/frontends/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/frontends/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.frontends + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/frontends/chombo/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/frontends/chombo/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.frontends.chombo + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/frontends/enzo/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/frontends/enzo/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.frontends.enzo + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/frontends/flash/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/frontends/flash/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.frontends.flash + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/frontends/gadget/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/frontends/gadget/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.frontends.gadget + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/frontends/orion/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/frontends/orion/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.frontends.orion + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/frontends/ramses/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/frontends/ramses/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.frontends.ramses + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/frontends/tiger/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/frontends/tiger/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.frontends.tiger + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/utilities/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/utilities/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.utilities + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/visualization/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/visualization/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.visualization + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/visualization/delaunay/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/visualization/delaunay/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.visualization.delaunay + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/visualization/image_panner/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/visualization/image_panner/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.visualization.image_panner + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/visualization/opengl_widgets/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/visualization/opengl_widgets/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.visualization.opengl_widgets + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\" diff -r bc8c75c16f4381751f1ff69b3b75829fa076df81 -r dc8e6ae6842c1d736381e4db493beda5835f37af yt/visualization/volume_rendering/api.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/yt/visualization/volume_rendering/api.py Thu Aug 26 10:39:53 2010 -0600 @@ -0,0 +1,29 @@ +\"\"\" +API for yt.visualization.volume_rendering + +Author: Matthew Turk +Affiliation: UCSD +Author: J.S. Oishi +Affiliation: KIPAC/SLAC/Stanford +Author: Britton Smith +Affiliation: MSU +Homepage: http://yt.enzotools.org/ +License: + Copyright (C) 2010 Matthew Turk. All Rights Reserved. + + This file is part of yt. + + yt is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +\"\"\"