refactor: filename: gcodePlanner ==> LayerPlan (CURA-3339)

Esse commit está contido em:
Tim Kuipers
2017-02-17 12:10:50 +01:00
commit 7ae68276d4
8 arquivos alterados com 11 adições e 12 exclusões
+1 -2
Ver Arquivo
@@ -66,10 +66,9 @@ set(engine_SRCS # Except main.cpp.
src/FffProcessor.cpp
src/gcodeExport.cpp
src/GCodePathConfig.cpp
src/gcodePlanner.cpp
src/infill.cpp
src/WallsComputation.cpp
src/layerPart.cpp
src/LayerPlan.cpp
src/LayerPlanBuffer.cpp
src/MergeInfillLines.cpp
src/mesh.cpp
+1 -1
Ver Arquivo
@@ -12,7 +12,7 @@
#include "infill.h"
#include "bridge.h"
#include "pathOrderOptimizer.h"
#include "gcodePlanner.h"
#include "LayerPlan.h"
#include "gcodeExport.h"
#include "commandSocket.h"
#include "PrimeTower.h"
+2 -2
Ver Arquivo
@@ -1,6 +1,6 @@
/** Copyright (C) 2016 Ultimaker - Released under terms of the AGPLv3 License */
#include <cstring>
#include "gcodePlanner.h"
#include "LayerPlan.h"
#include "pathOrderOptimizer.h"
#include "sliceDataStorage.h"
#include "utils/polygonUtils.h"
@@ -402,7 +402,7 @@ void LayerPlan::addPolygon(ConstPolygonRef polygon, int start_idx, const GCodePa
}
else
{
logWarning("WARNING: line added as polygon! (gcodePlanner)\n");
logWarning("WARNING: line added as polygon! (LayerPlan)\n");
}
}
+3 -3
Ver Arquivo
@@ -1,6 +1,6 @@
/** Copyright (C) 2016 Ultimaker - Released under terms of the AGPLv3 License */
#ifndef GCODE_PLANNER_H
#define GCODE_PLANNER_H
#ifndef LAYER_PLAN_H
#define LAYER_PLAN_H
#include <vector>
@@ -517,4 +517,4 @@ public:
}//namespace cura
#endif//GCODE_PLANNER_H
#endif // LAYER_PLAN_H
+1 -1
Ver Arquivo
@@ -8,7 +8,7 @@
#include "commandSocket.h"
#include "gcodeExport.h"
#include "gcodePlanner.h"
#include "LayerPlan.h"
#include "MeshGroup.h"
#include "Preheat.h"
+1 -1
Ver Arquivo
@@ -3,7 +3,7 @@
#include "utils/intpoint.h"
#include "gcodeExport.h"
#include "gcodePlanner.h"
#include "LayerPlan.h"
#include "GCodePathConfig.h"
namespace cura
+1 -1
Ver Arquivo
@@ -5,7 +5,7 @@
#include "ExtruderTrain.h"
#include "sliceDataStorage.h"
#include "gcodeExport.h"
#include "gcodePlanner.h"
#include "LayerPlan.h"
#include "infill.h"
#include "PrintFeature.h"
+1 -1
Ver Arquivo
@@ -6,7 +6,7 @@
#include "utils/intpoint.h"
#include "utils/polygon.h"
#include "mesh.h"
#include "gcodePlanner.h"
#include "LayerPlan.h"
#include "MeshGroup.h"