My Project
Main Page
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Points.h
Go to the documentation of this file.
1
#ifndef POINTS_H
2
#define POINTS_H
3
#include <vector>
4
#include "
Sampling.h
"
5
#include "
MyRandom.h
"
6
7
using namespace
std;
8
9
// This class is holding place for the points generated
10
class
Points
11
{
12
public
:
13
explicit
Points
(
int
);
14
~
Points
();
15
int
getDensity()
const
;
16
void
setXYZ(vector<double>,vector<double>, vector<double>);
17
int
write()
const
;
18
void
display()
const
;
19
20
private
:
21
vector<double> m_x, m_y, m_z;
22
int
m_density;
23
MyRandom
m_Random;
24
};
25
26
#endif
Generated on Mon Apr 29 2013 21:31:04 for My Project by
1.8.3.1