Exemplo n.º 1
0
 public void Swap()
 {
     this = new PointStruct(Y, X);
 }
Exemplo n.º 2
0
        //public PointStruct Start;
        //public PointStruct Stop;

        public LineStruct(PointStruct start, PointStruct stop)
        {
            this.Start = start;
            this.Stop  = stop;
        }