コード例 #1
0
def render(file_path,
           width,
           height,
           depth,
           thickness,
           cut_width,
           notch_length,
           draw_bounding_box=False):
    the_box = Box(file_path, width, height, depth, thickness, cut_width,
                  notch_length, draw_bounding_box)
    the_box.render()
コード例 #2
0
def render(file_path,
           width,
           height,
           depth,
           thickness,
           cut_width,
           notch_length,
           draw_bounding_box=False,
           file_type='pdf',
           tray=False):
    the_box = Box(file_path, width, height, depth, thickness, cut_width,
                  notch_length, draw_bounding_box, file_type, tray)
    the_box.render()
コード例 #3
0
def render(file_path, width, height, depth, thickness, cut_width, notch_length, draw_bounding_box=False,
           file_type='pdf', tray=False):
    the_box = Box(file_path, width, height, depth, thickness, cut_width, notch_length, draw_bounding_box,
                  file_type, tray)
    the_box.render()
コード例 #4
0
def render(file_path,width,height,depth,thickness,
           cut_width,notch_length,draw_bounding_box=False):
    the_box = Box(file_path,width,height,depth,thickness,
           			   cut_width,notch_length,draw_bounding_box)
    the_box.render()