Version

CalloutCollisionMode Enumeration

An enum representing the available collision modes of callout layers.
Syntax
'Declaration
 
Public Enum CalloutCollisionMode 
   Inherits System.Enum
public enum CalloutCollisionMode : System.Enum 
Members
MemberDescription
AutoAutomatically decide the collision strategy.
GreedyUse a greedy algorithm to avoid collisions. This is cheap and predictable, but of comparatively low quality.
GreedyCenterOfMassUse a greedy algorithm with localized center of mass hints to avoid collisions. This is relatively cheap to perform, compared to the simulated annealing approach, but is of comparatively lower quality.
SimulatedAnnealingUse a simulated annealing based collision strategy. This is higher quality, but takes longer, and is performed time-sliced in the background until an acceptable quality is reached.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also