Exemple #1
0
 protected TopicMemoryBase(TopicViewModelBase topic, List <List <T> > data)
 {
     Color   = topic.Color;
     Connect = topic.Connect;
     if (topic.HighLighting)
     {
         Radius = topic.Radius + 8;
         Width  = topic.Width + 8;
     }
     else
     {
         Radius = topic.Radius;
         Width  = topic.Width;
     }
     FrameMode  = topic.FrameMode;
     Background = topic.Background;
     Data       = data;
 }
Exemple #2
0
 public TopicMemory3(TopicViewModelBase topic, List <List <Vector3> > data)
     : base(topic, data)
 {
 }