Misc. typos

This commit is contained in:
Unknown
2017-12-06 11:17:50 -05:00
committed by wmayer
parent 1628e57409
commit f5146508bb
19 changed files with 24 additions and 24 deletions

View File

@@ -148,8 +148,8 @@ public:
*/
void GetMeshBorder(unsigned long uFacet, std::list<unsigned long>& rBorder) const;
/**
* Boundaries that consist of several loops must be splitted in several independent boundaries
* to perfoom e.g. a polygon triangulation algorithm on them.
* Boundaries that consist of several loops must be split in several independent boundaries
* to perform e.g. a polygon triangulation algorithm on them.
*/
void SplitBoundaryLoops( std::list<std::vector<unsigned long> >& aBorders );
/**

View File

@@ -59,7 +59,7 @@ public:
/** @name Topological Operations */
//@{
/**
* Inserts a new vertex in the given triangle so that is splitted into three
* Inserts a new vertex in the given triangle so that is split into three
* triangles. The given point must lie inside the triangle not outside or on
* an edge.
*/
@@ -106,7 +106,7 @@ public:
* \a rP1 and \a rP2 should lie on two different edges of the facet. This method
* splits up the both neighbour facets as well.
* If either \a rP1 or \a rP2 (probably due to a previous call of SplitFacet())
* is coincident with a corner point then the facet is splitted into two facets.
* is coincident with a corner point then the facet is split into two facets.
* If both points are coincident with corner points of this facet nothing is done.
*/
void SplitFacet(unsigned long ulFacetPos, const Base::Vector3f& rP1,

View File

@@ -35,7 +35,7 @@
namespace Mesh
{
/** The mesh algorithems container class
/** The mesh algorithms container class
*/
class MeshExport GTSAlgos
{