annotate tool_dependencies.xml @ 0:a357536fb363 draft

Uploaded
author greg
date Sat, 14 Nov 2015 13:47:18 -0500
parents
children ee534b2a2094
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a357536fb363 Uploaded
greg
parents:
diff changeset
1 <?xml version="1.0"?>
a357536fb363 Uploaded
greg
parents:
diff changeset
2 <tool_dependency>
a357536fb363 Uploaded
greg
parents:
diff changeset
3
a357536fb363 Uploaded
greg
parents:
diff changeset
4 <package name="icqsol" version="1.0">
a357536fb363 Uploaded
greg
parents:
diff changeset
5 <install version="1.0">
a357536fb363 Uploaded
greg
parents:
diff changeset
6 <actions_group>
a357536fb363 Uploaded
greg
parents:
diff changeset
7 <actions os="linux" architecture="x86_64">
a357536fb363 Uploaded
greg
parents:
diff changeset
8 <!-- Install and compile Anaconda 2.3.0 which provides Python 2.7.10 -->
a357536fb363 Uploaded
greg
parents:
diff changeset
9 <action type="download_file" target_filename="Anaconda-2.3.0-Linux-x86_64.sh">https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda-2.3.0-Linux-x86_64.sh</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
10 <action type="shell_command">bash Anaconda-2.3.0-Linux-x86_64.sh -b -f -p $INSTALL_DIR</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
11
a357536fb363 Uploaded
greg
parents:
diff changeset
12 <!-- Install VTK 6.3.0 into the above Python -->
a357536fb363 Uploaded
greg
parents:
diff changeset
13 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
14 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
15 export PATH=$INSTALL_DIR/bin:$PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
16 export PYTHONPATH=$INSTALL_DIR/lib/python2.7/site-packages:$INSTALL_DIR/lib/python2.7:$INSTALL_DIR/lib:$INSTALL_DIR:$PYTHONPATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
17 export LD_LIBRARY_PATH=$INSTALL_DIR/lib:$LD_LIBRARY_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
18 export PKG_CONFIG_PATH=$INSTALL_DIR/lib/pkgconfig:$PKG_CONFIG_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
19 conda install -c https://conda.anaconda.org/anaconda vtk --yes
a357536fb363 Uploaded
greg
parents:
diff changeset
20 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
21 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
22
a357536fb363 Uploaded
greg
parents:
diff changeset
23 <!-- Install and compile pycsg version 0.3.0 as a package in the above Python -->
a357536fb363 Uploaded
greg
parents:
diff changeset
24 <action type="make_directory">$TMP_WORK_DIR/pycsg</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
25 <action type="change_directory">$TMP_WORK_DIR/pycsg</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
26 <action type="shell_command">git clone https://github.com/pletzer/pycsg.git</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
27 <action type="change_directory">pycsg</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
28 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
29 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
30 export PATH=$INSTALL_DIR/bin:$PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
31 export PYTHONPATH=$INSTALL_DIR/lib/python2.7/site-packages:$INSTALL_DIR/lib/python2.7:$INSTALL_DIR/lib:$INSTALL_DIR:$PYTHONPATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
32 export LD_LIBRARY_PATH=$INSTALL_DIR/lib:$LD_LIBRARY_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
33 export PKG_CONFIG_PATH=$INSTALL_DIR/lib/pkgconfig:$PKG_CONFIG_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
34 $INSTALL_DIR/bin/python setup.py install --prefix=$INSTALL_DIR
a357536fb363 Uploaded
greg
parents:
diff changeset
35 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
36 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
37
a357536fb363 Uploaded
greg
parents:
diff changeset
38 <!-- Install and compile pytriangle version 1.0 as a package in the above Python -->
a357536fb363 Uploaded
greg
parents:
diff changeset
39 <action type="make_directory">$TMP_WORK_DIR/pytriangle</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
40 <action type="change_directory">$TMP_WORK_DIR/pytriangle</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
41 <action type="shell_command">git clone https://github.com/pletzer/pytriangle.git</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
42 <action type="change_directory">pytriangle</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
43 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
44 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
45 export PATH=$INSTALL_DIR/bin:$PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
46 export PYTHONPATH=$INSTALL_DIR/lib/python2.7/site-packages:$INSTALL_DIR/lib/python2.7:$INSTALL_DIR/lib:$INSTALL_DIR:$PYTHONPATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
47 export LD_LIBRARY_PATH=$INSTALL_DIR/lib:$LD_LIBRARY_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
48 export PKG_CONFIG_PATH=$INSTALL_DIR/lib/pkgconfig:$PKG_CONFIG_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
49 $INSTALL_DIR/bin/python setup.py install --prefix=$INSTALL_DIR
a357536fb363 Uploaded
greg
parents:
diff changeset
50 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
51 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
52
a357536fb363 Uploaded
greg
parents:
diff changeset
53 <!-- Install and compile icqsol version 1.0 as a package in the above Python -->
a357536fb363 Uploaded
greg
parents:
diff changeset
54 <action type="make_directory">$TMP_WORK_DIR/icqsol</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
55 <action type="change_directory">$TMP_WORK_DIR/icqsol</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
56 <action type="shell_command">git clone https://github.com/pletzer/icqsol.git</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
57 <action type="change_directory">icqsol</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
58 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
59 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
60 export PATH=$INSTALL_DIR/bin:$PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
61 export PYTHONPATH=$INSTALL_DIR/lib/python2.7/site-packages:$INSTALL_DIR/lib/python2.7:$INSTALL_DIR/lib:$INSTALL_DIR:$PYTHONPATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
62 export LD_LIBRARY_PATH=$INSTALL_DIR/lib:$LD_LIBRARY_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
63 cmake -DINSTALL_USER=OFF -DINSTALL_PREFIX=ON -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR
a357536fb363 Uploaded
greg
parents:
diff changeset
64 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
65 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
66
a357536fb363 Uploaded
greg
parents:
diff changeset
67 <action type="set_environment">
a357536fb363 Uploaded
greg
parents:
diff changeset
68 <!--
a357536fb363 Uploaded
greg
parents:
diff changeset
69 Only the PATH environment variable needs to be modified for an Anaconda environment so that it gets
a357536fb363 Uploaded
greg
parents:
diff changeset
70 the right Python from the environment bin directory.
a357536fb363 Uploaded
greg
parents:
diff changeset
71 -->
a357536fb363 Uploaded
greg
parents:
diff changeset
72 <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR/bin</environment_variable>
a357536fb363 Uploaded
greg
parents:
diff changeset
73 <environment_variable action="set_to" name="ANACONDAHOME">$INSTALL_DIR</environment_variable>
a357536fb363 Uploaded
greg
parents:
diff changeset
74 <environment_variable action="set_to" name="ICQSOL_ROOT_DIR">$INSTALL_DIR</environment_variable>
a357536fb363 Uploaded
greg
parents:
diff changeset
75 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
76 </actions>
a357536fb363 Uploaded
greg
parents:
diff changeset
77
a357536fb363 Uploaded
greg
parents:
diff changeset
78 <actions os="darwin" architecture="x86_64">
a357536fb363 Uploaded
greg
parents:
diff changeset
79 <!-- Install and compile Anaconda 2.3.0 which provides Python 2.7.10 -->
a357536fb363 Uploaded
greg
parents:
diff changeset
80 <action type="download_file" target_filename="Anaconda-2.3.0-MacOSX-x86_64.sh">https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda-2.3.0-MacOSX-x86_64.sh</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
81 <action type="shell_command">bash Anaconda-2.3.0-MacOSX-x86_64.sh -b -f -p $INSTALL_DIR</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
82
a357536fb363 Uploaded
greg
parents:
diff changeset
83 <!-- Install VTK 6.3.0 into the above Python -->
a357536fb363 Uploaded
greg
parents:
diff changeset
84 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
85 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
86 export PATH=$INSTALL_DIR/bin:$PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
87 export PYTHONPATH=$INSTALL_DIR/lib/python2.7/site-packages:$INSTALL_DIR/lib/python2.7:$INSTALL_DIR/lib:$INSTALL_DIR:$PYTHONPATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
88 export DYLD_LIBRARY_PATH=$INSTALL_DIR/lib:$DYLD_LIBRARY_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
89 export PKG_CONFIG_PATH=$INSTALL_DIR/lib/pkgconfig:$PKG_CONFIG_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
90 conda install -c https://conda.anaconda.org/anaconda vtk --yes
a357536fb363 Uploaded
greg
parents:
diff changeset
91 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
92 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
93 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
94 ln -s $INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/bin/vtkpython $INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/bin/python
a357536fb363 Uploaded
greg
parents:
diff changeset
95 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
96
a357536fb363 Uploaded
greg
parents:
diff changeset
97 <!-- Install and compile pycsg version 0.3.0 as a package in the above Python -->
a357536fb363 Uploaded
greg
parents:
diff changeset
98 <action type="make_directory">$TMP_WORK_DIR/pycsg</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
99 <action type="change_directory">$TMP_WORK_DIR/pycsg</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
100 <action type="shell_command">git clone https://github.com/pletzer/pycsg.git</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
101 <action type="change_directory">pycsg</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
102 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
103 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
104 export PATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/bin:$PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
105 export PYTHONPATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib/python2.7/site-packages:$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib/python2.7:pkgs/vtk-6.3.0-py27_0/lib:$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/bin &&
a357536fb363 Uploaded
greg
parents:
diff changeset
106 export DYLD_LIBRARY_PATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib:$DYLD_LIBRARY_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
107 export PKG_CONFIG_PATH=$INSTALL_DIR/lib/pkgconfig:$PKG_CONFIG_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
108 $INSTALL_DIR/bin/python setup.py install --prefix=$INSTALL_DIR
a357536fb363 Uploaded
greg
parents:
diff changeset
109 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
110 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
111
a357536fb363 Uploaded
greg
parents:
diff changeset
112 <!-- Install and compile pytriangle version 1.0 as a package in the above Python -->
a357536fb363 Uploaded
greg
parents:
diff changeset
113 <action type="make_directory">$TMP_WORK_DIR/pytriangle</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
114 <action type="change_directory">$TMP_WORK_DIR/pytriangle</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
115 <action type="shell_command">git clone https://github.com/pletzer/pytriangle.git</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
116 <action type="change_directory">pytriangle</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
117 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
118 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
119 export PATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/bin:$PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
120 export PYTHONPATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib/python2.7/site-packages:$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib/python2.7:pkgs/vtk-6.3.0-py27_0/lib:$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/bin &&
a357536fb363 Uploaded
greg
parents:
diff changeset
121 export DYLD_LIBRARY_PATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib:$DYLD_LIBRARY_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
122 export PKG_CONFIG_PATH=$INSTALL_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
a357536fb363 Uploaded
greg
parents:
diff changeset
123 $INSTALL_DIR/bin/python setup.py install --prefix=$INSTALL_DIR
a357536fb363 Uploaded
greg
parents:
diff changeset
124 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
125 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
126
a357536fb363 Uploaded
greg
parents:
diff changeset
127 <!-- Install and compile icqsol version 1.0 as a package in the above Python -->
a357536fb363 Uploaded
greg
parents:
diff changeset
128 <action type="make_directory">$TMP_WORK_DIR/icqsol</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
129 <action type="change_directory">$TMP_WORK_DIR/icqsol</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
130 <action type="shell_command">git clone https://github.com/pletzer/icqsol.git</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
131 <action type="change_directory">icqsol</action>
a357536fb363 Uploaded
greg
parents:
diff changeset
132 <action type="shell_command">
a357536fb363 Uploaded
greg
parents:
diff changeset
133 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
134 export PATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/bin:$PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
135 export PYTHONPATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib/python2.7/site-packages:$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib/python2.7:pkgs/vtk-6.3.0-py27_0/lib:$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/bin &&
a357536fb363 Uploaded
greg
parents:
diff changeset
136 export DYLD_LIBRARY_PATH=$INSTALL_DIR/pkgs/vtk-6.3.0-py27_0/lib:$DYLD_LIBRARY_PATH &&
a357536fb363 Uploaded
greg
parents:
diff changeset
137 cmake -DINSTALL_USER=OFF -DINSTALL_PREFIX=ON -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR
a357536fb363 Uploaded
greg
parents:
diff changeset
138 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
139 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
140
a357536fb363 Uploaded
greg
parents:
diff changeset
141 <action type="set_environment">
a357536fb363 Uploaded
greg
parents:
diff changeset
142 <!--
a357536fb363 Uploaded
greg
parents:
diff changeset
143 Only the PATH environment variable needs to be modified for an Anaconda environment so that it gets
a357536fb363 Uploaded
greg
parents:
diff changeset
144 the right Python from the environment bin directory. The way Anaconda environments work is that they
a357536fb363 Uploaded
greg
parents:
diff changeset
145 hard link everything that is installed into the environment. For all intents and purposes, this means
a357536fb363 Uploaded
greg
parents:
diff changeset
146 that each environment is a completely separate installation of Python and all the packages. By using
a357536fb363 Uploaded
greg
parents:
diff changeset
147 hard links, this is done efficiently. Thus, there's no need to mess with PYTHONPATH because the Python
a357536fb363 Uploaded
greg
parents:
diff changeset
148 binary in the environment already searches the site-packages in the environment, and the lib of the
a357536fb363 Uploaded
greg
parents:
diff changeset
149 environment, and so on.
a357536fb363 Uploaded
greg
parents:
diff changeset
150 -->
a357536fb363 Uploaded
greg
parents:
diff changeset
151 <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR/bin</environment_variable>
a357536fb363 Uploaded
greg
parents:
diff changeset
152 <environment_variable action="set_to" name="ANACONDAHOME">$INSTALL_DIR</environment_variable>
a357536fb363 Uploaded
greg
parents:
diff changeset
153 <environment_variable action="set_to" name="ICQSOL_ROOT_DIR">$INSTALL_DIR</environment_variable>
a357536fb363 Uploaded
greg
parents:
diff changeset
154 </action>
a357536fb363 Uploaded
greg
parents:
diff changeset
155 </actions>
a357536fb363 Uploaded
greg
parents:
diff changeset
156 </actions_group>
a357536fb363 Uploaded
greg
parents:
diff changeset
157 </install>
a357536fb363 Uploaded
greg
parents:
diff changeset
158 <readme>
a357536fb363 Uploaded
greg
parents:
diff changeset
159 <![CDATA[
a357536fb363 Uploaded
greg
parents:
diff changeset
160 This installation recipe installs the Anaconda version 2.3.0 of the Python programming language
a357536fb363 Uploaded
greg
parents:
diff changeset
161 version 2.7.10. Anaconda is a completely free Python distribution (including for commercial use
a357536fb363 Uploaded
greg
parents:
diff changeset
162 and redistribution). It includes more than 300 of the most popular Python packages for science,
a357536fb363 Uploaded
greg
parents:
diff changeset
163 math, engineering, and data analysis. This list of packages is available at
a357536fb363 Uploaded
greg
parents:
diff changeset
164 http://docs.continuum.io/anaconda/pkg-docs.
a357536fb363 Uploaded
greg
parents:
diff changeset
165
a357536fb363 Uploaded
greg
parents:
diff changeset
166 1) VTK version 6.3.0
a357536fb363 Uploaded
greg
parents:
diff changeset
167
a357536fb363 Uploaded
greg
parents:
diff changeset
168 The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D
a357536fb363 Uploaded
greg
parents:
diff changeset
169 computer graphics, modeling, image processing, volume rendering, scientific visualization, and
a357536fb363 Uploaded
greg
parents:
diff changeset
170 information visualization. VTK also includes ancillary support for 3D interaction widgets, two-
a357536fb363 Uploaded
greg
parents:
diff changeset
171 and three-dimensional annotation, and parallel computing. At its core, VTK is implemented as a
a357536fb363 Uploaded
greg
parents:
diff changeset
172 C++ toolkit, requiring users to build applications by combining various objects into an application.
a357536fb363 Uploaded
greg
parents:
diff changeset
173 The system also supports automated wrapping of the C++ core into Python, Java, and Tcl, so VTK
a357536fb363 Uploaded
greg
parents:
diff changeset
174 applications may also be written using these interpreted programming languages.
a357536fb363 Uploaded
greg
parents:
diff changeset
175
a357536fb363 Uploaded
greg
parents:
diff changeset
176 VTK employs Kitware’s Quality Software Process (CMake, CTest, CDash, and CPack) to build, test,
a357536fb363 Uploaded
greg
parents:
diff changeset
177 and package the system, making VTK a cross-platform application dependent on test-driven development
a357536fb363 Uploaded
greg
parents:
diff changeset
178 and extreme programming, and enabling the application to produce high-quality, robust code. VTK is
a357536fb363 Uploaded
greg
parents:
diff changeset
179 used world-wide in commercial applications, as well as in research and development. It is the basis
a357536fb363 Uploaded
greg
parents:
diff changeset
180 for many advanced visualization applications such as ParaView, VisIt, VisTrails, Slicer, MayaVi, and
a357536fb363 Uploaded
greg
parents:
diff changeset
181 OsiriX.
a357536fb363 Uploaded
greg
parents:
diff changeset
182
a357536fb363 Uploaded
greg
parents:
diff changeset
183 3) Pycsg version 0.3.0
a357536fb363 Uploaded
greg
parents:
diff changeset
184
a357536fb363 Uploaded
greg
parents:
diff changeset
185 Constructive Solid Geometry (CSG) is a modeling technique that uses Boolean operations like union and
a357536fb363 Uploaded
greg
parents:
diff changeset
186 intersection to combine 3D solids. This library implements CSG operations on meshes elegantly and
a357536fb363 Uploaded
greg
parents:
diff changeset
187 concisely using BSP trees, and is meant to serve as an easily understandable implementation of the
a357536fb363 Uploaded
greg
parents:
diff changeset
188 algorithm. All edge cases involving overlapping coplanar polygons in both solids are correctly handled.
a357536fb363 Uploaded
greg
parents:
diff changeset
189
a357536fb363 Uploaded
greg
parents:
diff changeset
190 4) Pytriangle version 1.0
a357536fb363 Uploaded
greg
parents:
diff changeset
191
a357536fb363 Uploaded
greg
parents:
diff changeset
192 Pytriangle is a python interface to the 2D triangulation program originally written by Jonathan Richard Shewchuck
a357536fb363 Uploaded
greg
parents:
diff changeset
193
a357536fb363 Uploaded
greg
parents:
diff changeset
194 5) Icqsol version 1.0
a357536fb363 Uploaded
greg
parents:
diff changeset
195
a357536fb363 Uploaded
greg
parents:
diff changeset
196 Icqsol is a collection of tools for constructing and solving partial differential equations.
a357536fb363 Uploaded
greg
parents:
diff changeset
197 ]]>
a357536fb363 Uploaded
greg
parents:
diff changeset
198
a357536fb363 Uploaded
greg
parents:
diff changeset
199 </readme>
a357536fb363 Uploaded
greg
parents:
diff changeset
200 </package>
a357536fb363 Uploaded
greg
parents:
diff changeset
201 </tool_dependency>