Go to the source code of this file.
◆ registerMooseObject()
◆ validParams< SphereSurfaceMeshGenerator >()
Definition at line 25 of file SphereSurfaceMeshGenerator.C.
27 InputParameters params = validParams<MeshGenerator>();
28 params.addClassDescription(
29 "Generated sphere mesh - a two dimensional manifold embedded in three dimensional space");
30 params.addParam<Real>(
"radius", 1.0,
"Sphere radius");
31 params.addParam<Point>(
"center", Point(0, 0, 0),
"Center of the sphere");
32 params.addParam<
unsigned int>(
33 "depth", 3,
"Iteration steps in the triangle bisection construction");