mirror of https://github.com/CGAL/cgal
fix other warnings
This commit is contained in:
parent
71347f28a8
commit
2549f47191
|
|
@ -44,7 +44,7 @@ int main()
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
for (int i = 0; i < 6; ++i) {
|
for (int i = 0; i < 6; ++i) {
|
||||||
const Output_type result = segment_coordinates(query_points[i], std::back_inserter(old_coordinates));
|
segment_coordinates(query_points[i], std::back_inserter(old_coordinates));
|
||||||
CGAL::Barycentric_coordinates::segment_coordinates_2(
|
CGAL::Barycentric_coordinates::segment_coordinates_2(
|
||||||
first_vertex, second_vertex, query_points[i], std::back_inserter(new_coordinates));
|
first_vertex, second_vertex, query_points[i], std::back_inserter(new_coordinates));
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ int main()
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
for (int i = 0; i < 5; ++i) {
|
for (int i = 0; i < 5; ++i) {
|
||||||
const Output_type result = triangle_coordinates(query_points[i], std::back_inserter(old_coordinates));
|
triangle_coordinates(query_points[i], std::back_inserter(old_coordinates));
|
||||||
CGAL::Barycentric_coordinates::triangle_coordinates_2(
|
CGAL::Barycentric_coordinates::triangle_coordinates_2(
|
||||||
first_vertex, second_vertex, third_vertex, query_points[i], std::back_inserter(new_coordinates));
|
first_vertex, second_vertex, third_vertex, query_points[i], std::back_inserter(new_coordinates));
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue