Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan K <johan@3dverkstan.se>2016-07-12 01:37:27 +0300
committerJohan K <johan@3dverkstan.se>2016-07-12 01:37:27 +0300
commitbbd49cee8558c79a6410a7b28c74da5d42b28ee9 (patch)
treef84a12fd901fd6594ebeba94af98cd59210cfe90 /plugins/CuraEngineBackend/Cura.proto
parent41503d7d5b57a04d18857f4fd539b3978d2a357c (diff)
parenta7cfe1b5afc7c5b1e5f11afdccbcbc6658d38432 (diff)
Merge branch 'master' of https://github.com/Ultimaker/Cura into layerview_dev
Diffstat (limited to 'plugins/CuraEngineBackend/Cura.proto')
-rw-r--r--plugins/CuraEngineBackend/Cura.proto11
1 files changed, 8 insertions, 3 deletions
diff --git a/plugins/CuraEngineBackend/Cura.proto b/plugins/CuraEngineBackend/Cura.proto
index 48dee7c9c1..af4b40859d 100644
--- a/plugins/CuraEngineBackend/Cura.proto
+++ b/plugins/CuraEngineBackend/Cura.proto
@@ -82,10 +82,15 @@ message GCodeLayer {
bytes data = 2;
}
-message ObjectPrintTime { // The print time for the whole print and material estimates for the first extruder
+
+message PrintTimeMaterialEstimates { // The print time for the whole print and material estimates for the extruder
+ float time = 1; // Total time estimate
+ repeated MaterialEstimates materialEstimates = 2; // materialEstimates data
+}
+
+message MaterialEstimates {
int64 id = 1;
- float time = 2; // Total time estimate
- float material_amount = 3; // material used in the first extruder
+ float material_amount = 2; // material used in the extruder
}
message SettingList {