Skip to content

Commit

Permalink
Use integers for coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Aug 23, 2024
1 parent fd1ac55 commit 910f59c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cura/plugins/v0/point2d.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ syntax = "proto3";
package cura.plugins.v0;

message Point2D {
float x = 1;
float y = 2;
sint64 x = 1;
sint64 y = 2;
}
6 changes: 3 additions & 3 deletions cura/plugins/v0/point3d.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ syntax = "proto3";
package cura.plugins.v0;

message Point3D {
float x = 1;
float y = 2;
float z = 3;
sint64 x = 1;
sint64 y = 2;
sint64 z = 3;
}

0 comments on commit 910f59c

Please sign in to comment.