上一页 1 ··· 8 9 10 11 12
摘要: 前言 在OpenCASCADE中,写入IGES或STEP文件涉及到使用相应的写入器类,并遵循一定的步骤来创建和保存几何数据。以下是一些关于如何在OpenCASCADE中写入IGES和STEP文件的基本指导: 写入IGES文件 要写入IGES文件,您可以使用IGESCAFControl_Writer类 阅读全文
posted @ 2024-04-25 23:09 一点灯 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 概述: 定义一个平面,构造的方法可以是 点法式:gp_Pln( gp_Pnt P, gp_Dir V) ABCD系数:gp_Pln(double A, double B, double C, double D) //! Creates a plane from its cartesian equat 阅读全文
posted @ 2024-04-24 20:04 一点灯 阅读(0) 评论(0) 推荐(0) 编辑
摘要: opencascade 线形成曲面 TopoDS_Wire topoWire = TopoDS.::Wire(wire.Shape); BRepBuilderAPI_MakeFace makeFacee(topoWire); TopoDS_Face face = makeFace.Face(); 平 阅读全文
posted @ 2024-04-23 21:39 一点灯 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Qt 限制文本框仅输入数字,正则表达式 QRegExp rx("^(\\d|[1-9]\\d|(1[0-2][0-3]))$");//输入范围为【0-123】 QRegExp rx2("^(-[1-9][0-9][0-9]|-[1-9][0-9]|-[1-9])|(500|\\d|[1-9]\\d| 阅读全文
posted @ 2024-04-21 08:44 一点灯 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 获取图形起点、终点 Standard_Real First=1, Last=2; Handle(Geom_Curve) curve = BRep_Tool::Curve(TopoDS::Edge(shape), First, Last); gp_Pnt Milieu = curve->Value(F 阅读全文
posted @ 2024-04-21 00:31 一点灯 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1.1 基础类:点 gp_Pnt aPnt1(0,0,0); Handle(Geom_CartesianPoint) aPnt2 = new Geom_CartesianPoint(0 , 0 , 0); Standard_Real xValue1 = aPnt1.X(); Standard_Rea 阅读全文
posted @ 2024-04-19 23:32 一点灯 阅读(0) 评论(0) 推荐(0) 编辑
摘要: QT 鼠标右击点击事件 让QWidget等组件支持右键菜单 前言重写右击事件槽函数信号和槽 disable C4819 warningdisable all warning and debug放在左下角 connect的第五个参数AutoConnectionQueuedConnectionBlock 阅读全文
posted @ 2024-01-04 18:31 一点灯 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12