zoukankan      html  css  js  c++  java
  • NXOpen 判断部件加载状态和部件抑制状态

    //获取部件加载状态
    bool isloading = true;
    Part *resCurrentProtype = dynamic_cast<Part *>(component1->Prototype());

    if(resCurrentProtype == NULL)
    {
    isloading = false;// 不加载为false 全加载和部份加载为true
    }


    //获取部件抑制状态
    bool suppressedState = true ;
    if(component1->IsSuppressed()||component1->Prototype()==NULL)
    {
    suppressedState = false ; // 抑制的和空的为false
    }

    //判断装配组件Component是否加载状态
    bool isComponentLoad(Assemblies::Component *component)
    {
    bool isbool = true;
    Part *resCurrentProtype = dynamic_cast<Part *>(component->Prototype());

    if(resCurrentProtype == NULL)
    {
    isbool = false;
    }
    return isbool;
    }

    //判断装配组件Component是否抑制
    bool suppressedState(Assemblies::Component *component)
    {
    bool suppressedState = true ;
    if(component->IsSuppressed()||component->Prototype()==NULL)
    {
    suppressedState = false ; // 抑制的和空的为false
    }
    }

    怡宁塑胶模具设计
  • 相关阅读:
    vim 去掉自动注释和自动回车
    性别回归
    表情识别
    python list按字典的key值排序
    pytorch学习率策略
    python将list元素转为数字
    php面向对象
    mysql
    mysql
    mysql
  • 原文地址:https://www.cnblogs.com/hqsalanhuang/p/14308169.html
Copyright © 2011-2022 走看看