Example #1
0
 // IRosClassInterface Implementation
 public void FromJSON(JSONNode msg)
 {
     points = new List<Point32>();
     foreach (var t in msg["points"].Children)
     {
         Point32 temp = new Point32();
         temp.FromJSON(t);
         points.Add(temp);
     }
 }