Commit 4e8d39599056d97dbf68e26ac2dd840b6eb748ec

  • avatar
  • bbarber
  • Tue Jan 26 04:04:21 CET 2010
- Fixed src/CMakeLists.txt [M. Moll]
- qh-optf.htm: Add note about order of 'Fn' matching 'Fv' order [Q. Pan]
- Add .gitignore with ignored files and directories.
-   Use .git/info/exclude for locally excluded files.
.gitignore
(51 / 0)
  
1# git-ls-files --others --ignored
2# Lines that start with '#' are comments.
3
4# Backup and data files
5eg/eg.*
6*~
7*.bak
8*.off
9*.x
10x.*
11r
12x
13x?
14r?
15
16# patch results
17*.rej
18
19# Build products
20tmp/*
21project/Makefile*
22project/*/Makefile*
23project/*/object_script*
24project/*/Release/*
25project/*/Debug/*
26project/*/release/*
27project/*/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
47CVS/*
48*/CVS/*
49*/*/CVS/*
50*/*/*/CVS/*
51*.cvsignore
  
5454 <p>Debian, rpm, and Autoconf distributions will appear later</p>
5555 </li>
5656 <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>
5858 <p>Includes documentation, source files, C++ interface,
5959 and test programs. The C++ interface may change without notice.
6060 If using gcc 4.1, 4.2, or 4.3, please compile qset.c with
  
373373followed by an index for each neighbor. The indices match the
374374other facet output formats.</p>
375375
376<p>For simplicial facets, each neighbor is opposite
377the corresponding vertex (option '<A href="#Fv">Fv</a>').
378Do not compare to option '<A href="qh_opto.htm#i">i</a>'. Option 'i'
379orients facets by reversing the order of two vertices. For non-simplicial facets,
380the neighbors are unordered.
381
376382<p>A negative index indicates an unprinted facet due to printing
377383only good facets ('<A href="qh-optp.htm#Pg">Pg</a>', <A href="qdelaun.htm" >qdelaunay</a>,
378384<A href="qvoronoi.htm" >qvoronoi</a>). It
626626printed, one per line. Each line is the number of vertices
627627followed by the corresponding point ids. Vertices are listed in
628628the order they were added to the hull (the last one added is the
629first listed). Similar to option '<A href="qh-opto.htm#i">i</a>'.</p>
629first listed).
630</p>
631<p>Option '<A href="qh-opto.htm#i">i</a>' also lists the vertices,
632but it orients facets by reversing the order of two
633vertices. Option 'i' triangulates non-simplicial, 4-d and higher facets by
634adding vertices for the centrums.
635</p>
630636
631637<h3><A href="#format">&#187;</a><a name="Fv2">Fv - print Voronoi
632638diagram</a></h3>
index.htm
(2 / 1)
  
5858 <li><a
5959 href="http://www.geom.uiuc.edu/graphics/pix/Special_Topics/Computational_Geometry/welcome.html">Examples
6060 </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>)
6263 <li><input name=as_q size=10 value="">
6364 <input type="submit" value="Search">
6465 www.qhull.org
  
2626add_library(qhull SHARED ${qhull_src})
2727target_link_libraries(qhull m)
2828if(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)
3838endif(UNIX)
3939add_library(qhullstatic STATIC ${qhull_src})
4040set_property(TARGET qhullstatic PROPERTY OUTPUT_NAME "qhull")
4141
42set(qhullcmd_SOURCES unix.c)
43set(rbox_SOURCES rbox.c)
44set(qconvex_SOURCES qconvex.c)
45set(qdelaunay_SOURCES qdelaun.c)
46set(qvoronoi_SOURCES qvoronoi.c)
47set(qhalf_SOURCES qhalf.c)
48
49
4250add_executable(qhullcmd ${qhullcmd_SOURCES})
4351target_link_libraries(qhullcmd qhull)
4452set_property(TARGET qhullcmd PROPERTY OUTPUT_NAME "qhull")
6767target_link_libraries(qhalf qhull)
6868
6969install(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)
7373install(FILES libqhull.h DESTINATION include)
  
1717To do
1818 - Review email for doc changes
1919 - 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------------
26gitorious.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.
2031
2132------------
2233gitorious.org/qhull 2010/01/23