GeometrySettings
class GeometrySettings
using System.ComponentModel;
namespace Autodesk.DesignScript.Geometry
{
[Category("Configuration")]
internal class GeometrySettings
{
public static string RootModulePath { get; set; }
static GeometrySettings()
{
Reset();
}
private GeometrySettings()
{
}
internal static void Reset()
{
RootModulePath = string.Empty;
}
}
}