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-14 12:08:05 +0300
committerJohan K <johan@3dverkstan.se>2016-07-14 12:08:05 +0300
commit3d413df215ae5cd042b1d9ebaa2096224a46d0ac (patch)
tree903da90315417d4b0f84699753f842984da40369 /plugins/CuraEngineBackend/Cura.proto
parentd31516bbb12d98e11c9b78317a10210a6401caa1 (diff)
Changed the point data type sent from the backend from int64 to float.
Added extruder information to LayerPolygon
Diffstat (limited to 'plugins/CuraEngineBackend/Cura.proto')
-rw-r--r--plugins/CuraEngineBackend/Cura.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CuraEngineBackend/Cura.proto b/plugins/CuraEngineBackend/Cura.proto
index d38f95035f..0c4803cc19 100644
--- a/plugins/CuraEngineBackend/Cura.proto
+++ b/plugins/CuraEngineBackend/Cura.proto
@@ -77,9 +77,9 @@ message PathSegment {
Point3D = 1;
}
PointType point_type = 2;
- bytes points = 3; // The points defining the line segments, bytes of int64[2/3]? array of length N+1
+ bytes points = 3; // The points defining the line segments, bytes of float[2/3] array of length N+1
bytes line_type = 4; // Type of line segment as an unsigned char array of length 1 or N, where N is the number of line segments in this path
- bytes line_width = 5; // The widths of the line segments as bytes of a float? array of length 1 or N
+ bytes line_width = 5; // The widths of the line segments as bytes of a float array of length 1 or N
}