<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Qhull</title><link>https://sourceforge.net/p/plplot/wiki/Qhull/</link><description>Recent changes to Qhull</description><atom:link href="https://sourceforge.net/p/plplot/wiki/Qhull/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 03 Nov 2018 08:37:52 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/plplot/wiki/Qhull/feed" rel="self" type="application/rss+xml"/><item><title>Qhull modified by Alan W. Irwin</title><link>https://sourceforge.net/p/plplot/wiki/Qhull/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,3 +1,15 @@
+
+
 Description
 -----------

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alan W. Irwin</dc:creator><pubDate>Sat, 03 Nov 2018 08:37:52 -0000</pubDate><guid>https://sourceforge.net7b177b2dcc7ed664d0e0ffd9721336cd4682c127</guid></item><item><title>Qhull modified by Alan W. Irwin</title><link>https://sourceforge.net/p/plplot/wiki/Qhull/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alan W. Irwin</dc:creator><pubDate>Sun, 05 Oct 2014 19:34:52 -0000</pubDate><guid>https://sourceforge.net88f386aa7a5e46e426fc72b5d141b17e62cad9d0</guid></item><item><title>Qhull modified by Alan W. Irwin</title><link>https://sourceforge.net/p/plplot/wiki/Qhull/</link><description>&lt;div class="markdown_content"&gt;&lt;h2 id="description"&gt;Description&lt;/h2&gt;
&lt;p&gt;&lt;a class="" href="http://www.qhull.org" rel="nofollow"&gt;qhull&lt;/a&gt; computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. The software runs in 2-d, 3-d, 4-d, and higher dimensions. Qhull implements the Quickhull algorithm for computing the convex hull. It handles roundoff errors from floating point arithmetic. Qhull also computes volumes, surface areas, and approximations to the convex hull.&lt;/p&gt;
&lt;h2 id="instructions-for-mac-os-x"&gt;Instructions for Mac OS X&lt;/h2&gt;
&lt;p&gt;N/A&lt;/p&gt;
&lt;h2 id="instructions-for-linux"&gt;Instructions for Linux&lt;/h2&gt;
&lt;p&gt;N/A&lt;/p&gt;
&lt;h2 id="instructions-for-windows"&gt;Instructions for Windows&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Download &lt;a class="" href="http://www.qhull.org/download/qhull-2003.1-src.tgz" rel="nofollow"&gt;qhull 2003.1 source&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Untar qhull-2003.1-src.tgz&lt;/li&gt;
&lt;li&gt;Copy &lt;tt&gt;plplot\cmake\external\libqhull\CMakeLists.txt&lt;/tt&gt; to the qhull source dir&lt;/li&gt;
&lt;li&gt;Cd into the qhull source dir&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="mingw-compiler"&gt;MinGW compiler&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;create a build directory and cd into it&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;mkdir build&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;cd build&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;configure the build with cmake&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;cmake -G "MinGW Makefiles" -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=../local ..&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;make and install the library&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;mingw32-make&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;mingw32-make install&lt;/code&gt;&lt;/p&gt;
&lt;h3 id="visual-c-compiler"&gt;Visual C++ compiler&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;create a build directory and cd into it&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;mkdir build&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;cd build&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;configure the build with cmake&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;cmake -G "NMake Makefiles" -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=../local ..&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;make and install the library&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;nmake&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;nmake install&lt;/code&gt;&lt;/p&gt;
&lt;h3 id="set-cmake-paths"&gt;Set CMake paths&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;set environment variables (for MinGW and Visual C++)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;set QHULLDIR=c:\libraries\qhull-2003.1\local&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;set CMAKE_INCLUDE_PATH=%QHULLDIR%\include;%CMAKE_INCLUDE_PATH%&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;set CMAKE_LIBRARY_PATH=%QHULLDIR%\lib;%CMAKE_LIBRARY_PATH%&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;CMake is now able to find the qhull library and headers.&lt;/p&gt;
&lt;p&gt;The content of this page is available under the &lt;a class="" href="http://www.gnu.org/copyleft/fdl.html" rel="nofollow"&gt;GNU Free Documentation License 1.2&lt;/a&gt;.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alan W. Irwin</dc:creator><pubDate>Sat, 04 Oct 2014 04:42:14 -0000</pubDate><guid>https://sourceforge.net47d02a7c01702639bbc63dde9e55352a0760edd8</guid></item></channel></rss>