示例#1
0
        public MainForm()
        {
            InitializeComponent();

            this._Camera = new Camera();
            this._Domain = new Domain(x => (x % 2 == 0) ? (x / 2) : (x * 3 + 1));
            this._World = new World(this._Domain);

            for (uint t = 1; t < 9500; t++)
            {
                Entry x = this._Domain[t];
            }
            this._World.Insert(this._Domain[1], Vector.Zero, Vector.Zero);
        }
示例#2
0
 public World(Domain Domain)
 {
     this.Domain = Domain;
     this._Stones = new Dictionary<Entry, Stone>();
 }