Skip to content
Snippets Groups Projects
Commit 28931694 authored by Lamar Moore's avatar Lamar Moore
Browse files

delete triangulator copy constructor #21582

parent 5c645f71
Branches 22661_correct_save_format_empty_issue
No related tags found
No related merge requests found
......@@ -51,6 +51,7 @@ private:
public:
GeometryTriangulator(const CSGObject *obj = nullptr);
GeometryTriangulator(const MeshObject *obj);
GeometryTriangulator(const GeometryTriangulator &) = delete;
~GeometryTriangulator();
void triangulate();
void generateMesh();
......
......@@ -107,7 +107,6 @@ void renderRectangularBank(const Mantid::Geometry::ComponentInfo &compInfo,
void renderStructuredBank(const Mantid::Geometry::ComponentInfo &compInfo,
size_t index, const std::vector<GLColor> &color) {
auto bank = compInfo.quadrilateralComponent(index);
glBegin(GL_QUADS);
const auto &columns = compInfo.children(index);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment