SymbolVisualizer.Pitch Property
Gets or sets the pitch of a Symbol3D symbol.
Syntax
public AttributeVariable< System.Double > Pitch { get; set; }
Property Value
Default: 0.0
An angle in degrees, specifying the rotation around the Y axis of the symbol. The rotation is defined clockwise (seen in the direction of the X axis.
Remarks
This property is only used for Symbol3D objects applied to point features.
Example
// Set the pitch from attribute. This property is only used for Symbol3D objects applied
// to point features.
public static void SetPitchFromAttribute(SymbolVisualizer symbolVisualizer, Atom pitchAttributeKey)
{
// 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())
{
// The Pitch is an angle in degrees, specifying the rotation around the Y axis
// of the symbol. The rotation is defined clockwise (seen in the direction of
// the X axis). This property is only used for Symbol3D objects applied to point
// features.
symbolVisualizer.Pitch = new IndirectAttributeVariable<double>(pitchAttributeKey, 0.0);
}
}
Platforms
Windows, Linux, Android