Commit 4e8d39599056d97dbf68e26ac2dd840b6eb748ec
- Diff rendering mode:
- inline
- side by side
.gitignore
(51 / 0)
|   | |||
| 1 | # git-ls-files --others --ignored | ||
| 2 | # Lines that start with '#' are comments. | ||
| 3 | |||
| 4 | # Backup and data files | ||
| 5 | eg/eg.* | ||
| 6 | *~ | ||
| 7 | *.bak | ||
| 8 | *.off | ||
| 9 | *.x | ||
| 10 | x.* | ||
| 11 | r | ||
| 12 | x | ||
| 13 | x? | ||
| 14 | r? | ||
| 15 | |||
| 16 | # patch results | ||
| 17 | *.rej | ||
| 18 | |||
| 19 | # Build products | ||
| 20 | tmp/* | ||
| 21 | project/Makefile* | ||
| 22 | project/*/Makefile* | ||
| 23 | project/*/object_script* | ||
| 24 | project/*/Release/* | ||
| 25 | project/*/Debug/* | ||
| 26 | project/*/release/* | ||
| 27 | project/*/debug/* | ||
| 28 | *.a | ||
| 29 | *.dll | ||
| 30 | *.lib | ||
| 31 | *.exe | ||
| 32 | *.o | ||
| 33 | *.md5sum | ||
| 34 | |||
| 35 | # Qt files | ||
| 36 | *.pro.user | ||
| 37 | |||
| 38 | # DevStudio files | ||
| 39 | *.bsc | ||
| 40 | *.ncb | ||
| 41 | *.pdb | ||
| 42 | *.suo | ||
| 43 | *.user | ||
| 44 | *.ilk | ||
| 45 | |||
| 46 | # CVS files | ||
| 47 | CVS/* | ||
| 48 | */CVS/* | ||
| 49 | */*/CVS/* | ||
| 50 | */*/*/CVS/* | ||
| 51 | *.cvsignore |
html/qh-get.htm
(1 / 1)
|   | |||
| 54 | 54 | <p>Debian, rpm, and Autoconf distributions will appear later</p> | |
| 55 | 55 | </li> | |
| 56 | 56 | <li><a href="http://gitorious.org/qhull">Gitorious Qhull</a> (git://gitorious.org/qhull/qhull.git) | |
| 57 | <p>Type: git repository for Qhull</b> | ||
| 57 | <p>Type: git repository for Qhull with <a href="http://www.qhull.org/src/Changes.txt">Changes.txt</a></p> | ||
| 58 | 58 | <p>Includes documentation, source files, C++ interface, | |
| 59 | 59 | and test programs. The C++ interface may change without notice. | |
| 60 | 60 | If using gcc 4.1, 4.2, or 4.3, please compile qset.c with |
html/qh-optf.htm
(13 / 1)
|   | |||
| 373 | 373 | followed by an index for each neighbor. The indices match the | |
| 374 | 374 | other facet output formats.</p> | |
| 375 | 375 | ||
| 376 | <p>For simplicial facets, each neighbor is opposite | ||
| 377 | the corresponding vertex (option '<A href="#Fv">Fv</a>'). | ||
| 378 | Do not compare to option '<A href="qh_opto.htm#i">i</a>'. Option 'i' | ||
| 379 | orients facets by reversing the order of two vertices. For non-simplicial facets, | ||
| 380 | the neighbors are unordered. | ||
| 381 | |||
| 376 | 382 | <p>A negative index indicates an unprinted facet due to printing | |
| 377 | 383 | only good facets ('<A href="qh-optp.htm#Pg">Pg</a>', <A href="qdelaun.htm" >qdelaunay</a>, | |
| 378 | 384 | <A href="qvoronoi.htm" >qvoronoi</a>). It | |
| … | … | ||
| 626 | 626 | printed, one per line. Each line is the number of vertices | |
| 627 | 627 | followed by the corresponding point ids. Vertices are listed in | |
| 628 | 628 | the order they were added to the hull (the last one added is the | |
| 629 | first listed). Similar to option '<A href="qh-opto.htm#i">i</a>'.</p> | ||
| 629 | first listed). | ||
| 630 | </p> | ||
| 631 | <p>Option '<A href="qh-opto.htm#i">i</a>' also lists the vertices, | ||
| 632 | but it orients facets by reversing the order of two | ||
| 633 | vertices. Option 'i' triangulates non-simplicial, 4-d and higher facets by | ||
| 634 | adding vertices for the centrums. | ||
| 635 | </p> | ||
| 630 | 636 | ||
| 631 | 637 | <h3><A href="#format">»</a><a name="Fv2">Fv - print Voronoi | |
| 632 | 638 | diagram</a></h3> |
index.htm
(2 / 1)
|   | |||
| 58 | 58 | <li><a | |
| 59 | 59 | href="http://www.geom.uiuc.edu/graphics/pix/Special_Topics/Computational_Geometry/welcome.html">Examples | |
| 60 | 60 | </a>of Qhull output </li> | |
| 61 | <li><a href=http://gitorious.org/qhull/>Gitorious</a> C++ interface to Qhull (<a href="http://gitorious.org/qhull/pages/Home">wiki</a>) | ||
| 61 | <li><a href=http://gitorious.org/qhull/>Gitorious</a> C++ interface to Qhull | ||
| 62 | (<a href="http://gitorious.org/qhull/pages/Home">wiki</a>, <a href="http://www.qhull.org/src/Changes.txt">changes</a>) | ||
| 62 | 63 | <li><input name=as_q size=10 value=""> | |
| 63 | 64 | <input type="submit" value="Search"> | |
| 64 | 65 | www.qhull.org |
src/CMakeLists.txt
(20 / 12)
|   | |||
| 26 | 26 | add_library(qhull SHARED ${qhull_src}) | |
| 27 | 27 | target_link_libraries(qhull m) | |
| 28 | 28 | if(UNIX) | |
| 29 | if(APPLE) | ||
| 30 | set_target_properties(qhull PROPERTIES set(qhullcmd_SOURCES unix.c) | ||
| 31 | INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/lib")set(rbox_SOURCES rbox.c) | ||
| 32 | else(APPLE)set(qconvex_SOURCES qconvex.c) | ||
| 33 | set_target_properties(qhull PROPERTIES set(qdelaunay_SOURCES qdelaun.c) | ||
| 34 | INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib"set(qvoronoi_SOURCES qvoronoi.c) | ||
| 35 | INSTALL_RPATH_USE_LINK_PATH TRUEset(qhalf_SOURCES qhalf.c) | ||
| 36 | BUILD_WITH_INSTALL_RPATH FALSE) | ||
| 37 | endif(APPLE) | ||
| 29 | if(APPLE) | ||
| 30 | set_target_properties(qhull PROPERTIES | ||
| 31 | INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/lib") | ||
| 32 | else(APPLE) | ||
| 33 | set_target_properties(qhull PROPERTIES | ||
| 34 | INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib" | ||
| 35 | INSTALL_RPATH_USE_LINK_PATH TRUE | ||
| 36 | BUILD_WITH_INSTALL_RPATH FALSE) | ||
| 37 | endif(APPLE) | ||
| 38 | 38 | endif(UNIX) | |
| 39 | 39 | add_library(qhullstatic STATIC ${qhull_src}) | |
| 40 | 40 | set_property(TARGET qhullstatic PROPERTY OUTPUT_NAME "qhull") | |
| 41 | 41 | ||
| 42 | set(qhullcmd_SOURCES unix.c) | ||
| 43 | set(rbox_SOURCES rbox.c) | ||
| 44 | set(qconvex_SOURCES qconvex.c) | ||
| 45 | set(qdelaunay_SOURCES qdelaun.c) | ||
| 46 | set(qvoronoi_SOURCES qvoronoi.c) | ||
| 47 | set(qhalf_SOURCES qhalf.c) | ||
| 48 | |||
| 49 | |||
| 42 | 50 | add_executable(qhullcmd ${qhullcmd_SOURCES}) | |
| 43 | 51 | target_link_libraries(qhullcmd qhull) | |
| 44 | 52 | set_property(TARGET qhullcmd PROPERTY OUTPUT_NAME "qhull") | |
| … | … | ||
| 67 | 67 | target_link_libraries(qhalf qhull) | |
| 68 | 68 | ||
| 69 | 69 | install(TARGETS qhull qhullstatic qhullcmd rbox qconvex qdelaunay qvoronoi qhalf | |
| 70 | RUNTIME DESTINATION bin | ||
| 71 | LIBRARY DESTINATION lib | ||
| 72 | ARCHIVE DESTINATION lib) | ||
| 70 | RUNTIME DESTINATION bin | ||
| 71 | LIBRARY DESTINATION lib | ||
| 72 | ARCHIVE DESTINATION lib) | ||
| 73 | 73 | install(FILES libqhull.h DESTINATION include) |
src/Changes.txt
(11 / 0)
|   | |||
| 17 | 17 | To do | |
| 18 | 18 | - Review email for doc changes | |
| 19 | 19 | - RMP build of Qhull | |
| 20 | - Create signed tags for Qhull versions | ||
| 21 | - Add FIXUP for known problems and update wiki | ||
| 22 | - Notes to compgeom on conformant triangulation and Voronoi volume | ||
| 23 | |||
| 24 | |||
| 25 | ------------ | ||
| 26 | gitorious.org/qhull 2010/01/25 | ||
| 27 | - qh-optf.htm: Add note about order of 'Fn' matching 'Fv' order [Q. Pan] | ||
| 28 | - Fixed src/CMakeLists.txt [M. Moll] | ||
| 29 | - Add .gitignore with ignored files and directories. | ||
| 30 | - Use .git/info/exclude for locally excluded files. | ||
| 20 | 31 | ||
| 21 | 32 | ------------ | |
| 22 | 33 | gitorious.org/qhull 2010/01/23 |

