mirror of https://github.com/CGAL/cgal
Added default parameter to the P3T3 constructor
Existed long back ago, documented, were removed for seemingly no reason
This commit is contained in:
parent
b6588a0224
commit
b3f5820ac9
|
|
@ -239,8 +239,8 @@ public:
|
|||
|
||||
public:
|
||||
/** @name Creation */ //@{
|
||||
Periodic_3_triangulation_3(const Iso_cuboid& domain,
|
||||
const Geometric_traits& gt)
|
||||
Periodic_3_triangulation_3(const Iso_cuboid& domain = Iso_cuboid(0,0,0, 1,1,1),
|
||||
const Geometric_traits& gt = Geometric_traits())
|
||||
: _gt(gt), _tds()
|
||||
{
|
||||
set_domain(domain);
|
||||
|
|
|
|||
Loading…
Reference in New Issue