Skip to content
Snippets Groups Projects
Commit 5cc4b2b8 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Fix spelling error of separated.

parent 872b6db2
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ void DiagramView::initialize() ...@@ -70,7 +70,7 @@ void DiagramView::initialize()
* It is only necessary to call this if * It is only necessary to call this if
* Qt::AspectRatioMode == Qt::IgnoreAspectRatio. * Qt::AspectRatioMode == Qt::IgnoreAspectRatio.
* Also, this method is kind of annoying because you have to set the * Also, this method is kind of annoying because you have to set the
* appropriate transform for every single QGraphicsTextItem seperately. * appropriate transform for every single QGraphicsTextItem separately.
*/ */
/* /*
void DiagramView::keepItemAspectRatio() void DiagramView::keepItemAspectRatio()
......
...@@ -89,7 +89,7 @@ public: ...@@ -89,7 +89,7 @@ public:
* Note: The given coordinates always mark THE END of the soil layer. The reason behind this is * Note: The given coordinates always mark THE END of the soil layer. The reason behind this is
* that the beginning of the first layer is identical with the position of the borehole. For each * that the beginning of the first layer is identical with the position of the borehole. For each
* layer following the beginning is already given by the end of the last layer. This also saves * layer following the beginning is already given by the end of the last layer. This also saves
* a seperate entry in the profile vector for the end of the borehole which in the given notation * a separate entry in the profile vector for the end of the borehole which in the given notation
* is just the coordinate given for the last soil layer (i.e. the end of that layer). * is just the coordinate given for the last soil layer (i.e. the end of that layer).
*/ */
void addSoilLayer ( double x, double y, double z, const std::string &soil_name); void addSoilLayer ( double x, double y, double z, const std::string &soil_name);
......
...@@ -48,7 +48,7 @@ public: ...@@ -48,7 +48,7 @@ public:
* Collapsed all nodes with distance < eps but ignores elements * Collapsed all nodes with distance < eps but ignores elements
* (i.e. elements with collapsed nodes may result) * (i.e. elements with collapsed nodes may result)
* This is implicitely called when calling simplifyMesh(), so it does not need to be * This is implicitely called when calling simplifyMesh(), so it does not need to be
* called seperately when using simplifyMesh(). * called separately when using simplifyMesh().
*/ */
MeshLib::Mesh* collapseNodes(const std::string &new_mesh_name, double eps); MeshLib::Mesh* collapseNodes(const std::string &new_mesh_name, double eps);
......
...@@ -59,7 +59,7 @@ public: ...@@ -59,7 +59,7 @@ public:
return empty_quality_vec; return empty_quality_vec;
} }
/// Returns a histogram of the quality vector seperated into the given number of bins. /// Returns a histogram of the quality vector separated into the given number of bins.
/// If no number of bins is specified, one will be calculated based on the Sturges criterium. /// If no number of bins is specified, one will be calculated based on the Sturges criterium.
BaseLib::Histogram<double> getHistogram(std::size_t n_bins = 0) const BaseLib::Histogram<double> getHistogram(std::size_t n_bins = 0) const
{ {
......
...@@ -49,7 +49,7 @@ public: ...@@ -49,7 +49,7 @@ public:
/// Returns the maximum calculated value /// Returns the maximum calculated value
double getMaxValue() const; double getMaxValue() const;
/// Returns a histogram of the quality vector seperated into the given number of bins. /// Returns a histogram of the quality vector separated into the given number of bins.
/// If no number of bins is specified, one will be calculated based on the Sturges criterium. /// If no number of bins is specified, one will be calculated based on the Sturges criterium.
virtual BaseLib::Histogram<double> getHistogram (std::size_t n_bins = 0) const; virtual BaseLib::Histogram<double> getHistogram (std::size_t n_bins = 0) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment