明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1206|回复: 2

[讨论]多段线的凸度问题

[复制链接]
发表于 2008-3-31 11:01:00 | 显示全部楼层 |阅读模式


使用下面程序,用getBugle就是少获得两个凸度数据。
  1. Sub pl()
  2.   Dim pll As AcadLWPolyline, ent As AcadEntity
  3.   Dim bulgeCollection As New Collection
  4.   Dim aa() As Double
  5.   Debug.Print
  6.   Set pll = ThisDrawing.ModelSpace.Item(ThisDrawing.ModelSpace.Count - 1)
  7.   
  8.   'Debug.Print ent.ObjectName
  9.   Debug.Print UBound(pll.Coordinates)
  10.   ReDim aa(0 To (UBound(pll.Coordinates) + 1) / 3) As Double
  11.   For i = 0 To (UBound(pll.Coordinates) + 1) / 3 + 0
  12.     Debug.Print i, pll.GetBulge(i)
  13.     aa(i) = pll.GetBulge(i)
  14.   Next i
  15.   Dim Coord As Variant
  16.   Coord = pll.Coordinates
  17.   Debug.Print "--------------------"
  18.   For ii = 0 To bulgeCollection.Count - 1
  19.     Debug.Print bulgeCollection.Item(ii + 1)
  20.   Next ii
  21.   Set pll = ThisDrawing.ModelSpace.AddLightWeightPolyline(Coord)
  22.   pll.Closed = True
  23.   
  24.   pll.color = acMagenta
  25.   For ii = 0 To (UBound(pll.Coordinates) + 1) / 3 + 0
  26.     'pll.SetBulge ii, bulgeCollection.Item(ii)
  27.     pll.SetBulge ii, aa(ii)
  28.   Next ii
  29.    
  30.    
  31. End Sub

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
发表于 2008-4-1 13:14:00 | 显示全部楼层
多段线闭合的问题。看看closed属性的帮助。
 楼主| 发表于 2008-4-1 13:24:00 | 显示全部楼层
fjfhgdwfn发表于2008-4-1 13:14:00多段线闭合的问题。看看closed属性的帮助。

closed = false 就少了两个凸度。明白了。

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 10:19 , Processed in 0.165571 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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