LineVisualizer.LineJoin Property
Gets or sets a value specifying how line joins are rendered.
Syntax
public LineJoin LineJoin { get; set; }
Property Value
Remarks
This property is not supported for regular 3D layers, but it can be used for the surface layers of a globe view.
Example
// Set the LineJoin to Bevel
public static void SetLineJoinBevel(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.LineJoin = LineJoin.Bevel;
}
}
Platforms
Windows, Linux, Android