Skip to content

Commit

Permalink
Merge pull request idaholab#374 from dschwen/mesh_373
Browse files Browse the repository at this point in the history
Remove mesh min/max extents
  • Loading branch information
snschune authored Feb 12, 2019
2 parents 8bd81b0 + 5db8f18 commit 14c1a79
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
3 changes: 0 additions & 3 deletions include/mesh/MyTRIMMesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ class MyTRIMMesh : public GeneratedMesh
/// obtain a specialized PointLocator for the current mesh
std::unique_ptr<PointLocatorBase> getPointLocator() const override;

Real getMinInDimension(unsigned int component) const override;
Real getMaxInDimension(unsigned int component) const override;

/// since this is a regular mesh we can report the grid size in each dimension
unsigned int getCellCountInDimension(unsigned int component);

Expand Down
12 changes: 0 additions & 12 deletions src/mesh/MyTRIMMesh.C
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,6 @@ MyTRIMMesh::getPointLocator() const
new PointLocatorRegularOrthogonal(getMesh(), _point_locator.get()));
}

Real
MyTRIMMesh::getMinInDimension(unsigned int component) const
{
return _min_corner(component);
}

Real
MyTRIMMesh::getMaxInDimension(unsigned int component) const
{
return _max_corner(component);
}

unsigned int
MyTRIMMesh::getCellCountInDimension(unsigned int component)
{
Expand Down

0 comments on commit 14c1a79

Please sign in to comment.