Search Result

Collapse
4 results in 0.0040 seconds.
Keywords
Members
Tags
clone
  •  

  • Ephexeve
    started a topic Tired of reinstalling

    Tired of reinstalling

    I have a quick question. When my system crashes (Arch linux) I hate the fact I have to reinstall everything again. All the DE, Login Manager, browser bookmarks etc.
    Is there anyway I can make an iso file of my system (including all partitions etc) and put it on a CD, and when my system crashes, all I need to do is put the CD and it will install everything back again?

    Thanks in advance
    See more | Go to post

  • Fuugie
    started a topic How do i Clone an object?

    How do i Clone an object?

    I am having trouble trying to clone a tree i made. Any suggestions?

    My Input:
    Code:
    from cs1graphics import *
    
    paper = Canvas(300, 200, 'skyBlue', 'My Forest')
    
    grass = Rectangle(300, 80, Point(150,160))
    grass.setFillColor('green')
    grass.setBorderColor('green')
    grass.setDepth(75)                
    paper.add(grass)
    
    tree1 = ('tree', 'tree_bottom', 'tree_base')
    ...
    See more | Go to post

  • queried
    started a topic Spawning dots along the path

    Spawning dots along the path

    Hello!

    How can I get such effect? I tried different google queries, however all the tutorials I found were just about moving one object along the guide. But I want to clone those objects somehow - to get dotted line eventually.



    Thanks for your attention....
    See more | Go to post

  • "Object in use" error when multiple objects hear event

    I'm pretty sure this is language independent and is going to be the same whether it's VC or C# - but my project is C# WIndows Forms just in case.

    Does anyone have a good handle on the sequence of events when an event is raised and multiple classes are all subscribed to the event?
    • Does each class get a copy of the argument?
    • Does each class get a pointer/address/ref to the one and only argument?
    • Do all the classes
    ...
    See more | Go to post
Working...