Merge pull request #1769 from drewish/spelling

Fix spelling of 'matches'
This commit is contained in:
Laurent Rineau 2016-12-22 11:51:00 +01:00 committed by GitHub
commit 4d4f8c130c
4 changed files with 17 additions and 17 deletions

View File

@ -1154,7 +1154,7 @@ insert_at_vertices(const X_monotone_curve_2& cv,
Halfedge_handle prev1, Halfedge_handle prev1,
Vertex_handle v2) Vertex_handle v2)
{ {
// Determine which one of the given vertices mathces the left end of the // Determine which one of the given vertices matches the left end of the
// given curve. // given curve.
const bool at_obnd1 = !m_geom_traits->is_closed_2_object()(cv, ARR_MIN_END); const bool at_obnd1 = !m_geom_traits->is_closed_2_object()(cv, ARR_MIN_END);
const bool at_obnd2 = !m_geom_traits->is_closed_2_object()(cv, ARR_MAX_END); const bool at_obnd2 = !m_geom_traits->is_closed_2_object()(cv, ARR_MAX_END);
@ -1319,7 +1319,7 @@ insert_at_vertices(const X_monotone_curve_2& cv,
#endif #endif
// Determine which one of the given vertices (the target vertices of the // Determine which one of the given vertices (the target vertices of the
// given halfedges) mathces the left end of the given curve. // given halfedges) matches the left end of the given curve.
// Thus, we can determine the comparison result between prev1->target() // Thus, we can determine the comparison result between prev1->target()
// and prev2->target(). // and prev2->target().
const bool at_obnd1 = !m_geom_traits->is_closed_2_object()(cv, ARR_MIN_END); const bool at_obnd1 = !m_geom_traits->is_closed_2_object()(cv, ARR_MIN_END);

View File

@ -209,7 +209,7 @@ protected:
#endif #endif
} }
/*! Create a vertex v that mathces v1, which lies of the edge e2. */ /*! Create a vertex v that matches v1, which lies of the edge e2. */
virtual void create_vertex(Vertex_const_handle v1, virtual void create_vertex(Vertex_const_handle v1,
Halfedge_const_handle e2, Halfedge_const_handle e2,
Vertex_handle v) const Vertex_handle v) const
@ -227,7 +227,7 @@ protected:
} }
} }
/*! Create a vertex v that mathces v1, contained in the face f2. */ /*! Create a vertex v that matches v1, contained in the face f2. */
virtual void create_vertex(Vertex_const_handle v1, Face_const_handle f2, virtual void create_vertex(Vertex_const_handle v1, Face_const_handle f2,
Vertex_handle v) const Vertex_handle v) const
{ {
@ -244,7 +244,7 @@ protected:
} }
} }
/*! Create a vertex v that mathces v2, which lies of the edge e1. */ /*! Create a vertex v that matches v2, which lies of the edge e1. */
virtual void create_vertex(Halfedge_const_handle e1, Vertex_const_handle v2, virtual void create_vertex(Halfedge_const_handle e1, Vertex_const_handle v2,
Vertex_handle v) const Vertex_handle v) const
{ {
@ -261,7 +261,7 @@ protected:
} }
} }
/*! Create a vertex v that mathces v2, contained in the face f1. */ /*! Create a vertex v that matches v2, contained in the face f1. */
virtual void create_vertex(Face_const_handle f1, Vertex_const_handle v2, virtual void create_vertex(Face_const_handle f1, Vertex_const_handle v2,
Vertex_handle v) const Vertex_handle v) const
{ {
@ -278,7 +278,7 @@ protected:
} }
} }
/*! Create a vertex v that mathces the intersection of the edges e1 and e2. /*! Create a vertex v that matches the intersection of the edges e1 and e2.
*/ */
virtual void create_vertex(Halfedge_const_handle e1, virtual void create_vertex(Halfedge_const_handle e1,
Halfedge_const_handle e2, Halfedge_const_handle e2,

View File

@ -86,27 +86,27 @@ public:
Vertex_handle v) const Vertex_handle v) const
{ v->set_data(v1->data() + v2->data()); } { v->set_data(v1->data() + v2->data()); }
/*! Create a vertex v that mathces v1, which lies of the edge e2. */ /*! Create a vertex v that matches v1, which lies of the edge e2. */
virtual void create_vertex(Vertex_const_handle v1, Halfedge_const_handle e2, virtual void create_vertex(Vertex_const_handle v1, Halfedge_const_handle e2,
Vertex_handle v) const Vertex_handle v) const
{ v->set_data(v1->data() + e2->data()); } { v->set_data(v1->data() + e2->data()); }
/*! Create a vertex v that mathces v1, contained in the face f2. */ /*! Create a vertex v that matches v1, contained in the face f2. */
virtual void create_vertex(Vertex_const_handle v1, Face_const_handle f2, virtual void create_vertex(Vertex_const_handle v1, Face_const_handle f2,
Vertex_handle v) const Vertex_handle v) const
{ v->set_data(v1->data() + f2->data());} { v->set_data(v1->data() + f2->data());}
/*! Create a vertex v that mathces v2, which lies of the edge e1. */ /*! Create a vertex v that matches v2, which lies of the edge e1. */
virtual void create_vertex(Halfedge_const_handle e1, Vertex_const_handle v2, virtual void create_vertex(Halfedge_const_handle e1, Vertex_const_handle v2,
Vertex_handle v) const Vertex_handle v) const
{ v->set_data(e1->data() + v2->data()); } { v->set_data(e1->data() + v2->data()); }
/*! Create a vertex v that mathces v2, contained in the face f1. */ /*! Create a vertex v that matches v2, contained in the face f1. */
virtual void create_vertex(Face_const_handle f1, Vertex_const_handle v2, virtual void create_vertex(Face_const_handle f1, Vertex_const_handle v2,
Vertex_handle v) const Vertex_handle v) const
{ v->set_data(f1->data() + v2->data()); } { v->set_data(f1->data() + v2->data()); }
/*! Create a vertex v that mathces the intersection of the edges e1 and e2. */ /*! Create a vertex v that matches the intersection of the edges e1 and e2. */
virtual void create_vertex(Halfedge_const_handle e1, Halfedge_const_handle e2, virtual void create_vertex(Halfedge_const_handle e1, Halfedge_const_handle e2,
Vertex_handle v) const Vertex_handle v) const
{ v->set_data(e1->data() + e2->data()); } { v->set_data(e1->data() + e2->data()); }

