mirror of https://github.com/CGAL/cgal
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:
parent
e85baeac6a
commit
88d1b5c802
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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 >
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
3.3.4 ( 17 Sep 1999 )
|
||||
3.3.5 ( 20 Sep 1999 )
|
||||
|
|
|
|||
Loading…
Reference in New Issue