找回密码 注册 QQ登录
开思网工业级高精度在线3D打印服务

iCAx开思网

CAD/CAM/CAE/设计/模具 高清视频【积分说明】如何快速获得积分?快速3D打印 手板模型CNC加工服务在线3D打印服务,上传模型,自动报价
查看: 18307|回复: 6
打印 上一主题 下一主题

CAA:怎样判断在哪个instance中?

[复制链接]
跳转到指定楼层
1
发表于 2004-9-30 15:16:10 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多同行朋友,交流,分享,学习。

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

x
在一product中插入一个part的两个instance,我在一个instance中选了一条线,怎样判断这条线在哪个instance中?谢谢。
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 赞一下!赞一下!
2
发表于 2004-9-30 17:35:22 | 只看该作者
选线的pathelement.Search(IDD_CATIPart之类的找它所在的路径
3
发表于 2004-10-1 12:26:29 | 只看该作者
谢谢,这个问题已解决。实际上我本想通过getrootfather和getproduct找到instance,但getproduct好像只能得到refence,得不到instance。
4
发表于 2004-10-1 12:55:16 | 只看该作者
这个简单
  
  CATIProduct_var spInstanceProduct = NULL_var;
  
  do {
  
    if ( !ispProduct ) {
      break;
    }
    CATIProduct_var spFatherProduct = ispProduct->GetFatherProduct();
    if( !spFatherProduct ) {
      break;
    }
    CATIProduct_var spReferenceProduct = spFatherProduct->GetReferenceProduct();
    if( !spReferenceProduct ) {
      break;
    }
    spInstanceProduct = ispProduct->FindInstance( spReferenceProduct );
    if( !spInstanceProduct ) {
      break;
    }
  } while(FALSE);
  
  return spInstanceProduct;
5
发表于 2004-10-1 16:29:03 | 只看该作者
在GetFatherProduct()处出错,不能得到最顶端的product。不知为什么。
  
FindInstance是不是只能得到第一个Instance?如果在spReferenceProduct 中有两个Instance,第二个Instance好像不能得到。我理解FindInstance应该返回一个列表才行,但它只返回一个。而且这种方法还是不能确定所选直线所处的instance。
  
另外,acoka,你有没有做过约束,我用CreateConstraint(catCstTypeOn,....)创建的约束不能使objects同轴,很奇怪。
6
发表于 2004-10-1 22:21:17 | 只看该作者
pyzpyz wrote:
在GetFatherProduct()处出错,不能得到最顶端的product。不知为什么。  
  
  FindInstance是不是只能得到第一个Instance?如果在spReferenceProduct 中有两个Instance,第二个Instance好像不能得到。我理解FindInstance应该返回一个列表才行,但它只返回一个。而且这种方法还是不能确定所选直线所处的instance。  
  
  另外,acoka,你有没有做过约束,我用CreateConstraint(catCstTypeOn,....)创建的约束不能使objects同轴,很奇怪。

  
如何取得自己要的product,自己多考虑啦,实际情况实际分析
  
做过sketch的约束,没问题的
7
发表于 2012-8-30 11:12:14 | 只看该作者
pyzpyz 发表于 2004-10-1 12:26
谢谢,这个问题已解决。实际上我本想通过getrootfather和getproduct找到instance,但getproduct好像只能得到 ...

我也想知道通过选线怎么获得它的Instance,不知道怎么解决的,能解答一下吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

3D打印手板模型快速制作服务,在线报价下单!

QQ 咨询|手机版|联系我们|iCAx开思网  

GMT+8, 2024-12-27 13:07 , Processed in 0.032133 second(s), 10 queries , Gzip On, Redis On.

Powered by Discuz! X3.3

© 2002-2024 www.iCAx.org

快速回复 返回顶部 返回列表