PointVisualizer.Scale Property
Gets or sets a value controlling the size of the visualization.
Syntax
public AttributeVariable< System.Double > Scale { get; set; }
Property Value
Default: 1.0
A scale factor that is applied to the visualization.
Remarks
The original size of the object is multiplied by this value. A value lower than 1 will decrease the size of the visualization, a value greater than 1 will increase it.
Example
// Double the scale of the symbol
public static void DoubleSymbolScale(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())
{
// Get the current scale from a fixed value
double currentScale = 0.0;
bool result = pointVisualizer.Scale.TryGetValue(new AttributeSet(), out currentScale);
// Check if the value could be determined
if (result == true)
{
// Double the scale of the symbol
pointVisualizer.Scale = currentScale * 2.0;
}
}
}
Platforms
Windows, Linux, Android