Esempio n. 1
0
        public EdgeData WithData(IEdgeData data)
        {
            EdgeData result = Clone();

            result.data = data;
            return(result);
        }
Esempio n. 2
0
 internal EdgeData(double weight, bool initialized, Color color, IEdgeData data)
 {
     this.weight      = weight;
     this.initialized = initialized;
     this.color       = color;
     this.data        = data;
 }