Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Özgür Ozan Sen
ogs
Commits
deeb23f6
Commit
deeb23f6
authored
8 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[MeL] Add missing parameter documentation.
parent
493f979a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
MeshLib/MeshGenerators/MeshGenerator.h
+21
-9
21 additions, 9 deletions
MeshLib/MeshGenerators/MeshGenerator.h
with
21 additions
and
9 deletions
MeshLib/MeshGenerators/MeshGenerator.h
+
21
−
9
View file @
deeb23f6
...
...
@@ -140,7 +140,9 @@ Mesh* generateRegularQuadMesh(const BaseLib::ISubdivision &div_x,
*
* \param length Mesh's dimensions in x- and y-directions.
* \param subdivision Number of subdivisions.
* \param origin Optional mesh's origin (the lower left corner) with MathLib::ORIGIN default.
* \param origin Optional mesh's origin (the lower left corner) with
* MathLib::ORIGIN default.
* \param mesh_name Name of the new mesh.
*/
Mesh
*
generateRegularQuadMesh
(
const
double
length
,
const
std
::
size_t
subdivision
,
...
...
@@ -155,7 +157,9 @@ Mesh* generateRegularQuadMesh(const double length,
* \param y_length Mesh's dimension in y-direction.
* \param x_subdivision Number of subdivisions in x-direction.
* \param y_subdivision Number of subdivisions in y-direction.
* \param origin Optional mesh's origin (the lower left corner) with MathLib::ORIGIN default.
* \param origin Optional mesh's origin (the lower left corner) with
* MathLib::ORIGIN default.
* \param mesh_name Name of the new mesh.
*/
Mesh
*
generateRegularQuadMesh
(
const
double
x_length
,
const
double
y_length
,
...
...
@@ -198,15 +202,15 @@ Mesh* generateRegularQuadMesh(const unsigned n_x_cells,
MathLib
::
Point3d
const
&
origin
=
MathLib
::
ORIGIN
,
std
::
string
const
&
mesh_name
=
"mesh"
);
/**
* Generate a regular 3D Hex-Element mesh.
*
* \param div_x Subdivision operator in x direction
* \param div_y Subdivision operator in y direction
* \param div_z Subdivision operator in z direction
* \param origin Optional mesh's origin (the bottom lower left corner) with MathLib::ORIGIN default.
* \param origin Optional mesh's origin (the bottom lower left corner) with
* MathLib::ORIGIN default.
* \param mesh_name Name of the new mesh.
*/
Mesh
*
generateRegularHexMesh
(
const
BaseLib
::
ISubdivision
&
div_x
,
const
BaseLib
::
ISubdivision
&
div_y
,
...
...
@@ -292,7 +296,9 @@ Mesh* generateRegularHexMesh(const unsigned n_x_cells,
*
* \param div_x Subdivision operator in x direction
* \param div_y Subdivision operator in y direction
* \param origin Optional mesh's origin (the bottom lower left corner) with MathLib::ORIGIN default.
* \param origin Optional mesh's origin (the bottom lower left corner) with
* MathLib::ORIGIN default.
* \param mesh_name Name of the new mesh.
*/
Mesh
*
generateRegularTriMesh
(
const
BaseLib
::
ISubdivision
&
div_x
,
const
BaseLib
::
ISubdivision
&
div_y
,
...
...
@@ -305,7 +311,9 @@ Mesh* generateRegularTriMesh(const BaseLib::ISubdivision &div_x,
*
* \param length Mesh's dimensions in x- and y-directions.
* \param subdivision Number of subdivisions.
* \param origin Optional mesh's origin (the lower left corner) with MathLib::ORIGIN default.
* \param origin Optional mesh's origin (the lower left corner) with
* MathLib::ORIGIN default.
* \param mesh_name Name of the new mesh.
*/
Mesh
*
generateRegularTriMesh
(
const
double
length
,
const
std
::
size_t
subdivision
,
...
...
@@ -320,7 +328,9 @@ Mesh* generateRegularTriMesh(const double length,
* \param y_length Mesh's dimension in y-direction.
* \param x_subdivision Number of subdivisions in x-direction.
* \param y_subdivision Number of subdivisions in y-direction.
* \param origin Optional mesh's origin (the lower left corner) with MathLib::ORIGIN default.
* \param origin Optional mesh's origin (the lower left corner) with
* MathLib::ORIGIN default.
* \param mesh_name Name of the new mesh.
*/
Mesh
*
generateRegularTriMesh
(
const
double
x_length
,
const
double
y_length
,
...
...
@@ -372,7 +382,9 @@ Mesh* generateRegularTriMesh(const unsigned n_x_cells,
* \param x_subdivision Number of subdivisions in x-direction.
* \param y_subdivision Number of subdivisions in y-direction.
* \param z_subdivision Number of subdivisions in z-direction.
* \param origin Optional mesh's origin (the lower left corner) with MathLib::ORIGIN default.
* \param origin Optional mesh's origin (the lower left corner) with
* MathLib::ORIGIN default.
* \param mesh_name Name of the new mesh.
*/
Mesh
*
generateRegularPrismMesh
(
const
double
x_length
,
const
double
y_length
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment