Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110772028
RboxPoints.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
Mon, Apr 28, 01:17
Size
2 KB
Mime Type
text/x-c++
Expires
Wed, Apr 30, 01:17 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25849931
Attached To
rCADDMESH CADD_mesher
RboxPoints.h
View Options
/****************************************************************************
**
** Copyright (c) 2008-2012 C.B. Barber. All rights reserved.
** $Id: //main/2011/qhull/src/libqhullrcpp/RboxPoints.h#1 $$Change: 1640 $
** $DateTime: 2014/01/15 09:12:08 $$Author: bbarber $
**
****************************************************************************/
#ifndef RBOXPOINTS_H
#define RBOXPOINTS_H
#include "QhullPoint.h"
#include "PointCoordinates.h"
extern "C" {
#include "libqhull/libqhull.h"
}
#include <stdarg.h>
#include <string>
#include <vector>
#include <istream>
#include <ostream>
#include <sstream>
namespace orgQhull {
#//Types
//! RboxPoints -- generate random PointCoordinates for Qhull
class RboxPoints;
class RboxPoints : public PointCoordinates {
private:
#//Fields and friends
int rbox_new_count; //! Number of points for PointCoordinates
int rbox_status; //! error status from rboxpoints. qh_ERRnone if none.
std::string rbox_message; //! stderr from rboxpoints
friend void ::qh_fprintf_rbox(FILE *fp, int msgcode, const char *fmt, ... );
public:
#//Construct
RboxPoints();
explicit RboxPoints(const char *rboxCommand);
RboxPoints(const RboxPoints &other);
RboxPoints &operator=(const RboxPoints &other);
~RboxPoints();
public:
#//GetSet
void clearRboxMessage();
int newCount() const { return rbox_new_count; }
std::string rboxMessage() const;
int rboxStatus() const;
bool hasRboxMessage() const;
void setNewCount(int pointCount) { QHULL_ASSERT(pointCount>=0); rbox_new_count= pointCount; }
#//Modify
void appendPoints(const char* rboxCommand);
using PointCoordinates::appendPoints;
void reservePoints() { reserveCoordinates((count()+newCount())*dimension()); }
};//class RboxPoints
}//namespace orgQhull
#endif // RBOXPOINTS_H
Event Timeline
Log In to Comment