Exemple #1
0
 public void SetConstellation(Constellation constellation, bool refresh = true)
 {
     _constellation = constellation;
     if (refresh)
     {
         Refresh();
     }
 }
        public static Constellation FromStringAsync(string name, string text)
        {
            var result = new Constellation();

            result.TransformDataCollections = JsonConvert.DeserializeObject <List <TransformDataCollection> >(text);
            result.Name = name;
            return(result);
        }