在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 三维仿真,三维点云插件:anycad.rapid.net.sample-master

三维仿真,三维点云插件:anycad.rapid.net.sample-master

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:12.27M
  • 下载次数:41
  • 浏览次数:421
  • 发布时间:2022-03-30
  • 实例类别:C#语言基础
  • 发 布 人:吴海
  • 文件格式:.zip
  • 所需积分:2
 相关标签: sample master ASTER .NET AMPL

同类人气实例

实例介绍

【实例简介】三维仿真,三维点云插件:anycad.rapid.net.sample-master

【实例截图】

from clipboard

【核心代码】

.
├── anycad.rapid.net.sample-master
│   ├── AnyCAD.Rapid.sln
│   ├── AnyCAD.WPF
│   │   ├── AnyCAD.WPF.csproj
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── packages.config
│   ├── AnyCAD.WinForms
│   │   ├── Analysis
│   │   │   ├── Analysis_Curvature.cs
│   │   │   ├── Analysis_Curve.cs
│   │   │   ├── Analysis_Distance.cs
│   │   │   ├── Analysis_Holes.cs
│   │   │   ├── Analysis_HolesOpenFile.cs
│   │   │   ├── Analysis_Points.cs
│   │   │   ├── Analysis_Shape.cs
│   │   │   └── Analysis_Surface.cs
│   │   ├── AnyCAD.WinForms.csproj
│   │   ├── App.config
│   │   ├── Geometry
│   │   │   ├── Geometry_BSpline.cs
│   │   │   ├── Geometry_Boolean.cs
│   │   │   ├── Geometry_Complex.cs
│   │   │   ├── Geometry_CurveOnSurface.cs
│   │   │   ├── Geometry_Cut.cs
│   │   │   ├── Geometry_Extrema.cs
│   │   │   ├── Geometry_Hatcher.cs
│   │   │   ├── Geometry_Hole.cs
│   │   │   ├── Geometry_Loft.cs
│   │   │   ├── Geometry_LoftM.cs
│   │   │   ├── Geometry_OffsetWire.cs
│   │   │   ├── Geometry_Pipe.cs
│   │   │   ├── Geometry_Pyramid.cs
│   │   │   ├── Geometry_RectPipeStep.cs
│   │   │   ├── Geometry_Sketch.cs
│   │   │   ├── Geometry_Spring.cs
│   │   │   ├── Geometry_Surface.cs
│   │   │   ├── Geometry_Sweep.cs
│   │   │   ├── Geometry_SweepByFrenet.cs
│   │   │   ├── Geometry_SweepCable.cs
│   │   │   ├── Geometry_SweepLoft.cs
│   │   │   ├── Geometry_TopoExplor.cs
│   │   │   ├── Geometry_Transform.cs
│   │   │   ├── Geometry_Tube.cs
│   │   │   └── Geometry_Window.cs
│   │   ├── Graphics
│   │   │   ├── Graphics_1000Sphere.cs
│   │   │   ├── Graphics_CAE.cs
│   │   │   ├── Graphics_DashedLines.cs
│   │   │   ├── Graphics_Dimension.cs
│   │   │   ├── Graphics_FontTexture.cs
│   │   │   ├── Graphics_Geometry.cs
│   │   │   ├── Graphics_GeometryDynamic.cs
│   │   │   ├── Graphics_Matlab.cs
│   │   │   ├── Graphics_Motion.cs
│   │   │   ├── Graphics_PointCloud.cs
│   │   │   ├── Graphics_Points.cs
│   │   │   ├── Graphics_Ray.cs
│   │   │   ├── Graphics_SceneIterator.cs
│   │   │   ├── Graphics_Selection.cs
│   │   │   ├── Graphics_ShaderBlackHole.cs
│   │   │   └── Graphics_Texture.cs
│   │   ├── MainForm.Designer.cs
│   │   ├── MainForm.cs
│   │   ├── MainForm.resx
│   │   ├── MyTagControl.Designer.cs
│   │   ├── MyTagControl.cs
│   │   ├── MyTagControl.resx
│   │   ├── NewForm3D.Designer.cs
│   │   ├── NewForm3D.cs
│   │   ├── NewForm3D.resx
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Resources
│   │   │   └── weixin.jpg
│   │   ├── Simulation
│   │   │   ├── Simulation_DynamicRay.cs
│   │   │   ├── Simulation_MotionTrail.cs
│   │   │   ├── Simulation_Robot.cs
│   │   │   └── Simulation_Skeleton.cs
│   │   ├── TestCase.cs
│   │   └── packages.config
│   ├── README.md
│   ├── data
│   │   ├── 1.brep
│   │   ├── HP004-FS.stp
│   │   ├── Holes.stp
│   │   ├── ST038.stp
│   │   ├── assembly.part.stp
│   │   ├── cloud.xyz
│   │   ├── data
│   │   │   ├── CableViewInfo.txt
│   │   │   ├── Stage4_Rotor4_Profile.curve
│   │   │   ├── Stage4_Rotor4_Profile2.curve
│   │   │   ├── XYZ.txt
│   │   │   ├── blade_p.dat
│   │   │   ├── blade_s.dat
│   │   │   └── complex
│   │   │       ├── 0.sldcrv
│   │   │       ├── 1.sldcrv
│   │   │       ├── 10.sldcrv
│   │   │       ├── 11.sldcrv
│   │   │       ├── 2.sldcrv
│   │   │       ├── 3.sldcrv
│   │   │       ├── 4.sldcrv
│   │   │       ├── 5.sldcrv
│   │   │       ├── 6.sldcrv
│   │   │       ├── 7.sldcrv
│   │   │       ├── 8.sldcrv
│   │   │       ├── 9.sldcrv
│   │   │       ├── A.sldcrv
│   │   │       ├── B.sldcrv
│   │   │       ├── C.sldcrv
│   │   │       └── D.sldcrv
│   │   ├── hole
│   │   │   └── 30-30.IGS
│   │   ├── models
│   │   │   ├── 1.stp
│   │   │   ├── 6R
│   │   │   │   ├── AXIS1.brep
│   │   │   │   ├── AXIS2.brep
│   │   │   │   ├── AXIS3.brep
│   │   │   │   ├── AXIS4.brep
│   │   │   │   ├── AXIS5.brep
│   │   │   │   ├── AXIS6.brep
│   │   │   │   └── Base.brep
│   │   │   ├── YONGSHENGDA_9998.igs
│   │   │   ├── _asm1.prt.stp
│   │   │   └── hole.STEP
│   │   ├── pressure.json
│   │   ├── sweep
│   │   │   ├── Cylinder.igs
│   │   │   ├── path.igs
│   │   │   └── spline.igs
│   │   └── textures
│   │       ├── bricks2.jpg
│   │       ├── snowflake7_alpha.png
│   │       └── water.png
│   ├── delm.bat
│   ├── showcase
│   │   ├── boolean.png
│   │   ├── cae.png
│   │   ├── dimension.png
│   │   ├── holes.png
│   │   ├── matplot.png
│   │   ├── pipe.png
│   │   ├── robot.png
│   │   ├── robot2.png
│   │   ├── spring.png
│   │   └── sweeploft.png
│   └── weixin.jpg
└── 好例子网_anycad.rapid.net.sample-master.zip

19 directories, 147 files


实例下载地址

三维仿真,三维点云插件:anycad.rapid.net.sample-master

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警