mirror of https://github.com/CGAL/cgal
Some obvious missing quotes
Some obvious missing quotes (last set)
This commit is contained in:
parent
a9d5e019b7
commit
17a84db90e
|
|
@ -37,7 +37,7 @@ licenses:
|
||||||
|
|
||||||
All other files that do not have an explicit copyright notice (e.g., all
|
All other files that do not have an explicit copyright notice (e.g., all
|
||||||
examples and some demos) are licensed under the Creative Commons CC0 1.0 license. The
|
examples and some demos) are licensed under the Creative Commons CC0 1.0 license. The
|
||||||
exact text can be found at https://creativecommons.org/publicdomain/zero/1.0/".
|
exact text can be found at https://creativecommons.org/publicdomain/zero/1.0/.
|
||||||
|
|
||||||
More information on the CGAL license can be found at
|
More information on the CGAL license can be found at
|
||||||
https://www.cgal.org/license.html
|
https://www.cgal.org/license.html
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ takes as input a <inputPoints.txt> which is a xyz text file
|
||||||
it compute the fitting for this single entry and
|
it compute the fitting for this single entry and
|
||||||
it outputs results in the <output.txt> file and on the standard std::cout
|
it outputs results in the <output.txt> file and on the standard std::cout
|
||||||
|
|
||||||
Usage is : Single_estimation <inputPoints.txt> <d_fitting>, <d_monge>"
|
Usage is : Single_estimation <inputPoints.txt> <d_fitting>, <d_monge>
|
||||||
|
|
||||||
in_points are sampled on 0.1(x²+2y²)
|
in_points are sampled on 0.1(x²+2y²)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -487,7 +487,7 @@ public:
|
||||||
sce[1-i] = svc;
|
sce[1-i] = svc;
|
||||||
--svc;
|
--svc;
|
||||||
if(svc->circle().oriented_side(sv[0]->point()) == os1) {
|
if(svc->circle().oriented_side(sv[0]->point()) == os1) {
|
||||||
// sedges are only on one side "
|
// sedges are only on one side
|
||||||
sce[i] = scb[1-i] = sce[1-i];
|
sce[i] = scb[1-i] = sce[1-i];
|
||||||
empty_c[1-i] = true;
|
empty_c[1-i] = true;
|
||||||
done = true;
|
done = true;
|
||||||
|
|
|
||||||
|
|
@ -311,7 +311,7 @@ struct Polygon_soup_orienter
|
||||||
V_ID i1 = polygons[index][(j+1)%size];
|
V_ID i1 = polygons[index][(j+1)%size];
|
||||||
edges[i0][i1].insert(index);
|
edges[i0][i1].insert(index);
|
||||||
}
|
}
|
||||||
// "inverse the orientation of polygon #index
|
// inverse the orientation of polygon #index
|
||||||
oriented[index] = true;
|
oriented[index] = true;
|
||||||
stack.push(index);
|
stack.push(index);
|
||||||
}
|
}
|
||||||
|
|
@ -323,7 +323,7 @@ struct Polygon_soup_orienter
|
||||||
const P_ID index = *(it_other_orient->second.begin());
|
const P_ID index = *(it_other_orient->second.begin());
|
||||||
if(oriented[index]) continue; //nothing todo already processed and correctly oriented
|
if(oriented[index]) continue; //nothing todo already processed and correctly oriented
|
||||||
oriented[index] = true;
|
oriented[index] = true;
|
||||||
// "keep the orientation of polygon #index
|
// keep the orientation of polygon #index
|
||||||
stack.push(index);
|
stack.push(index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ namespace CGAL {
|
||||||
namespace IO {
|
namespace IO {
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
|
||||||
// HEdgesRange" = range of std::pair<unsigned int, unsigned int>
|
// HEdgesRange = range of std::pair<unsigned int, unsigned int>
|
||||||
// HUVRange = range of std::pair<float, float>
|
// HUVRange = range of std::pair<float, float>
|
||||||
template <class PointRange, class PolygonRange, class ColorOutputIterator, class HEdgesOutputIterator, class HUVOutputIterator>
|
template <class PointRange, class PolygonRange, class ColorOutputIterator, class HEdgesOutputIterator, class HUVOutputIterator>
|
||||||
bool read_PLY(std::istream& is,
|
bool read_PLY(std::istream& is,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue