iCAx开思工具箱

标题: CATIMovable的问题,求帮助 [打印本页]

作者: wndcool    时间: 2007-1-23 17:47
标题: CATIMovable的问题,求帮助
在CATIA自己的程序中,当产品有约束的时候仍然可以拖着它具有约束的子产品乱跑,
无非是子产品单独跑还是一堆被约束的子产品一起跑的问提,但都是可以移动的。

但是我写的程序就有问题:
我会用CAA创建约束,然后用程序得到一个子产品的CATIMovable接口,调用它的SetAbsPosition函数,
然后程序就停在SetAbsPosition这个函数里不出来了,似乎CPU也成了100%,不知道是为什么,
各位高手,这个是怎么回事呢。
当我没建约束的时候,这些子产品用CATIMovable的SetAbsPosition移动的很好。
作者: wndcool    时间: 2007-1-29 21:35
顶一下,还没解决呀
作者: horizan    时间: 2007-1-30 11:01
你的代码不知道是什么样子,最好能贴出来看一下。
创建约束以后,你子节点的Parent设置为Flexibale没有?SetAbsPosition走不过去,是否只有些设置冲突了,仔细检查一下。
作者: wndcool    时间: 2007-1-30 11:12
std::cout<<"SetAbsPosition start"<<std::endl;
        HRESULT rc;
        CATIMovable *pCATIMovable=NULL;
        if(_pInstanceProduct!=NULL)
                rc= _pInstanceProduct->QueryInterface(IID_CATIMovable,
                                                          (void**)&pCATIMovable);
        if ( SUCCEEDED(rc))
        {
                CATIProduct_var spParentProduct = _pInstanceProduct->GetFatherProduct();
                if (NULL_var == spParentProduct)
                {
                        std::cout<<"GetFatherProduct ERROR"<<std::endl;
                        return 100;
                }

                CATIBlockMovable *piBlockMovable = NULL;
                rc = spParentProduct->QueryInterface(IID_CATIBlockMovable,
                                             (void **) &piBlockMovable);
                if(FAILED(rc) || NULL == piBlockMovable)
                {
                        informationOut4<<"GetCATIBlockMovable ERROR"<<std::endl;
                        return 101;
                }

                int isFlexibleFlag = piBlockMovable->IsSoft();
                if (isFlexibleFlag)
                        informationOut4 << " is already Flexible" << std::endl;
                else
                {
                        informationOut4 << " is rigid, making it flexible" <<std::endl;
                        piBlockMovable->MakeSoftAssembly();
                }
                //isFlexibleFlag = piBlockMovable->IsSoft();
                piBlockMovable->Release();
                piBlockMovable = NULL;

                std::cout<<"pCATIMovable start"<<std::endl;
                double  aAbsPosition[12]={0};

                std::cout<<"pCATIMovable start1"<<std::endl;
                iVDMathTransformation.GetCoef(aAbsPosition);
                std::cout<<"pCATIMovable start2"<<std::endl;
                CATMathTransformation prodTrans(aAbsPosition);
                std::cout<<"pCATIMovable start3"<<std::endl;
                std::cout<<"pCATIMovable="<<pCATIMovable<<std::endl;
                rc=pCATIMovable->SetAbsPosition(prodTrans);
                if(FAILED(rc))
                {
                        std::cout<<"Set pos failed"<<std::endl;
                        pCATIMovable->Release();
                        std::cout<<"Set pos failed1"<<std::endl;
                        pCATIMovable=NULL;
                        std::cout<<"Set pos failed2"<<std::endl;
                        return 1;
                }
                std::cout<<"CATMathTransformation ok"<<std::endl;
                pCATIMovable->Release();
                pCATIMovable=NULL;
                //informationOut4<<"SetAbsPosition end"<<std::endl;
                std::cout<<"SetAbsPosition end"<<std::endl;
作者: horizan    时间: 2007-1-30 20:02
代码看了一下,没有什么大的问题。两个疑问:
1、piBlockMovable->MakeSoftAssembly();之后不一定会将对象设置为Flexible,有些时候改不了;
2、double  aAbsPosition[12]={0};变换矩阵设为0是什么意义,1,0,0,0,1,0,0,0,1,0,0,0才是你要的吧。
其它的看不出来有什么问题,没办法调试,帮不到你了。
作者: wndcool    时间: 2007-1-30 22:57
1、piBlockMovable->MakeSoftAssembly();之后不一定会将对象设置为Flexible,有些时候改不了;
如果这样,那怎么才能一定改呢?

2,那个是我double的数组都等于0是初始化,为了保险才这样的。后面有通过输入GetCoef得到真正的矩阵.

谢谢你的帮助,我再看看我程序是不是其他地方有什么问题
作者: wndcool    时间: 2007-1-31 11:50
piBlockMovable->MakeSoftAssembly();之后不一定会将对象设置为Flexible,有些时候改不了.
这个完全正确,
当我子产品之间有了约束之后,用这个函数改,可是仍然是rigid,所以调用setabsposition会有错误,
有没有什么解决办法呢
作者: horizan    时间: 2007-1-31 12:53
原帖由  于 2007-1-31 11:50 发表
piBlockMovable->MakeSoftAssembly();之后不一定会将对象设置为Flexible,有些时候改不了.
这个完全正确,
当我子产品之间有了约束之后,用这个函数改,可是仍然是rigid,所以调用setabsposition会有错误,
有没 ...

对里面的机制了解不多,希望有高手讲解。
作者: xacf    时间: 2007-2-1 09:06
试验一下约束顺序
作者: hick    时间: 2007-2-1 18:33
试试这两个方法:
virtual void MakeSoft(CATIProduct * highProduct = NULL) = 0;
virtual void SetSoft(CATBoolean state) = 0;
作者: wndcool    时间: 2007-2-1 21:27
1:试验一下约束顺序
这个是什么意思呢?我只建了一个约束就这样了。

2:
virtual void MakeSoft(CATIProduct * highProduct = NULL) = 0;
virtual void SetSoft(CATBoolean state) = 0;

这两个方法是哪个接口的啊?




欢迎光临 iCAx开思工具箱 (https://t.icax.org/) Powered by Discuz! X3.3