} // of IsPointReachable() /// <summary> /// Incorporates all points from given cluster to this cluster /// </summary> /// <param name="p_Cluster"></param> /// <returns>true always</returns> public virtual bool AnnexCluster(cluster p_Cluster) { MidPoint += p_Cluster.MidPoint; ListPoints.AddRange(p_Cluster.ListPoints); RAGUIDS.AddRange(p_Cluster.RAGUIDS); return(true); } // of AnnexCluster()
} // of IsPointReachable() public bool AnnexCluster(Cluster pCluster) { bool lBSuccess = true; ListPoints.AddRange(pCluster.ListPoints); return(lBSuccess); } // of AnnexCluster()