public RefVector2(RefVector2 copy)
 {
     X = copy.X;
         Y = copy.Y;
 }
        public PrimitiveLine(RefVector2 start, RefVector2 end) {

            this.start = start;
            this.end = end;
        
        }