Fix Homogeneous

This commit is contained in:
Andreas Fabri 2021-04-13 20:05:13 +01:00
parent ac9b5b2fbd
commit 56a3a35a7d
1 changed files with 14 additions and 0 deletions

View File

@ -139,6 +139,9 @@ public:
virtual bool
is_even() const;
virtual bool
is_translation() const;
virtual RT
homogeneous(int i, int j) const ;
@ -273,6 +276,9 @@ public:
virtual bool
is_even() const;
virtual bool
is_translation() const;
virtual RT
homogeneous(int i, int j) const ;
@ -548,6 +554,14 @@ Aff_transformation_repH3<R>::is_even() const
t20, t21, t22 ) ) == POSITIVE );
}
template < class R >
CGAL_KERNEL_INLINE
bool
Aff_transformation_repH3<R>::is_translation() const
return false;
}
template < class R >
CGAL_KERNEL_LARGE_INLINE
typename Aff_transformation_repH3<R>::RT