Open CASCADE学习|创建多段线与圆

使用Open CASCADE Technology (OCCT)库来创建和显示一些2D几何形状。

主要过程如下:

**包含头文件:**代码首先包含了一些必要的头文件,这些头文件提供了创建和显示几何形状所需的类和函数。

**定义变量:**在main函数中,定义了一些变量来表示圆的半径、直径、螺旋部分的高度、旋转的总角度等。

**创建矩形:**使用BRepBuilderAPI_MakePolygon类来创建一个矩形。矩形的顶点坐标被添加到rectangle1中。

**创建圆:**使用Geom2d_Circle类创建两个2D圆。这些圆在XY平面上,并且中心在原点。第一个圆的半径为R,第二个圆的半径为Rr。使用BRepBuilderAPI_MakeEdge2d类将上述的两个2D圆转换为2D边(TopoDS_Edge)。

**显示形状:**创建了一个Viewer对象vout,该对象用于显示几何形状。使用vout << rectangle1;、vout << circle1;和vout << circle2;将矩形和两个圆添加到视图中。使用vout.StartMessageLoop();启动消息循环,以便用户可以与显示的形状进行交互。

cpp 复制代码
#include <AIS_Shape.hxx>
#include <V3d_View.hxx>
#include <V3d_Viewer.hxx>
#include <AIS_InteractiveContext.hxx>
#include <V3d_View.hxx>
#include "Viewer.h"
​
​
#include <TopoDS.hxx>
#include <BRepBuilderAPI_MakePolygon.hxx>
#include <Geom2d_Circle.hxx>
#include <BRepBuilderAPI_MakeEdge2d.hxx>
#include <Geom_Plane.hxx>
​
​
int main(int argc, char** argv)
{
  Standard_Real R = 4.;//outer radius
  Standard_Real D = 2 * R;//diameter
  Standard_Real Rr = 3.5;//outer radius minus body clearance
  Standard_Real b = 1.;//web thickness
  Standard_Real d = b / 2;//
  Standard_Real H = 80.;//height of the spiral part
  Standard_Real a = 3. * M_PI;//total angle of spiral rotation
  Standard_Real sigma = 118;//point angel in degrees
​
  BRepBuilderAPI_MakePolygon rectangle1;
  rectangle1.Add(gp_Pnt(d, -R, 0));
  rectangle1.Add(gp_Pnt(R, -R, 0));
  rectangle1.Add(gp_Pnt(-d, R, 0));
  rectangle1.Add(gp_Pnt(-R, R, 0));
  rectangle1.Add(gp_Pnt(d, -R, 0));
  Handle(Geom2d_Circle) c1=new Geom2d_Circle(gp_Ax22d(gp_Pnt2d(0, 0), gp_Dir2d(0,1)), R);
  TopoDS_Edge circle1 = BRepBuilderAPI_MakeEdge2d(c1);
  Handle(Geom2d_Circle) c2 = new Geom2d_Circle(gp_Ax22d(gp_Pnt2d(0, 0), gp_Dir2d(0, 1)), Rr);
  TopoDS_Edge circle2 = BRepBuilderAPI_MakeEdge2d(c2);
  Viewer vout(50, 50, 500, 500);
  vout << rectangle1;
  vout << circle1;
  vout << circle2;
  vout.StartMessageLoop();
  return 0;
​
}
​
相关推荐
云上艺旅11 小时前
K8S学习之基础七十四:部署在线书店bookinfo
学习·云原生·容器·kubernetes
懒羊羊大王&11 小时前
模版进阶(沉淀中)
c++
你觉得20511 小时前
哈尔滨工业大学DeepSeek公开课:探索大模型原理、技术与应用从GPT到DeepSeek|附视频与讲义下载方法
大数据·人工智能·python·gpt·学习·机器学习·aigc
owde12 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
GalaxyPokemon12 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi12 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
A旧城以西13 小时前
数据结构(JAVA)单向,双向链表
java·开发语言·数据结构·学习·链表·intellij-idea·idea
无所谓จุ๊บ13 小时前
VTK知识学习(50)- 交互与Widget(一)
学习·vtk
FAREWELL0007513 小时前
C#核心学习(七)面向对象--封装(6)C#中的拓展方法与运算符重载: 让代码更“聪明”的魔法
学习·c#·面向对象·运算符重载·oop·拓展方法
tadus_zeng13 小时前
Windows C++ 排查死锁
c++·windows