iCAx开思网
标题:
请教大家,怎么用caa实现草图视图?
[打印本页]
作者:
rongtiannuaa
时间:
2008-7-19 15:35
标题:
请教大家,怎么用caa实现草图视图?
我要做一个addin,是想交互功能,即用户点击addin并选面后catia就进入草图界面,不知如何实现,请大家帮忙。
作者:
zzwwindy
时间:
2009-7-7 07:54
我也正在找这类问题,请各位帮帮忙
作者:
ytyu2004
时间:
2009-7-21 16:31
CATSession *pSession = CATSession::GetPtrSession();
if(pSession != NULL)
{
CATIIniInteractiveSession *pSampleSession = NULL;
rc = pSession-> QueryInterface(IID_CATIIniInteractiveSession,(void**)&pSampleSession);
if(FAILED(rc))
{
cout<<"FAILED Session!"<<endl;
return 1;
}
CATIEditor * pEditor = NULL;
rc = pSampleSession->New("CATDrawing", &pEditor);
这段代码是在三维里打开二维Drawing,不知道是不是你想要的。
作者:
ytyu2004
时间:
2009-7-21 16:32
CATSession *pSession = CATSession::GetPtrSession();
if(pSession != NULL)
{
CATIIniInteractiveSession *pSampleSession = NULL;
rc = pSession-> QueryInterface(IID_CATIIniInteractiveSession,(void**)&pSampleSession);
if(FAILED(rc))
{
cout<<"FAILED Session!"<<endl;
return 1;
}
CATIEditor * pEditor = NULL;
rc = pSampleSession->New("CATDrawing", &pEditor);
这段代码是在三维里打开二维Drawing,不知道是不是你想要的。
作者:
书根
时间:
2009-8-19 19:49
我想学这个.可是不知道怎么学啊,是不是全是英语的啊
欢迎光临 iCAx开思网 (https://www.icax.org/)
Powered by Discuz! X3.3