1 instantiation of Cluster
ReachFramework (1)
AlphaFlattener\Optimizer.cs (1)
421home = new Cluster();
16 references to Cluster
ReachFramework (16)
AlphaFlattener\Flattener.cs (5)
941List<Cluster> transparentCluster = Cluster.CalculateCluster(commands, count, disjoint, oldUnderlay); 943Cluster.CheckForRasterization(transparentCluster, commands); 962internal void LogInterestingPrimitives(List<PrimitiveInfo> commands, int count, List<Cluster> transparentCluster) 1009internal void SaveInterestingPrimitives(List<PrimitiveInfo> commands, int count, List<Cluster> transparentCluster)
AlphaFlattener\Optimizer.cs (10)
122public static void CheckForRasterization(List<Cluster> clusters, List<PrimitiveInfo> commands) 124foreach (Cluster c in clusters) 140public static List<Cluster> CalculateCluster(List<PrimitiveInfo> commands, int count, bool disjoint, List<int>[] oldUnderlay) 142List<Cluster> transparentCluster = new List<Cluster>(); 179Cluster cluster = transparentCluster[clusterIndex]; 282private void MergeWith(Cluster c) 390List<Cluster> transparentCluster, 406Cluster home = null; 410Cluster c = transparentCluster[j];
AlphaFlattener\Primitive.cs (1)
2148public Cluster m_cluster;