-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathпараметры_ugopen.txt
96 lines (83 loc) · 2.01 KB
/
параметры_ugopen.txt
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
typedef enum
{
UF_PARAM_cut_dir_undefined,
UF_PARAM_cut_dir_climb,
UF_PARAM_cut_dir_conventional
} UF_PARAM_cut_dir_type_t;
/* UF_PARAM_CUT_DIR_TYPE
*
* Description:
* This parameter specifies cut direction type
*
* Type: UF_PARAM_type_int
*
* Name: Cut Direction Type
* Variable Name: <prefix>_cut_direction_type
*
* Possible Values: UF_PARAM_cut_dir_type_t
*
*
*/
// #define UF_PARAM_CUT_DIR_TYPE 405 /* UF_PARAM_type_int */
/*
Cut Flag Conventional
Cut Direction Flag Climb
Cut Direction Forward
typedef enum
{
UF_PARAM_dpmrc_bnd_dir_forward,
UF_PARAM_dpmrc_bnd_dir_backward
} UF_PARAM_dpmrc_bnd_dir_t;
*/
/* UF_PARAM_DPMRC_BOUNDARY_DIR
*
* Description:
* This parameter specifies the boundary direction in the radial cut drive method
* (dpmrc).
*
* Type: UF_PARAM_type_int
*
* Name: DPMRC Boundary Dir
* Variable Name: <prefix>_dpmrc_boundary_dir
*
* Possible Values: UF_PARAM_dpmrc_bnd_dir_t
*
*
*/
//#define UF_PARAM_DPMRC_BOUNDARY_DIR 1751 /* Param_type_int */
/* UF_PARAM_DPMRC_BOUNDARY_RIGHT
*
* Description:
* This parameter specifies how far the radial cut goes to the right side of
* the boundary in the radial cut drive method (dpmrc). This may also
* be called the right side band width.
*
* Type: UF_PARAM_type_double
*
* Name: DPMRC Boundary Right
* Variable Name: <prefix>_dpmrc_boundary_right
*
* Possible Values:
* double
*
*
*/
//#define UF_PARAM_DPMRC_BOUNDARY_RIGHT 1753
/* UF_PARAM_DPMRC_BOUNDARY_LEFT
*
* Description:
* This parameter specifies how far the radial cut goes to the left side of
* the boundary in the radial cut drive method (dpmrc). This may also
* be called the left side band width.
*
* Type: UF_PARAM_type_double
*
* Name: DPMRC Boundary Left
* Variable Name: <prefix>_dpmrc_boundary_left
*
* Possible Values:
* double
*
*
*/
//#define UF_PARAM_DPMRC_BOUNDARY_LEFT 1754