Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/ultimaker/curaengine
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub committed Aug 21, 2021
2 parents 99a5245 + d189637 commit 800c465
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ nbproject/*
*.depend
.*.swp
.vs
.cproject
.project
.settings

## Documentation.
documentation/html/*
Expand Down
1 change: 1 addition & 0 deletions src/MeshGroup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ bool loadMeshIntoMeshGroup(MeshGroup* meshgroup, const char* filename, const FMa
return true;
}
}
logWarning("Unable to recognize the extension of the file. Currently only .stl and .STL are supported.");
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion src/raft.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//Copyright (c) 2018 Ultimaker B.V.
//CuraEngine is released under the terms of the AGPLv3 or higher.

#include <clipper.hpp>
#include "clipper.hpp"

#include "Application.h" //To get settings.
#include "ExtruderTrain.h"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Coord_t.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


//Include Clipper to get the ClipperLib::IntPoint definition, which we reuse as Point definition.
#include <clipper.hpp>
#include "clipper.hpp"

namespace cura
{
Expand Down
2 changes: 1 addition & 1 deletion src/utils/IntPoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Integer points are used to avoid floating point rounding errors, and because Cli
#define INLINE static inline

//Include Clipper to get the ClipperLib::IntPoint definition, which we reuse as Point definition.
#include <clipper.hpp>
#include "clipper.hpp"
#include <cmath>
#include <functional> // for hash function object
#include <iostream> // auto-serialization / auto-toString()
Expand Down
2 changes: 1 addition & 1 deletion src/utils/polygon.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <vector>
#include <assert.h>
#include <float.h>
#include <clipper.hpp>
#include "clipper.hpp"

#include <algorithm> // std::reverse, fill_n array
#include <cmath> // fabs
Expand Down

0 comments on commit 800c465

Please sign in to comment.