- 积分
- 4761
- 明经币
- 个
- 注册时间
- 2008-8-16
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
32位系统和64位系统的IntersectWith函数的数据类型不同样的。导致我的DLL不可以在32位系统和64位系统兼容使用。
32位的
Public Overridable Sub IntersectWith(ByVal entityPointer As Autodesk.AutoCAD.DatabaseServices.Entity, ByVal intersectType As Autodesk.AutoCAD.DatabaseServices.Intersect, ByVal projectionPlane As Autodesk.AutoCAD.Geometry.Plane, ByVal points As Autodesk.AutoCAD.Geometry.Point3dCollection, ByVal thisGraphicSystemMarker As Integer, ByVal otherGraphicSystemMarker As Integer)
64位的最后面两个参数数据类型是long
ByVal thisGraphicSystemMarker As long , ByVal otherGraphicSystemMarker As long
我代码写的是:
L1.IntersectWith(L, Intersect.ExtendBoth, IsPt, 0, 0)
0,0要怎么写才能适应32和64系统?
|
|