forked from Macad3D/Macad3D
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOptIn.cs
More file actions
77 lines (74 loc) · 1.88 KB
/
OptIn.cs
File metadata and controls
77 lines (74 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System.Collections.Generic;
namespace Macad.Occt.Generator;
public partial class Configuration
{
/*
* If a package is listed here, it is completely ignored except the listed classes.
*/
public static Dictionary<string, List<string>> OptInClasses = new()
{
{
"BOPAlgo", new()
{
"BOPAlgo_Algo",
"BOPAlgo_BOP",
"BOPAlgo_Builder",
"BOPAlgo_BuilderShape",
"BOPAlgo_GlueEnum",
"BOPAlgo_Operation",
"BOPAlgo_Options",
"BOPAlgo_Tools",
"BOPAlgo_ToolsProvider",
}
},
{
"BRepOffset", new()
{
"BRepOffset_Error",
"BRepOffset_MakeOffset",
"BRepOffset_Mode",
}
},
{
"ChFi3d", new()
{
"ChFi3d_FilletShape"
}
},
{
"Extrema", new()
{
"Extrema_ExtAlgo",
"Extrema_ExtFlag",
"Extrema_ExtPC",
"Extrema_POnCurv",
}
},
{
"GeomPlate", new()
{
"GeomPlate_BuildAveragePlane",
}
},
{
"Message", new()
{
"Message",
"Message_Gravity",
"Message_Printer",
"Message_Report",
"Message_Messenger",
"Message_MetricType",
"Message_ProgressRange",
"Message_ListOfAlert"
}
},
{
"WNT", new()
{
"WNT_Window",
"WNT_WClass",
}
},
};
}