| 44 |
|
* |
| 45 |
|
* Created by Charles F. Vardeman II on 3/15/06. |
| 46 |
|
* @author Charles F. Vardeman II |
| 47 |
< |
* @version $Id: shapedLatticeSpherical.hpp,v 1.1 2006-03-22 20:57:09 chuckv Exp $ |
| 47 |
> |
* @version $Id: shapedLatticeSpherical.hpp,v 1.2 2006-10-14 20:21:26 gezelter Exp $ |
| 48 |
|
* |
| 49 |
|
*/ |
| 50 |
|
#ifndef NANOPARTICLEBUILDER_SHAPEDLATTICESPHERICAL_HPP |
| 54 |
|
#include "math/Vector3.hpp" |
| 55 |
|
namespace oopse{ |
| 56 |
|
/** |
| 57 |
< |
* Implements a spherical lattice |
| 58 |
< |
* |
| 59 |
< |
*/ |
| 57 |
> |
* Implements a spherical lattice |
| 58 |
> |
* |
| 59 |
> |
*/ |
| 60 |
|
class shapedLatticeSpherical: public shapedLattice{ |
| 61 |
< |
public: |
| 62 |
< |
shapedLatticeSpherical(double latticeConstant,std::string latticeType,double radius); |
| 61 |
> |
public: |
| 62 |
> |
shapedLatticeSpherical(double latticeConstant, std::string latticeType, double radius); |
| 63 |
|
virtual bool isInterior(Vector3d point); |
| 64 |
< |
private: |
| 65 |
< |
double sphereRadius_; |
| 64 |
> |
private: |
| 65 |
> |
double sphereRadius_; |
| 66 |
|
}; |
| 67 |
|
} |
| 68 |
|
|