本文主要是介绍曲面沿线扫掠成体matlab,沿着曲线将面域扫掠为三维曲面或三维实体,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
沿着曲线将面域扫掠为三维曲面或三维实体 [ 日期:2017-07-03 ] [ 来自:本站原创 ] HTML
Imports Autodesk.AutoCAD.ApplicationServices
Imports Autodesk.AutoCAD.DatabaseServices
Imports Autodesk.AutoCAD.EditorInput
Imports Autodesk.AutoCAD.Runtime
Imports Autodesk.AutoCAD.Geometry
Namespace SolidCreation
Public Class Commands
_
Public Sub SweepAlongPath()
Dim doc As Document = Application.DocumentManager.MdiActiveDocument
Dim db As Database = doc.Database
Dim ed As Editor = doc.Editor
' Ask the user to select a region to extrude
Dim peo1 As New PromptEntityOptions(vbLf & "Select profile or curve to sweep: ")
peo1.SetRejectMessage(vbLf & "Entity must be
这篇关于曲面沿线扫掠成体matlab,沿着曲线将面域扫掠为三维曲面或三维实体的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!