Lines Matching refs:plane
2524 plane = "g17"
2526 # get plane selection:
2530 plane = r.group(1).lower()
2531 if plane == "g17" : r_scale = scale[0] # plane XY -> scale x
2532 if plane == "g18" : r_scale = scale[0] # plane XZ -> scale x
2533 if plane == "g19" : r_scale = scale[1] # plane YZ -> scale y
2535 if plane not in warned:
2538 if plane == "g17" and scale[0]!=scale[1]: self.error("Post-processor: Scale factors for X and Y axis are not the same. G02 and G03 codes will be corrupted.","warning")
2539 if plane == "g18" and scale[0]!=scale[2]: self.error("Post-processor: Scale factors for X and Z axis are not the same. G02 and G03 codes will be corrupted.","warning")
2540 if plane == "g19" and scale[1]!=scale[2]: self.error("Post-processor: Scale factors for Y and Z axis are not the same. G02 and G03 codes will be corrupted.","warning")
2541 warned += [plane]
2576 plane = r.group(1).lower()
2577 if plane not in planes :
2578 planes += [plane]
6112 if x.lower()+z.lower() in ["xy","yx"] : gcode_plane_selection = "G17 (Using XY plane)\n"
6113 if x.lower()+z.lower() in ["xz","zx"] : gcode_plane_selection = "G18 (Using XZ plane)\n"
6114 if x.lower()+z.lower() in ["zy","yz"] : gcode_plane_selection = "G19 (Using YZ plane)\n"