Skip to content

Bug in ConvexHull::Delete #1

@Lixian-Zhang

Description

@Lixian-Zhang

cpp template<typename Point_2D> inline void ConvexHull<Point_2D>::Delete(Point_2D p) { if (!root) return; else if (root->getIsLeaf()) { DeleteFromLeaf(root, p); } else { DeleteAt(root, p); } } template<typename Point_2D> inline void ConvexHull<Point_2D>::DeleteAt(Point_2D p)
DeleteAt takes one argument but called with two.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions