Skip to content
Snippets Groups Projects
Commit 7cef6d9d authored by Sam Jenkins's avatar Sam Jenkins
Browse files

Re #23574 Apply Clang format

parent 3850c227
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,8 @@ std::unique_ptr<Geometry::MeshObject> LoadBinaryStl::readStl() {
Kernel::BinaryStreamReader streamReader = Kernel::BinaryStreamReader(myFile);
const auto numberTrianglesLong = getNumberTriangles(streamReader);
uint32_t nextToRead = HEADER_SIZE + TRIANGLE_COUNT_DATA_SIZE + VECTOR_DATA_SIZE;
uint32_t nextToRead =
HEADER_SIZE + TRIANGLE_COUNT_DATA_SIZE + VECTOR_DATA_SIZE;
// now read in all the triangles
for (uint32_t i = 0; i < numberTrianglesLong; i++) {
......
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