Page MenuHomec4science

surface_generator_ellipsoid.hh
No OneTemporary

File Metadata

Created
Mon, Jul 1, 18:40

surface_generator_ellipsoid.hh

#ifndef __SURFACE_GENERATOR_ELLIPSOID_H__
#define __SURFACE_GENERATOR_ELLIPSOID_H__
/* -------------------------------------------------------------------------- */
#include "surface_generator.hh"
/* -------------------------------------------------------------------------- */
class SurfaceGeneratorEllipsoid : public virtual SurfaceGenerator {
public:
//! constructor : takes a config file as input
SurfaceGeneratorEllipsoid(const std::string & inputfile);
Surface<Real> & buildSurface();
void Init();
void parseInputFile(std::ifstream & fp);
protected:
Real centerx;
Real centery;
Real radiusx;
Real radiusy;
Real scale;
Real step;
};
#endif /* __SURFACE_GENERATOR_ELLIPSOID_H__ */

Event Timeline