Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91249019
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
Sat, Nov 9, 08:40
Size
1 KB
Mime Type
text/x-c
Expires
Mon, Nov 11, 08:40 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22229503
Attached To
rCADDMESH CADD_mesher
QhullSet.cpp
View Options
/****************************************************************************
**
** Copyright (c) 2008-2015 C.B. Barber. All rights reserved.
** $Id: //main/2011/qhull/src/libqhullpcpp/QhullSet.cpp#3 $$Change: 1810 $
** $DateTime: 2015/01/17 18:28:15 $$Author: bbarber $
**
****************************************************************************/
#
//! QhullSet -- Qhull's set structure, setT, 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
setelemT
*
sizep
;
if
(
!
set
)
return
(
0
);
sizep
=
SETsizeaddr_
(
set
);
if
((
size
=
sizep
->
i
))
{
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