-
Nick Draper authored
Also updated class_maker.py
Nick Draper authoredAlso updated class_maker.py
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
LoadAsciiStl.h 1.25 KiB
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 +
#pragma once
#include "MantidDataHandling/LoadStl.h"
#include <iosfwd>
namespace Mantid {
namespace Kernel {
class V3D;
}
namespace Geometry {
class MeshObject;
}
namespace DataHandling {
class DLLExport LoadAsciiStl : public LoadStl {
public:
LoadAsciiStl(std::string filename, ScaleUnits scaleType)
: LoadStl(filename, scaleType) {}
LoadAsciiStl(std::string filename, ScaleUnits scaleType,
ReadMaterial::MaterialParameters params)
: LoadStl(filename, scaleType, params) {}
std::unique_ptr<Geometry::MeshObject> readStl() override;
static bool isAsciiSTL(std::string filename);
private:
int m_lineNumber = 0;
bool readSTLTriangle(std::ifstream &file, Kernel::V3D &v1, Kernel::V3D &v2,
Kernel::V3D &v3);
bool readSTLVertex(std::ifstream &file, Kernel::V3D &vertex);
bool readSTLLine(std::ifstream &file, std::string const &type);
};
} // namespace DataHandling
} // namespace Mantid