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

[原创] CATIA二次开发入门教程---18 创建一个点

[复制链接]

2017-12-22 11:04:14 3471 1

admin 发表于 2017-12-20 22:57:06 |阅读模式

admin 楼主

2017-12-20 22:57:06

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

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

x

% c: V/ r. M; I- o- P3 k CATIA二次开发入门教程---18 创建一个点7 D# s" }0 k* P5 ~
" R' j5 d1 N# {& L9 e
QQ截图20171220225607.png " _' j. Q. L3 F. ^. p) ?0 U! W+ q) _

+ R+ o! K9 D) f% |
: _( m4 N6 [  h" x[mw_shl_code=c,true]////////获得Editor、Document、Container、设置GSMFactory
' N! X2 p$ z( i6 r: l5 g5 }7 H        CATFrmEditor* pEditor = CATFrmEditor::GeTCurrentEditor();# H& \, ?5 c: P
        CATDocument *pDoc = pEditor->GetDocument();
- y1 \0 R& H/ w+ I) U8 b* P( R        CATIContainerOfDocument_var spConODocs = pDoc;0 `( A* m0 P0 ^0 ]
- t3 ^! g) t3 ~5 q& Q/ {) J
        CATIContainer*            _pContainer;                //Container
* P3 b9 M- p6 q        CATIGSMFactory_var        spGSMFactory;                //GSM工厂
# p- L2 {" S5 p8 c6 D: u2 w9 @2 B  r0 T' q7 U
        _pContainer = NULL;$ c8 v2 F* ]" O7 R0 _: l7 X$ R
        HRESULT hr = spConODocs->GetSpecContainer(_pContainer);! A* Q& j5 B. b* w% d; N) n* q9 A, S
        spGSMFactory = NULL_var;# h: C6 k+ w( |. ~
        spGSMFactory = _pContainer;8 e; w) H; x4 W3 X' ]( d+ Z, i& f
        //设置点的坐标6 g6 y9 @. G* c. |
        CATMathPoint _Point;
# z- c6 E! _! Q2 q9 A1 R        _Point.SetCoord(10,10,10 );
) R5 S3 Y2 K& _        /////////////////////用以上得到的Point3D画点9 \1 s" a; }! q! q. p
        CATIGSMPoint_var spPoint1 = spGSMFactory->CreatePoint(_Point); //创建一个点
  `  V: r. {: n) c# k% A9 S  b        CATISpecObject_var                spSpecPoint1;
, M  @7 q. ?4 _' C        spSpecPoint1 = spPoint1;                                //Casts the point as a CATISpecObject
% q1 q0 Y1 a* q        CATIGSMProceduralView_var spSndPntObj = spSpecPoint1;) E9 y5 a, R# {" S  y8 V
        spSndPntObj->InsertInProceduralView();; h* |+ ^1 b/ F5 a, x
    spSpecPoint1->Update();3 a6 g+ q: U" y, O7 |, a0 {) g
        // Add your code here[/mw_shl_code]
& h) ?6 R/ X( x7 k5 [
上海点团信息科技有限公司,承接UG NX,CATIA,CREO,Solidworks 等CAx软件,Teamcenter,3D Experience等PLM软件,工业4.0数字化软件的实施\二次开发\培训相关业务,详情QQ 939801026 Tel 18301858168 网址 www.diantuankj.com/ doTeam.tech
回复

使用道具 举报

全部回复1

admin 发表于 2017-12-22 11:04:14

admin 沙发

2017-12-22 11:04:14

在创建任何几何对象之前,必须在激活的函数命令中添加以下代码,:
CATFrmEditor* pEditor = CATFrmEditor::GetCurrentEditor();
if(pEditor == NULL)
{
   printf("error getting the FRMeditor");
}
CATDocument *pDoc = pEditor->GetDocument();
CATIContainerOfDocument_var spConODocs = pDoc;
CATIContainer* pSpecContainer = NULL;
HRESULT hr =spConODocs->GetSpecContainer(pSpecContainer);
if(spConODocs == NULL_var)
{
   printf("error getting thecontainer of documents");
}
以上代码的主要功能是获取editor, the document and the container。
CATIGSMFactory_var spGSMFactory = NULL_var;
CATIPrtFactory_var spPrtFactory = NULL_var;
CATICkeParmFactory_var spParmFactory = NULL_var;
spGSMFactory = pSpecContainer;
spPrtFactory = pSpecContainer;
spParmFactory = pSpecContainer;
以上代码设置工厂,在这基础上你才可以造型,GSMFactory用于创建底层的几何对象比如点、线等。PrtFactory包含创建孔特征、拉伸特征实体等函数。ParmFactory 包含设定参数的函数。
在以上的基础上可以创建点了,步骤如下:
1)创建一个三维数组(x,y,z)定义点坐标。
double Coords[3];
Coords[0] = 0;
Coords[1] = 0;
Coords[2] = 0;
2)创建一个CATIGSMPoint并将其转换为CATISpecObject
CATIGSMPoint_var spPoint1 = spGSMFactory->CreatePoint(Coords);//Creates a point

- @( B0 G/ j$ s
CATISpecObject_var spSpecPoint1 = spPoint1; //Casts thepoint as a CATISpecObject
3)为了在CATIA显示你创建的点,必须将其添加到视图中。
spSpecPoint1->Update();
CATIGSMProceduralView_var spPntObj = spSpecPoint1;
. B! I# o6 y6 Z
spPntObj->InsertInProceduralView();

$ b3 l# D3 W- L, A
上海点团信息科技有限公司,承接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二次开发专题模块培训报名开始啦

    我知道了