51 |
|
#ifndef APPLICATIONS_NANORODBUILDER_GEOMETRYBUILDER_HPP |
52 |
|
#define APPLICATIONS_NANORODBUILDER_GEOMETRYBUILDER_HPP |
53 |
|
|
54 |
+ |
#include <string> |
55 |
|
|
55 |
– |
|
56 |
|
namespace oopse { |
57 |
|
|
58 |
|
class GeometryBuilder{ |
60 |
|
|
61 |
|
public: |
62 |
|
|
63 |
< |
GeometryBuilder(double length,double width); |
63 |
> |
GeometryBuilder(RealType length,RealType width); |
64 |
> |
GeometryBuilder(RealType length,RealType width, bool twinned); |
65 |
|
~GeometryBuilder(){}; |
66 |
|
|
67 |
< |
bool isInsidePolyhedron(double x, double y, double z); |
67 |
> |
bool isInsidePolyhedron(RealType x, RealType y, RealType z); |
68 |
> |
void dumpGeometry(const std::string& geomFileName); |
69 |
|
private: |
70 |
|
}; |
71 |
|
} |