Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111508117
QhullQh.h
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
Fri, May 2, 19:10
Size
1 KB
Mime Type
text/x-c++
Expires
Sun, May 4, 19:10 (2 d)
Engine
blob
Format
Raw Data
Handle
25937484
Attached To
rCADDMESH CADD_mesher
QhullQh.h
View Options
/****************************************************************************
**
** Copyright (c) 2008-2012 C.B. Barber. All rights reserved.
** $Id: //main/2011/qhull/src/libqhullrcpp/QhullQh.h#1 $$Change: 1640 $
** $DateTime: 2014/01/15 09:12:08 $$Author: bbarber $
**
****************************************************************************/
#ifndef QHULLQH_H
#define QHULLQH_H
extern "C" {
#include "libqhull/qhull_a.h"
}
#include <string>
#include <vector>
namespace orgQhull {
#//defined here
//! QhullQh -- Qhull's global data structure, qhT, as a C++ class
//! See UsingLibQhull.h for C++/C interface to qhT
class QhullQh;
class QhullQh : public qhT {
#//Constants
// Set ignored. PointSet needs explicit dimension
// Facet from vertices or ridges.vertices.count
// Ridge from vertices.count
// Vertex stored in vertexT? 1->16?
// QhullPoint needs explicit dimension
#//members (empty) -- POD type equivalent to qhT. No data or virtual members
public:
#//constructor, assignment, destructor, invariant
QhullQh();
~QhullQh();
private:
//!disable copy constructor and assignment
QhullQh(const QhullQh &);
QhullQh &operator=(const QhullQh &);
};//class QhullQh
}//namespace orgQhull
#endif // QHULLQH_H
Event Timeline
Log In to Comment