26 #ifndef INTERSECTIONOFWALLS_H
27 #define INTERSECTIONOFWALLS_H
129 void read(std::istream& is);
134 void write(std::ostream& os)
const;
139 std::string
getName()
const override;
160 std::vector<Vec3D>
A_;
174 std::vector<Vec3D>
C_;
A IntersectionOfWalls is convex polygon defined as an intersection of InfiniteWall's.
BaseInteraction * getInteractionWith(BaseParticle *p, Mdouble timeStamp, InteractionHandler *interactionHandler)
Get the interaction between this IntersectionOfWalls and given BaseParticle at a given time...
void move(const Vec3D &move)
Move the IntersectionOfWalls to a new position, which is a Vec3D from the old position.
bool getDistanceAndNormal(const BaseParticle &p, Mdouble &distance, Vec3D &normal_return) const override
Compute the distance from the wall for a given BaseParticle and return if there is a collision...
std::string getName() const override
Returns the name of the object, here the string "IntersectionOfWalls".
void addObject(Vec3D normal, Vec3D point)
Adds a wall to the set of infinite walls, given an outward normal vector s.t. normal*x=normal*point.
Stores information about interactions between two interactable objects; often particles but could be ...
#define MERCURY_DEPRECATED
std::vector< InfiniteWall > wallObjects_
The wall "segments"/directions that together make up the finite wall.
void createOpenPrism(std::vector< Vec3D > points, Vec3D prismAxis)
Creates an open prism which is a polygon between the points, except the first and last point...
void read(std::istream &is)
Reads an IntersectionOfWalls from an input stream, for example a restart file.
IntersectionOfWalls()
Default constructor.
std::vector< Vec3D > C_
A vector that stores the intersection point of three different InfiniteWall.
Container to store Interaction objects.
std::vector< Vec3D > A_
A vector that stores a point for each intersecting line between two different InfiniteWall.
IntersectionOfWalls * copy() const override
Wall copy method. It calls the copy constructor of this Wall, useful for polymorphism.
MERCURY_DEPRECATED void clear()
Removes all parts of the walls.
std::vector< Vec3D > AB_
A vector that stores the direction of the intersecting lines between two different InfiniteWall...
void createPrism(std::vector< Vec3D > points, Vec3D prismAxis)
Creates an open prism which is a polygon between the points and extends infinitely in the PrismAxis d...
void write(std::ostream &os) const
Writes an IntersectionOfWalls to an output stream, for example a restart file.
virtual ~IntersectionOfWalls()
Destructor.
Implementation of a 3D vector (by Vitaliy).
IntersectionOfWalls & operator=(const IntersectionOfWalls &other)