- Same for Point_3...

This commit is contained in:
Sylvain Pion 2003-01-20 17:21:19 +00:00
parent ffc946fc3a
commit e151e27f49
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
Version 6.69 (20 January 2003)
- Same for Point_3...
Version 6.68 (20 January 2003)
- Cartesian_converter should not use construct_point_2(NT).

View File

@ -108,7 +108,7 @@ public:
typename K2::Point_3
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