Skip to content

Commit

Permalink
Spelling corrections
Browse files Browse the repository at this point in the history
Spelling corrections
  • Loading branch information
albert-github committed Sep 13, 2024
1 parent 9c8fc9a commit f7320ae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ void k_delaunay(Regular& rt,input_DS& input_wpt,int order){
typedef typename Kernel::Point_2 Point_2;
typedef typename Kernel::Weighted_point_2 Weighted_point_2;

std::vector<typename input_DS::iterator> Current_sel;//DS that will contain all possible combinaisons of k points (iterator), where k is the order
std::vector<typename input_DS::iterator> Current_sel;//DS that will contain all possible combinations of k points (iterator), where k is the order
typename input_DS::iterator it_wpt = input_wpt.begin();
typename input_DS::iterator stop_combi = input_wpt.end();
for(int i=0;i<order-1;++i){ //First fill the DS with the k fist wpoints
Current_sel.push_back(it_wpt);//Useful to know when all combinaisons have been treated
Current_sel.push_back(it_wpt);//Useful to know when all combinations have been treated
++it_wpt;
}
--it_wpt;
Current_sel.push_back(it_wpt);

for(int i=0;i<order;++i){ //Fix end point for combinaison searching
for(int i=0;i<order;++i){ //Fix end point for combination searching
--stop_combi;
}
do{
Expand Down
4 changes: 2 additions & 2 deletions Kernel_23/include/CGAL/Kernel/function_objects.h
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,7 @@ namespace CommonKernelFunctors {
public:
typedef FT result_type;

// There are 25 combinaisons, we use a template.
// There are 25 combinations, we use a template.
template <class T1, class T2>
FT
operator()( const T1& t1, const T2& t2) const
Expand All @@ -1108,7 +1108,7 @@ namespace CommonKernelFunctors {
public:
typedef FT result_type;

// There are 25 combinaisons, we use a template.
// There are 25 combinations, we use a template.
template <class T1, class T2>
FT
operator()( const T1& t1, const T2& t2) const
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ void test()
assert(vertices(tm1).size() == 0);
}

// test combinaison of use_compact_clipper and clip_volume
// test combinations of use_compact_clipper and clip_volume
{
TriangleMesh tm1;
std::ifstream("data-coref/cube.off") >> tm1;
Expand Down

0 comments on commit f7320ae

Please sign in to comment.