本文整理汇总了C#中Set.Any方法的典型用法代码示例。如果您正苦于以下问题:C# Set.Any方法的具体用法?C# Set.Any怎么用?C# Set.Any使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Set
的用法示例。
在下文中一共展示了Set.Any方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CuttingInsideOfNodes
bool CuttingInsideOfNodes(Set<LgNodeInfo> newIntersected, Point a, Point b) {
return newIntersected.Any(v => GettingTooCloseToNode(v, a, b));
}
示例2: RemoveShapes
public void RemoveShapes(Set<Shape> eraseSet)
{
if (eraseSet.Any()) {
_undoStack.Do(@do => {
if (@do)
RemoveShapesCore(eraseSet, @do);
else
foreach (Shape shape in eraseSet)
AddShapeCore(shape, false);
}, false);
// We also have to remove references from other shapes to the removed shapes
foreach (var shape in _core.Shapes)
_undoStack.Do(shape.OnShapesDeletedAction(eraseSet), false);
_undoStack.FinishGroup();
}
}
示例3: GetCommonAncestorsAbovePassport
Set<Shape> GetCommonAncestorsAbovePassport(Set<Shape> passport) {
if (!passport.Any()) return new Set<Shape>();
var ret = ancestorSets[passport.First()];
foreach (var shape in passport.Skip(1))
ret *= ancestorSets[shape];
return ret;
}
示例4: PropagateChangesToClusterParents
void PropagateChangesToClusterParents() {
var touchedClusters = new Set<Cluster>();
foreach (var n in objectsToDrag) {
var node = n as GeomNode;
if (node == null) continue;
foreach (var c in node.AllClusterAncestors)
if (c != graph.RootCluster && !objectsToDrag.Contains(c))
touchedClusters.Insert(c);
}
if (touchedClusters.Any())
foreach (var c in graph.RootCluster.AllClustersDepthFirstExcludingSelf())
if (touchedClusters.Contains(c))
c.CalculateBoundsFromChildren(layoutSettings.ClusterMargin);
}
示例5: GetAllAncestors
Set<Shape> GetAllAncestors(Set<Shape> passport) {
if (!passport.Any()) return new Set<Shape>();
var ret = new Set<Shape>(passport);
foreach (var shape in passport)
ret += ancestorSets[shape];
return ret;
}