|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
【PLM之家NX二次开发自动装配项目】1.6 创建固定约束
( \7 q+ q; ?/ B1 m( S+ B7 k2 t; j装配约束的创建过程,如何创建一个对象的约束为固定约束!4 S R# f4 t9 g$ c- k" @+ {9 i. \
3 ?# l) h& F+ o9 K: P: f4 X
: F% d0 {$ X% _! [
' n& n* g4 g% H- K0 F- {// 创建固定约束8 A( V1 [7 B5 B9 v$ g6 \
- U! u. B; z9 d$ c; t0 H& Z( \" N
; x1 t( Q* S) F5 k+ V2 T, m$ a1 I
Positioning::ComponentPositioner *componentPositioner1;
8 e3 g$ Q& P3 ^8 `3 m! T componentPositioner1 = workPart->ComponentAssembly()->Positioner();
- r* X9 b7 j2 L3 l componentPositioner1->ClearNetwork();& o* Y6 Y0 U3 ^5 n! P0 Z
componentPositioner1->BeginAssemblyConstraints();
$ @6 o6 L0 c& B3 x3 a. C. r6 V Positioning::Network *network1;
3 K Y/ E4 r* ]& V network1 = componentPositioner1->EstablishNetwork();. v% A9 S+ M% O) a, M
Positioning::ComponentNetwork *componentNetwork1(dynamic_cast<Positioning::ComponentNetwork *>(network1));
( L7 [ [+ i" f& N+ Y componentNetwork1->SetMoveObjectsState(true);
& P0 m! \, S, K+ A, v1 f v3 g2 t Assemblies::Component *nullAssemblies_Component(NULL);+ d; _1 c" `' c- R
componentNetwork1->SetDisplayComponent(nullAssemblies_Component);
. J3 d6 O7 U* X1 z0 _( A componentNetwork1->SetNetworkArrangementsMode(Positioning::ComponentNetwork::ArrangementsModeExisting);& k, E( _ Z1 y. n6 h
Positioning::Constraint *constraint1;! S8 I4 `! Q4 A' i% g/ }* O/ w8 R
constraint1 = componentPositioner1->CreateConstraint(true);
% U9 |7 O$ I% ?4 e' F8 s Positioning::ComponenTConstraint *componentConstraint1(dynamic_cast<Positioning::ComponentConstraint *>(constraint1));6 K- Z' H! R7 W( i6 p+ ~1 P
componentConstraint1->SetConstraintType(Positioning::Constraint::TypeFix);9 ?2 d3 r7 E2 N$ M0 E ^0 G
Positioning::ConstraintReference *constraintReference1;$ d' L, P( z5 Y
constraintReference1 = componentConstraint1->CreateConstraintReference(component1, component1, false, false, false);" O, d9 t* }1 M7 W F: ~
Point3d helpPoint1(0, 0, 0);& e0 u9 t6 j3 ]5 _1 }& ?8 K
constraintReference1->SetHelpPoint(helpPoint1);
; ^6 m5 a, R/ g1 u componentNetwork1->Solve();$ g8 p- X3 E: M: Z; |+ T
componentPositioner1->ClearNetwork();
5 E V9 o; s, i+ q componentPositioner1->DeleteNonPersistentConstraints();% d5 ^/ s6 a4 Z- f5 p* a
Assemblies::Arrangement *nullAssemblies_Arrangement(NULL);
. N" [& o2 {0 N! i9 K7 c' C componentPositioner1->SetPrimaryArrangement(nullAssemblies_Arrangement);) a) R2 g P$ y6 R, I2 M* C
componentPositioner1->EndAssemblyConstraints();1 J q$ r$ S, ^& ^$ ]
2 n6 T3 K8 v' X |
|