摘要: 捕捉靶框大小: Aperture 修改捕捉靶框大小 SetSysVar(_T("Aperture"), 20); 显示捕捉靶框: ApBox SetSysVar(_T("ApBox"), 1) 对象捕捉方式: OSMODE SetSysVar(_T("OSMODE"), 512); 阅读全文
posted @ 2024-09-29 10:16 unicornsir 阅读(5) 评论(0) 推荐(0) 编辑
摘要: If depends.exe (Dependency Walker) Hangs Dependency Walker is probably the best util that builds a hierarchical tree diagram of all dependent modules 阅读全文
posted @ 2024-09-13 09:01 unicornsir 阅读(48) 评论(0) 推荐(0) 编辑
摘要: // 选择立方体 ads_name ename = { 0 }; ads_point selPnt = { 0 }; acedEntSel(_T("请选择立方体"), ename, selPnt); AcDbObjectId oid = AcDbObjectId::kNull; acdbGetObj 阅读全文
posted @ 2024-08-14 14:27 unicornsir 阅读(17) 评论(0) 推荐(0) 编辑
摘要: osg的矩阵表达形式为osg::Matrix ObjectArx的矩阵表达式为AcGeMatrix3d occt的矩阵表达式分gp_Trsf及支持变形的gp_GTrsf osg矩阵转化为ObjectArx osg::Matrix mVPW; TcGeMatrix3d matrix; for (int 阅读全文
posted @ 2024-08-14 13:18 unicornsir 阅读(26) 评论(0) 推荐(0) 编辑
摘要: BRep_Tool::Surface()重载了两个函数,一个是带TopLoc_Location,这个函数返回的Geom_surface是不带位置信息的,而另一个函数则带位置信息 如: 拉伸体出来的上下两个面,如果是带TopLoc_Location参数返回可以两个面是相同的,而不带参数的则返回两个不同 阅读全文
posted @ 2024-07-23 18:02 unicornsir 阅读(29) 评论(0) 推荐(0) 编辑
摘要: TopoDS_Shape的拷贝有两种方式 1) TopoDS_Shape newShape = oldShape; 2) BRepBuilderAPI_Copy tool;tool.perform(oldShape,true,false); //! "false" since I'm not int 阅读全文
posted @ 2024-07-23 13:25 unicornsir 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 最新发布的Open Cascade 7.8.0没有附带完整版的exe安装包,因此如果想自己编译,需要借助CMake工具手动生成VS工程文件,本文详细记录了这一过程,部分参考了:【opencascade新手教程一】从windwos构建opencascade7.6 - 知乎 1. Open Cascad 阅读全文
posted @ 2024-07-19 13:56 unicornsir 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 编译一程序,出现如下错误: main.cpp(51) : error C2664: 'void __thiscall vtkVolumeMapper::SetInput(class vtkImageData *)' : cannot convert parameter 1 from 'class v 阅读全文
posted @ 2024-07-17 15:29 unicornsir 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、Git clone 出现 fatal: unable to access 'https://github.com/Serge45/GCodeViz.git/': OpenSSL SSL_ 如图所示,当我想要github上面的文件clone到本地的时候出现了这样的错误。 发生这样的错误是因为 Gi 阅读全文
posted @ 2023-08-24 13:11 unicornsir 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 项目->属性 c/c+±>所有选项->附加选项:添加/utf-8 阅读全文
posted @ 2023-06-27 17:59 unicornsir 阅读(15) 评论(0) 推荐(0) 编辑