mirror of https://github.com/CGAL/cgal
Temporary change to be backward compatible with bezier serialization
This commit is contained in:
parent
b3ff75846c
commit
a2bc6227c3
|
|
@ -442,6 +442,12 @@ public:
|
|||
* Check if both curve handles refer to the same object.
|
||||
*/
|
||||
bool is_same (const Self& bc) const
|
||||
{
|
||||
return *this == bc;
|
||||
// TODO: use identical instead!
|
||||
}
|
||||
|
||||
bool operator==(const Self& bc) const
|
||||
{
|
||||
if (this->identical(bc))
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue