root/src/BRAINSFramework/Agent.cs

2325
322
            else
322
            else
323
                return Labels[labelid];
323
                return Labels[labelid];
324
        }
324
        }
325
326
        public List<Agent> GetNearbyAgents(int distance)
327
        {
328
            return ParentWorld._spatialtable.GetNearbyItems(this, distance);
329
        }
325
    }
330
    }
326
}
331
}