PointVisualizer.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 visualizer should use antialiasing, False otherwise.
Example
// Enable anti aliasing for the given point visualizer
public static void EnableAntiAliasing(PointVisualizer pointVisualizer)
{
// 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())
{
pointVisualizer.AntiAlias = true;
}
}
Platforms
Windows, Linux, Android