예제 #1
0
        public Scrolly(int w, int h) : base(w, h)
        {
            plasma = new Plasma(w, h);
            plasma.Update();

            ParameterText        = ",   Hypnocube LED Strand Driver demo    ,   Hypnocube - www.Hypnocube.com       ";
            ParameterDescription = "First char is separator, then strings to show, separated by the separator";
        }
예제 #2
0
        public Scrolly2(int w, int h)
            : base(w, h)
        {
            plasma = new Plasma(w, h);
            plasma.Update();

            font   = new FontController();
            curPos = Width;

            ParameterText        = ",   Hypnocube LED Strand Driver demo    ,   Hypnocube - www.Hypnocube.com       , All Hail Hypnocube! ";
            ParameterDescription = "First char is separator, then strings to show, separated by the separator";
        }
예제 #3
0
 public Maze(int w, int h)
     : base(w, h)
 {
     Generate();
     plasma = new Plasma(w, h);
 }