mirror of https://github.com/CGAL/cgal
Fix Homogeneous
This commit is contained in:
parent
ac9b5b2fbd
commit
56a3a35a7d
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue