source: src/Filling/Preparators/ShapeVolumeFillerPreparator.hpp@ e1e108

IndependentFragmentGrids_IntegrationTest
Last change on this file since e1e108 was 6801f4, checked in by Frederik Heber <heber@…>, 11 years ago

Added FillVolumeAction for filling a Shape's volume.

  • added ShapeFillerPreparator for preparing the volume filler.
  • FIX: MeshAdaptor should include Mesh.hpp.
  • added regression tests for FillVolume for all present shapes.
  • all but cylinder fail because of missing implementation, are marked as XFAIL for the moment, except everywhere and nowhere of FillVolume which say they fail explicitly. (this is not an implementation problem, for these shapes filling makes no sense.) We explicitly check for the currently failing shape types and let the Action fail (cause this works also in disable-debug).
  • Property mode set to 100644
File size: 774 bytes
Line 
1/*
2 * ShapeVolumeFillerPreparator.hpp
3 *
4 * Created on: Sep 3, 2014
5 * Author: heber
6 */
7
8#ifndef SHAPEVOLUMEFILLERPREPARATOR_HPP_
9#define SHAPEVOLUMEFILLERPREPARATOR_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include "BaseFillerPreparator.hpp"
17
18class Shape;
19
20/** ShapeVolumeFillerPreparator takes a shape and uses Shape::getHomogeneousPointsInVolume()
21 * to create a specific number of nodes inside this Shape for filling.
22 *
23 */
24class ShapeVolumeFillerPreparator :
25 public BaseFillerPreparator
26{
27public:
28 ShapeVolumeFillerPreparator(molecule *_filler);
29 ~ShapeVolumeFillerPreparator();
30
31 void addShapeMesh(
32 const Shape &_shape,
33 const unsigned int _nodes);
34
35};
36
37#endif /* SHAPEVOLUMEFILLERPREPARATOR_HPP_ */
Note: See TracBrowser for help on using the repository browser.