Candidate_v1.7.0
stable
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * ShapeSurfaceFillerPreparator.hpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: Sep 3, 2014
|
|---|
| 5 | * Author: heber
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #ifndef SHAPESURFACEFILLERPREPARATOR_HPP_
|
|---|
| 9 | #define SHAPESURFACEFILLERPREPARATOR_HPP_
|
|---|
| 10 |
|
|---|
| 11 | // include config.h
|
|---|
| 12 | #ifdef HAVE_CONFIG_H
|
|---|
| 13 | #include <config.h>
|
|---|
| 14 | #endif
|
|---|
| 15 |
|
|---|
| 16 | #include "BaseFillerPreparator.hpp"
|
|---|
| 17 |
|
|---|
| 18 | class Shape;
|
|---|
| 19 | class Vector;
|
|---|
| 20 |
|
|---|
| 21 | /** ShapeSurfaceFillerPreparator takes a shape and uses Shape::getHomogeneousPointsInVolume()
|
|---|
| 22 | * to create a specific number of nodes inside this Shape for filling.
|
|---|
| 23 | *
|
|---|
| 24 | */
|
|---|
| 25 | class ShapeSurfaceFillerPreparator :
|
|---|
| 26 | public BaseFillerPreparator
|
|---|
| 27 | {
|
|---|
| 28 | public:
|
|---|
| 29 | ShapeSurfaceFillerPreparator(molecule *_filler);
|
|---|
| 30 | ~ShapeSurfaceFillerPreparator();
|
|---|
| 31 |
|
|---|
| 32 | void addShapeMesh(
|
|---|
| 33 | const Shape &_shape,
|
|---|
| 34 | const unsigned int _nodes);
|
|---|
| 35 |
|
|---|
| 36 | void addSurfaceInserter(
|
|---|
| 37 | const Shape &_shape,
|
|---|
| 38 | const Vector &_alignedaxis
|
|---|
| 39 | );
|
|---|
| 40 |
|
|---|
| 41 | void addSurfaceRandomInserter(
|
|---|
| 42 | const Shape &_shape,
|
|---|
| 43 | const Vector &_alignedaxis,
|
|---|
| 44 | const double _MaxAtomComponent,
|
|---|
| 45 | const double _MaxMoleculeComponent
|
|---|
| 46 | );
|
|---|
| 47 | };
|
|---|
| 48 |
|
|---|
| 49 | #endif /* SHAPESURFACEFILLERPREPARATOR_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.