Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91367171
QhullSet.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Nov 10, 09:56
Size
1 KB
Mime Type
text/x-c
Expires
Tue, Nov 12, 09:56 (2 d)
Engine
blob
Format
Raw Data
Handle
22251255
Attached To
rCADDMESH CADD_mesher
QhullSet.cpp
View Options
/****************************************************************************
**
** Copyright (c) 2008-2011 C.B. Barber. All rights reserved.
** $Id: //main/2011/qhull/src/libqhullcpp/QhullSet.cpp#2 $$Change: 1342 $
** $DateTime: 2011/03/07 21:55:47 $$Author: bbarber $
**
****************************************************************************/
#//! QhullSet -- Qhull's facet structure, facetT, as a C++ class
#include "QhullError.h"
#include "QhullSet.h"
#ifdef _MSC_VER // Microsoft Visual C++ -- warning level 4
#endif
namespace orgQhull {
#//static members
setT QhullSetBase::
s_empty_set;
// Same code for qh_setsize [qset.c] and QhullSetBase::count
int QhullSetBase::count(const setT *set)
{
int size;
const int *sizep;
if (!set)
return(0);
sizep= SETsizeaddr_(set);
if ((size= *sizep)) {
size--;
if (size > set->maxsize) {
// FIXUP QH11022 How to add additional output to a error? -- qh_setprint(qhmem.ferr, "set: ", set);
throw QhullError(10032, "QhullSet internal error: current set size %d is greater than maximum size %d\n",
size, set->maxsize);
}
}else
size= set->maxsize;
return size;
}
}//namespace orgQhull
Event Timeline
Log In to Comment