Page MenuHomec4science

QhullQh.h
No OneTemporary

File Metadata

Created
Thu, Jun 6, 15:02

QhullQh.h

/****************************************************************************
**
** Copyright (c) 2008-2015 C.B. Barber. All rights reserved.
** $Id: //main/2011/qhull/src/libqhullpcpp/QhullQh.h#3 $$Change: 1810 $
** $DateTime: 2015/01/17 18:28:15 $$Author: bbarber $
**
****************************************************************************/
#ifndef QHULLQH_H
#define QHULLQH_H
extern "C" {
#include "libqhull/qhull_a.h"
}
#include <string>
#include <vector>
namespace orgQhull {
#//!\name 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 {
#//!\name 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
#//!\name Fields
//! No fields POD type equivalent to qhT. No data or virtual members
public:
#//!\name Constructors
QhullQh();
~QhullQh();
private:
//!disable copy constructor and assignment
QhullQh(const QhullQh &);
QhullQh & operator=(const QhullQh &);
};//class QhullQh
}//namespace orgQhull
#endif // QHULLQH_H

Event Timeline