Version 3.3.5 (September 20 1999)

- Fixed class Identity (clash with Kernel_objects)
- Fixed type mistake in second argument of line_get_point (Line_2.C)
This commit is contained in:
Hervé Brönnimann 1999-09-20 18:27:15 +00:00
parent e85baeac6a
commit 88d1b5c802
5 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
Version 3.3.5 (September 20 1999)
- Fixed class Identity (clash with Kernel_objects)
- Fixed type mistake in second argument of line_get_point (Line_2.C)
Version 3.3.4 (September 16 1999)
- Use the new CGAL_CFG_TYPENAME_BUG
- Fixed some missing std:: for cerr

View File

@ -52,7 +52,7 @@ Aff_transformationC2()
template < class R >
Aff_transformationC2<R CGAL_CTAG>::
Aff_transformationC2(const Identity)
Aff_transformationC2(const Identity_transformation)
{
PTR = new Aff_transformation_repC2<R>(FT(1), FT(0), FT(0), FT(1));
}

View File

@ -43,7 +43,7 @@
CGAL_BEGIN_NAMESPACE
class Identity;
class Identity_transformation;
template < class R > class Aff_transformation_rep_baseC2;
template < class R > class Aff_transformation_repC2;
template < class R > class Translation_repC2;
@ -101,7 +101,7 @@ public:
Aff_transformationC2(const Self &t);
// Identity
Aff_transformationC2(const Identity);
Aff_transformationC2(const Identity_transformation);
// Translation:
Aff_transformationC2(const Translation,

View File

@ -232,7 +232,7 @@ CGAL_KERNEL_INLINE
typename LineC2<R CGAL_CTAG>::Point_2
LineC2<R CGAL_CTAG>::point() const
{
return line_get_point(*this,FT(0));
return line_get_point(*this,0);
}
template < class R >

View File

@ -1 +1 @@
3.3.4 ( 17 Sep 1999 )
3.3.5 ( 20 Sep 1999 )