明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1659|回复: 3

帮帮我这个新手

[复制链接]
发表于 2005-6-7 09:29:00 | 显示全部楼层 |阅读模式
在建立拉伸实体时,怎样能更有效的将之前生成的拉伸平面消除呢


                                                 本人刚刚开始学习,请各位师兄、师姐多多帮忙。
发表于 2005-6-11 19:25:00 | 显示全部楼层
你的意思有点不清楚,不知道是删除已拉伸好的实体,还是恢复操作。


若是前者可删除,是后者则加上以下语句:sendcommand "U "
 楼主| 发表于 2005-6-12 09:40:00 | 显示全部楼层
Sub Example_AddRegion()
    ' This example creates a region from an arc and a line.
    
    Dim curves(0 To 1) As AcadEntity

    ' Define the arc
    Dim centerPoint(0 To 2) As Double
    Dim radius As Double
    Dim startAngle As Double
    Dim endAngle As Double
    centerPoint(0) = 5#: centerPoint(1) = 3#: centerPoint(2) = 0#
    radius = 2#
    startAngle = 0
    endAngle = 3.141592
    Set curves(0) = ThisDrawing.ModelSpace.AddArc(centerPoint, radius, startAngle, endAngle)
    
    ' Define the line
    Set curves(1) = ThisDrawing.ModelSpace.AddLine(curves(0).startPoint, curves(0).endPoint)
        
    ' Create the region
    Dim regionObj As Variant
    regionObj = ThisDrawing.ModelSpace.addregion(curves)
dim height as double
dim taperangle as double
height=3
taperangle=0
dim solidobj as acad3dsolid
set solidobj=thisdrawing.modelspace.addextrudedsolid(regionobj(0),height,taperangle)
zoomallEnd Sub
在上面在上面这个例子中,我们先建立了面域regionobj,然后将拉伸成三维实体,
但此时图形空间中还存在面域regionobj,这种情况下,我们如何将该面域删除。
                         谢谢帮助!!!
发表于 2009-6-4 19:08:00 | 显示全部楼层
这么老的帖子我也把它顶起来,因为我也遇到这样的问题,期待高手解决
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-26 02:40 , Processed in 0.152873 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表