def standardfile():
    return [
        pv.incfiles(),
        pv.skysphere(),
        pv.plane("y",0,"Green"),
        pv.camera([50,50,-80],[0,20,100]),
        pv.lightsource([500,500,1000],"White"),
        building(0,0,0,10),
        ]
def run():
    pv.runpov([
        pv.incfiles(),
        #         pv.plane("y",0,"Green"),
        burners(0,0,0),
        pv.camera([0,100,-100],[0,0,0]),
        pv.lightsource([0,150,-150],"White"),
        ],"cookingrobot")
    pv.display("cookingrobot")
def povfile():
    return [
        pv.incfiles(),
#         pv.skysphere(),
#         pv.plane("y",0,"White"),
        bikeframe(),
        bikeseat(),
        pv.box([0,0,0],[10,2,10],"Grey"),
        pv.camera([4,1,3],[5,0.5,5]),
        pv.lightsource([5,1.9,5],"White"),
        ]