mirror of https://github.com/CGAL/cgal
- Same for Point_3...
This commit is contained in:
parent
ffc946fc3a
commit
e151e27f49
|
|
@ -1,3 +1,6 @@
|
||||||
|
Version 6.69 (20 January 2003)
|
||||||
|
- Same for Point_3...
|
||||||
|
|
||||||
Version 6.68 (20 January 2003)
|
Version 6.68 (20 January 2003)
|
||||||
- Cartesian_converter should not use construct_point_2(NT).
|
- Cartesian_converter should not use construct_point_2(NT).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,7 @@ public:
|
||||||
typename K2::Point_3
|
typename K2::Point_3
|
||||||
operator()(const typename K1::Point_3 &a) const
|
operator()(const typename K1::Point_3 &a) const
|
||||||
{
|
{
|
||||||
return k.construct_point_3_object()(c(a.x()), c(a.y()), c(a.z()));
|
return typename K2::Point_3(c(a.x()), c(a.y()), c(a.z()));
|
||||||
}
|
}
|
||||||
|
|
||||||
typename K2::Vector_3
|
typename K2::Vector_3
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue