~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to extern/qhull/src/geom.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
                     realT *dist, boolT *isoutside, int *numpart) {
140
140
  realT bestdist= -REALmax/2 /* avoid underflow */;
141
141
  facetT *facet, *neighbor, **neighborp, *bestfacet= NULL;
142
 
  facetT *bestfacet_all= startfacet;
 
142
 /* facetT *bestfacet_all= startfacet; */
143
143
  int oldtrace= qh IStracing;
144
144
  unsigned int visitid= ++qh visit_id;
145
145
  int numpartnew=0;
409
409
*/
410
410
facetT *qh_findbestnew (pointT *point, facetT *startfacet,
411
411
           realT *dist, boolT bestoutside, boolT *isoutside, int *numpart) {
412
 
  realT bestdist= -REALmax/2, minsearch= -REALmax/2;
 
412
  realT bestdist= -REALmax/2; /*, minsearch= -REALmax/2;*/
413
413
  facetT *bestfacet= NULL, *facet;
414
414
  int oldtrace= qh IStracing, i;
415
415
  unsigned int visitid= ++qh visit_id;