Skip to content

Commit

Permalink
Added pointDelay parameter to BuildStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
drlukeparry committed Feb 1, 2022
1 parent 25db1da commit e59c4bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions App/Model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ BuildStyle::BuildStyle() : id(0),
pointExposureTime(0),
laserId(1),
laserMode(1),
pointDelay(0),
jumpSpeed(0),
jumpDelay(0)

Expand Down
1 change: 1 addition & 0 deletions App/Model.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class SLM_EXPORT BuildStyle
float laserSpeed;

uint64_t pointDistance;
uint64_t pointDelay;
uint64_t pointExposureTime;
uint64_t jumpSpeed;
uint64_t jumpDelay;
Expand Down
1 change: 1 addition & 0 deletions python/libSLM/module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ PYBIND11_MODULE(slm, m) {
.def_readwrite("pointExposureTime", &BuildStyle::pointExposureTime)
.def_readwrite("laserId", &BuildStyle::laserId)
.def_readwrite("laserMode", &BuildStyle::laserMode)
.def_readwrite("pointDelay", &BuildStyle::pointDelay)
.def_readwrite("jumpDelay", &BuildStyle::jumpDelay)
.def_readwrite("jumpSpeed", &BuildStyle::jumpSpeed)
.def("setStyle", &BuildStyle::setStyle, "Sets the paramters of the buildstyle",
Expand Down

0 comments on commit e59c4bb

Please sign in to comment.