明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 603|回复: 3

新手求助

[复制链接]
发表于 2019-7-4 10:18:05 | 显示全部楼层 |阅读模式
路过的师傅给看看 红色的两条是什么意义,有没有好像一样的

Public Function AddPlineSeg(ByVal ptSt As Variant, ByVal ptEn As Variant, ByVal width As Double) As AcadPolyline
    Dim objPline As AcadPolyline
    Dim ptArr(0 To 5) As Double

    ptArr(0) = ptSt(0)
    ptArr(1) = ptSt(1)
    ptArr(2) = ptSt(2)
    ptArr(3) = ptEn(0)
    ptArr(4) = ptEn(1)
    ptArr(5) = ptEn(2)

    Set objPline = ThisDrawing.ModelSpace.AddPolyline(ptArr)
    objPline.ConstantWidth = width
    objPline.Update
   
    Set AddPlineSeg = objPline
End Function


本帖子中包含更多资源

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

x
 楼主| 发表于 2019-7-4 10:27:37 | 显示全部楼层
路过的老师 这个地方为什么是 (i\2)

Public Function AddPolygon(ByVal ptcen As Variant, ByVal number As Integer, ByVal radius As Date, Optional width As Double, Optional angle As Double = 0) As AcadLWPolyline
'定义动态数组
    Dim objPline As AcadLWPolyline
    Dim ptArr() As Double
    '顶点的个数为number,需要2*number个元素来表示
    ReDim ptArr(2 * number - 1)
   
    '每条边对应的角度
    Dim ang As Double
    ang = 2 * 3.1415926 / number
   
    '为点的坐标数组赋值
    Dim i As Integer
    For i = 0 To 2 * number - 1
        If i Mod 2 = 0 Then
            ptArr(i) = ptcen(0) + radius * Cos((i \ 2) * ang)
        ElseIf i Mod 2 <> 0 Then
            ptArr(i) = ptcen(1) + radius * Sin((i \ 2) * ang)
        End If
    Next i
        
    '创建多段线,并调整其特性
    Set objPline = AddLWPline(ptArr, width)
    objPline.Closed = True
    objPline.Rotate ptcen, angle
    objPline.Update
End Function
发表于 2019-7-4 11:08:25 | 显示全部楼层
不加最后这句,function返回不了值。
发表于 2019-7-4 11:11:02 | 显示全部楼层
井井井1314 发表于 2019-7-4 10:27
路过的老师 这个地方为什么是 (i\2)

Public Function AddPolygon(ByVal ptcen As Variant, ByVal number ...

数组的顶点列表是xy混在一起的,1/2是第一点的x/y, 3/4是第二点的x/y,所以要除以2取整才能获得相应的x/y。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 05:20 , Processed in 0.169474 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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