LineVisualizer.AntiAlias Property
Gets or sets a flag indicating if antialiasing should be used to remove aliasing artifacts by smoothing the pixels.
Syntax
public AttributeVariable< System.Boolean > AntiAlias { get; set; }
Property Value
Default: false
True if the line should be anti-aliased; otherwise, False.
Example
// Enable anti aliasing for the given line visualizer
public static void EnableAntiAliasing(LineVisualizer lineVisualizer)
{
// This property is a member of a type that might be referred to by a View
// or a GlobeView, either directly or indirectly through other objects, which means
// that you must use the Guard class to take the global configuration lock when it
// is modified to synchronize access with any running Carmenta Engine threads.
using (Guard guard = new Guard())
{
lineVisualizer.AntiAlias = true;
}
}
Platforms
Windows, Linux, Android