コード例 #1
0
 /// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="zMoveHeightIn">where to move the bit</param>
 /// <param name="commentTextIn">comment text</param>
 public GCodeCmd_ZMove(GCodeZMoveHeightEnum zMoveHeightIn, string commentTextIn)
     : base()
 {
     zMoveHeight = zMoveHeightIn;
     CommentText = commentTextIn;
 }
コード例 #2
0
 /// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="zMoveHeightIn">where to move the bit</param>
 public GCodeCmd_ZMove(GCodeZMoveHeightEnum zMoveHeightIn)
     : base()
 {
     zMoveHeight = zMoveHeightIn;
 }