예제 #1
0
파일: Cluster.cs 프로젝트: herbfunk/Funky
        }          // 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()
예제 #2
0
        }  // of IsPointReachable()

        public bool AnnexCluster(Cluster pCluster)
        {
            bool lBSuccess = true;

            ListPoints.AddRange(pCluster.ListPoints);

            return(lBSuccess);
        }  // of AnnexCluster()