明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2870|回复: 6

AcadLWPolyline重赋顶点数组的疑问

[复制链接]
发表于 2005-10-21 10:27:00 | 显示全部楼层 |阅读模式

Dim linlwPline As AcadLWPolyline
Set linlwPline = myEntity
''myEntity是选定的轻量多段线
Dim lwplPoint(0 to 3) As Double
'''lwplPoint数组已赋值
linlwPline.Coordinates = lwplPoint

但是,重赋顶点坐标时出现"致命错误:Unhandled Access Violation Reading 0x0004 Exception at 6468dfd6h"...的提示,,,请问是什么问题?????

发表于 2005-10-24 22:51:00 | 显示全部楼层
发表于 2005-10-25 14:19:00 | 显示全部楼层
先删除选定的轻量多段线,重赋顶点坐标后再生成多段线.
发表于 2005-10-25 15:54:00 | 显示全部楼层

你先计算出该点在顶点中处于什么位置,再插入顶点命令

Object.AddVertex j, newVertex1
Object.Update

j 就是你算出来的该是第多少个顶点啊1

发表于 2005-10-25 21:20:00 | 显示全部楼层

Sub Example_AddLightWeightPolyline()
    ' This example creates a lightweight polyline in model space.
   
    Dim plineObj As AcadLWPolyline
    Dim points(0 To 9) As Double
   
    ' Define the 2D polyline points
    points(0) = 1: points(1) = 1
    points(2) = 1: points(3) = 2
    points(4) = 2: points(5) = 2
    points(6) = 3: points(7) = 2
    points(8) = 4: points(9) = 4
    Dim coord As Variant
    ' Create a lightweight Polyline object in model space
    Set plineObj = ThisDrawing.ModelSpace.AddLightWeightPolyline(points)
    ZoomAll
    Dim point(0 To 13) As Double
    point(0) = 1: point(1) = 1: point(2) = 0
    point(3) = 1: point(4) = 2: point(5) = 0
    point(6) = 2: point(7) = 2: point(8) = 0
    point(9) = 3: point(10) = 2: point(11) = 0
    point(12) = 4: point(13) = 4 

    coord = point

    plineObj.Coordinates = point 'coord
    plineObj.Coordinates = coord
    '以上两种方法均可行
    plineObj.Update
End Sub

我正有这方面的应用,所以多看了几眼,

我用帮助中的例子测试,没什么问题。

 楼主| 发表于 2005-10-26 19:54:00 | 显示全部楼层
多谢各位的回答!方法我与zhang007的一样,但确实出现了"致命错误:Unhandled Access Violation Reading 0x0004 Exception at 6468dfd6h",这样的错误提示!!我现在不得已把原来的线删了,重新画了一根,但要重新赋图层/颜色/线宽........我依然对为什么出现这样的错误没有答案!!!!也有人告诉我可能是autoCAD自己的问题
发表于 2005-11-7 21:41:00 | 显示全部楼层

好像是有这个毛病

增加节点可以 减少时老出现这种错误

不是"致命错误:"就是线留下了个长尾巴

呵呵 重新画一根吧

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

本版积分规则

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

GMT+8, 2024-11-27 08:23 , Processed in 0.152817 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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