PLM之家精品课程培训

PLM之家精品课程培训

联系电话:18301858168   |   QQ咨询:939801026
NX二次开发培训

NX二次开发培训

UFUN/NXOpen C++和实战案例

适合初级入门或想深入了解二次开发的工程师,本培训结合ufun,NXOpen C++,大量的实例及官方内部的开发技术。
公众号二维码

关注公众号

点击扫描二维码免费在线高清教程

课程详情
Catia二次开发培训

Catia二次开发培训

市场需求大,掌握核心技术前景广阔

Catia二次开发的市场需求大,人才稀缺。掌握开发技能潜力巨大,随着经验积累将在汽车、航空等领域有所作为。
B站二维码

在线原创B站视频

点击关注工业软件传道士主页

课程详情
Teamcenter培训

Teamcenter培训

全方位培训,从基础应用到高级开发全覆盖

涵盖用户应用基础培训、管理员基础培训、管理员高级培训及二次开发培训等全方位内容,由多年经验讲师打造。
QQ群二维码

加入同行交流

点击扫描二维码加入QQ群

课程详情
×

PLM之家plmhome公众号

课程涵盖: PLM之家所有原创视频

×

关注B站视频

所有高清视频一览无余,全部在线播放学习

×

加入PLM之家QQ群

同行交流,疑问解答,更多互助

PLM之家PLMHome-国产软件践行者

[二次开发源码] NX二次开发源码分享:NXOpen C++创建圆柱体特征

[复制链接]

2013-11-4 12:06:33 3755 0

admin 发表于 2013-11-4 12:06:33 |阅读模式

admin 楼主

2013-11-4 12:06:33

请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!

您需要 登录 才可以下载或查看,没有账号?注册

x
NX二次开发源码分享:NXOpen C++创建圆柱体特征
3 Y/ {; _& A: ~+ s. [
  1. ; `/ M" X) W. l4 q- u
  2. <P> </P>
复制代码
  1. 2 X0 q# N: ]9 U1 @0 E
  2. <P>void CreateCylinder_UsingUDB::CreateCylinder()
    3 ]. m: E1 M4 d3 {+ x) w% W
  3. {
    4 H$ }: p6 x: G1 O5 @( t4 }7 y
  4. Part* workPart(theSession->Parts()->Work());</P>
    . \3 C6 N1 P2 H: P4 V
  5. <P>Features::CylinderBuilder* cylinderBuilder1 = NULL;
    8 F1 @, k( a, [9 y
  6. cylinderBuilder1 = workPart->Features()->CreateCylinderBuilder(NULL);</P>" E3 s( h' P$ {# \. U. A" P
  7. <P>//Get the point
    4 b5 o7 b* x. f  w  Z) U2 j
  8. PropertyList* pointPropertyList = point0->GetProperties();
    - J: e% c. e: @- U4 O# Y! }/ I2 E- l  a
  9. Point3d originPoint = pointPropertyList->GetPoint("Point");
    " U7 x* M  t8 L
  10. delete pointPropertyList;
    * k" W0 I& [+ ~
  11. pointPropertyList = NULL;</P>* }# g5 u; p; e" B9 r6 U0 Q
  12. <P>//Get the direction
    . u; [3 c3 F6 Z
  13. PropertyList* vectorPropertyList = vector0->GetProperties();
    1 ]% d6 F# b) h" F; J
  14. Vector3d direction = vectorPropertyList->GetVector("Vector");# u& ~; c2 F8 C7 \( k) O1 Z0 n
  15. delete vectorPropertyList;' i. |7 x0 v3 ?( d* h
  16. vectorPropertyList = NULL;</P>( g" U& W; H% ]
  17. <P>Direction* direction1 = NULL;3 @, F* v: w/ `9 C) [# b
  18. direction1 = workPart->Directions()->CreateDirection(originPoint, direction, SmartObject::UpdateOptionWithinModeling);</P>! u: n, O& \( a1 t0 l; i
  19. <P>//Set diameter and height& n. Y- f; @" A6 c3 ^7 G( o% w
  20. std::stringstream diameterValue;+ }0 |' L8 J9 [1 n' g4 x
  21. diameterValue << diameter->GetValue();
    4 B) X8 i! \7 Q3 I1 ?; P
  22. std::stringstream heightValue;
    % F6 @" r, p5 C% j
  23. heightValue << height->GetValue();</P>3 E% @$ s, _9 ^( G! x
  24. <P>cylinderBuilder1->Diameter()->SetRightHandSide(diameterValue.str());
    ( O5 b: e4 Q9 S; R5 A8 t1 q/ y( B
  25. cylinderBuilder1->Height()->SetRightHandSide(heightValue.str());</P>/ |1 F7 t+ T! d3 E) }$ v1 N# }
  26. <P>//Set the axis- ^+ f0 |) O8 Z$ u& w8 Q! T6 ^
  27. Axis* axis1 = NULL;2 c8 `, K8 k4 o: i
  28. axis1 = cylinderBuilder1->Axis();; L( Y4 ^1 R+ l" }4 Y  z
  29. axis1->Point()->SeTCoordinates(originPoint);0 Z. [4 r+ a" k) h- _" U% t$ L
  30. axis1->SetDirection(direction1);</P>* o( I; S2 a" T
  31. <P>//Commit
    9 M) e1 Z- T" Y7 g) A
  32. cylinderBuilder1->Commit();
    9 l2 {% O3 L: C! o9 a% ^  @7 m8 f
  33. cylinderBuilder1->Destroy();
    7 e1 L0 a& v* ~  g) E" Y* J0 ^
  34. cylinderBuilder1 = NULL;
    ' e) P  c: |. J$ S* u
  35. }# I; f( h4 w$ M! t& I: F7 ~
  36. </P>
复制代码
2 H" K) c, t3 S# ^4 w' N
上海点团信息科技有限公司,承接UG NX,CATIA,CREO,Solidworks 等CAx软件,Teamcenter,3D Experience等PLM软件,工业4.0数字化软件的实施\二次开发\培训相关业务,详情QQ 939801026 Tel 18301858168 网址 www.diantuankj.com/ doTeam.tech
回复

使用道具 举报

发表回复

您需要登录后才可以回帖 登录 | 注册

返回列表 本版积分规则

  • 发布新帖

  • 在线客服

  • 微信

  • 客户端

  • 返回顶部

  • x
    温馨提示

    本网站(plmhome.com)为PLM之家工业软件学习官网站

    展示的视频材料全部免费,需要高清和特殊技术支持请联系 QQ: 939801026

    PLM之家NX CAM二次开发专题模块培训报名开始啦

    我知道了