severin
Mechanical
- Aug 8, 2007
- 3
Hi,
i have intersected few faces and a i have joined the curves with "ug_curve_join"
How get the bounded plane of "total_curve:"?
Actually i need the are of "total curve".
Thx!
#! NX/KF 6.0
DefClass: New_Class_Name (ug_base_part);
(Child) boundary_0: {
Class, ug_curve_intersection;
Set1_References, {Face:};
Set2_References, {Face_0:};
};
(Child) boundary_1: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_1:};
};
(Child) boundary_2: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_2:};
};
(Child) boundary_3: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_3:};
};
#join the boundary
(Child) total_curve: {
Class, ug_curve_join;
profile, {boundary_0:,boundary_1:,boundary_2:,boundary_3:};
};
i have intersected few faces and a i have joined the curves with "ug_curve_join"
How get the bounded plane of "total_curve:"?
Actually i need the are of "total curve".
Thx!
#! NX/KF 6.0
DefClass: New_Class_Name (ug_base_part);
(Child) boundary_0: {
Class, ug_curve_intersection;
Set1_References, {Face:};
Set2_References, {Face_0:};
};
(Child) boundary_1: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_1:};
};
(Child) boundary_2: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_2:};
};
(Child) boundary_3: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_3:};
};
#join the boundary
(Child) total_curve: {
Class, ug_curve_join;
profile, {boundary_0:,boundary_1:,boundary_2:,boundary_3:};
};