明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2180|回复: 3

已知距离和角度的倒角如何实现?

[复制链接]
发表于 2003-7-29 21:07:00 | 显示全部楼层 |阅读模式
MDT的VBA reference帮助文件中有一个例程:

  1. Sub CreateSketches()

  2. ......
  3. Dim feat As McadFeature
  4. Set feat = part.AddFeature(extrude)

  5. ' Get the cylindrical face
  6.    
  7. Dim face As IMcadSurface
  8. Dim found As Boolean

  9. found = False
  10. Dim bounded As GeBoundedSurface
  11. For Each face In feat.faces
  12.     Set bounded = face.Geometry
  13.     If TypeOf bounded.BaseSurface Is GeCylinder Then
  14.         found = True
  15.         Exit For
  16.     End If
  17. Next
  18. If Not found Then Exit Sub
  19.    
  20. Dim dist As McadValue
  21. Set dist = util.CreateValue
  22. dist.value = 1

  23. Dim ang As McadValue
  24. Set ang = util.CreateValue
  25. ang.value = 30

  26. ' set the chamfer descriptor
  27. Dim chamferDescrip As McadChamferDescriptor
  28. Set chamferDescrip = util.CreateFeatureDescriptor(mcChamfer)

  29. chamferDescrip.ChamferType = mcDistanceAngle
  30. chamferDescrip.Distance1 = dist
  31. chamferDescrip.angle = ang
  32. chamferDescrip.face = face
  33.    
  34. Dim chamferFeat As McadFeature
  35. Set chamferFeat = part.AddFeature(chamferDescrip)
  36. ......


我改动了以上的代码,想试一试已知距离和角度如何画出倒角,但程序运行到
  1. chamferDescrip.face = face
复制代码

时,显示 "类型不匹配" 的错误

请高手指点
发表于 2003-8-1 17:58:00 | 显示全部楼层
MDT和AutoCAD的对象模型不同。
 楼主| 发表于 2003-8-5 21:06:00 | 显示全部楼层
从MDT自带的[I]McadVBA Developer's Guide[/I]中可以找到一个例程AddChamfer(),它演示了如何生成已知两个距离的倒角,但是要做出已知距离和角度的倒角,现在我还没做出来.
发表于 2003-10-1 16:17:00 | 显示全部楼层
能不能直接实现啊?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-28 12:31 , Processed in 0.194647 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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