Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. % Change Laser Powers:
  2. var $BaseLaserPower1 = 100
  3. var $BaseLaserPower2 = 10
  4.  
  5. % Change Z dimensions:
  6. var $zStart = 0
  7. var $zMid = 7.5
  8. var $zEnd = 15
  9. var $zIncrement = 0.2
  10. var $zPosition = 0
  11.  
  12. % Include slicer output
  13. include Cube.gwl
  14.  
  15. %for $zPosition = $zStart to $zEnd step $zIncrement
  16. %include Cube with 2 laser power\base_LP_split_X.gwl
  17. % include Cube with 2 laser power\base_LP_split_Y.gwl %doesn't work
  18.  
  19. for $zPosition = $zStart to $zMid step $zIncrement
  20. include Cube with 2 laser power\base_LP_split_Z_1of2.gwl
  21. %if $zPosition !=0
  22. end
  23.  
  24.  
  25. %for $zPosition = $zStart to $zEnd step $zIncrement
  26. %include Cube with 2 laser power\base_LP_split_X.gwl
  27. % include Cube with 2 laser power\base_LP_split_Y.gwl %doesn't work
  28.  
  29. for $zPosition = $zStart to $zEnd step $zIncrement
  30. include Cube with 2 laser power\base_LP_split_Z_2of2.gwl
  31. %if $zPosition !=0
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement