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

iCAx开思网

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

rhino犀牛的二次开发sdk程序代码

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

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

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

x
大家有空一起讨论讨论
以下代码是简单的添加新层的功能:
CRhinoCommand::result CCommandAddNewLayer::RunCommand(
        const CRhinoCommandContext& context
        )
  {
    CRhinoLayerTable& layer_table = context.m_doc.m_layer_table;
    ON_wString unused_name;
    layer_table.GetUnusedLayerName( unused_name );


    //提示输入层名
    CRhinoGetString gs;
    gs.SetCommandPrompt( L"Name of layer to add" );
    gs.SetDefaultString( unused_name );
    gs.AcceptNothing( TRUE );
    gs.GetString();
    if( gs.CommandResult() != CRhinoCommand::success )
      return gs.CommandResult();


    // 判断层名是否已输入
    ON_wString layer_name = gs.String();
    layer_name.TrimLeftAndRight();
    if( layer_name.IsEmpty() )
    {
      RhinoApp().Print( L"Layer name cannot be blank.\n" );
      return CRhinoCommand::cancel;
    }


    // 判断层名是否有效
    if( !RhinoIsValidName(layer_name) )
    {
      RhinoApp().Print( L"\"%s\" is not a valid layer name.\n", layer_name );
      return CRhinoCommand::cancel;
    }


    // 判断新加的层名是否已经存在
    int layer_index = layer_table.FindLayer( layer_name );
    if( layer_index >= 0 )
    {
      RhinoApp().Print( L"A layer with the name \"%s\" already exists.\n", layer_name );
      return CRhinoCommand::cancel;
    }


    // 创建新层
    ON_Layer layer;
    layer.SetLayerName( layer_name );


    // 添加层
    layer_index = layer_table.AddLayer( layer );
    if( layer_index < 0 )
    {
      RhinoApp().Print( L"Unable to add \"%s\" layer.\n", layer_name );
      return CRhinoCommand::failure;
    }


    return CRhinoCommand::success;
  }
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 赞一下!赞一下!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2024-11-24 01:37 , Processed in 0.058775 second(s), 11 queries , Gzip On, Redis On.

Powered by Discuz! X3.3

© 2002-2024 www.iCAx.org

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