View File

@ -65,7 +65,7 @@ public:
{} {}
/*! /*!
* Create a vertex v that mathces v1, which lies of the edge e2. * Create a vertex v that matches v1, which lies of the edge e2.
*/ */
virtual void create_vertex (Vertex_handle_A /* v1 */, virtual void create_vertex (Vertex_handle_A /* v1 */,
Halfedge_handle_B /* e2 */, Halfedge_handle_B /* e2 */,
@ -73,7 +73,7 @@ public:
{} {}
/*! /*!
* Create a vertex v that mathces v1, contained in the face f2. * Create a vertex v that matches v1, contained in the face f2.
*/ */
virtual void create_vertex (Vertex_handle_A /* v1 */, virtual void create_vertex (Vertex_handle_A /* v1 */,
Face_handle_B /* f2 */, Face_handle_B /* f2 */,
@ -81,7 +81,7 @@ public:
{} {}
/*! /*!
* Create a vertex v that mathces v2, which lies of the edge e1. * Create a vertex v that matches v2, which lies of the edge e1.
*/ */
virtual void create_vertex (Halfedge_handle_A /* e1 */, virtual void create_vertex (Halfedge_handle_A /* e1 */,
Vertex_handle_B /* v2 */, Vertex_handle_B /* v2 */,
@ -89,7 +89,7 @@ public:
{} {}
/*! /*!
* Create a vertex v that mathces v2, contained in the face f1. * Create a vertex v that matches v2, contained in the face f1.
*/ */
virtual void create_vertex (Face_handle_A /* f1 */, virtual void create_vertex (Face_handle_A /* f1 */,
Vertex_handle_B /* v2 */, Vertex_handle_B /* v2 */,
@ -97,7 +97,7 @@ public:
{} {}
/*! /*!
* Create a vertex v that mathces the intersection of the edges e1 and e2. * Create a vertex v that matches the intersection of the edges e1 and e2.
*/ */
virtual void create_vertex (Halfedge_handle_A /* e1 */, virtual void create_vertex (Halfedge_handle_A /* e1 */,
Halfedge_handle_B /* e2 */, Halfedge_handle_B /* e2 */,