mirror of https://github.com/CGAL/cgal
Fix conversion warning
This commit is contained in:
parent
3de09ad3da
commit
8e7ea14f58
|
|
@ -120,7 +120,7 @@ public:
|
||||||
|
|
||||||
m_octree.refine(maxLevel, bucketSize);
|
m_octree.refine(maxLevel, bucketSize);
|
||||||
|
|
||||||
m_width = 0.5 * FT(m_octree.bbox(m_octree.root()).xmax() - m_octree.bbox(m_octree.root()).xmin());
|
m_width = FT(0.5) * FT(m_octree.bbox(m_octree.root()).xmax() - m_octree.bbox(m_octree.root()).xmin());
|
||||||
}
|
}
|
||||||
|
|
||||||
const typename Traits::FT& width() const {
|
const typename Traits::FT& width() const {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue