예제 #1
0
        public void Add(float x, float y)
        {
            cPoint cp = new cPoint();

            cp.x = x;
            cp.y = y;
            samples.Add(cp);
        }
예제 #2
0
 public void Add(float x, float y)
 {
     cPoint cp = new cPoint();
     cp.x = x;
     cp.y = y;
     samples.Add(cp);
 }