AddWedge 方法 (ActiveX)
在给定长度、宽度和高度的情况下,创建边平行于轴的楔块。 支持的平台:仅限 Windows 签名VBA: RetVal = object.AddWedge(Center, Length, Width, Height) 言论没有其他评论。 例子VBA: Sub Example_AddWedge()
' This example creates a wedge in model space.
Dim wedgeObj As Acad3DSolid
Dim center(0 To 2) As Double
Dim length As Double
Dim width As Double
Dim height As Double
' Define the wedge
center(0) = 5#: center(1) = 5#: center(2) = 0
length = 10#: width = 15#: height = 20#
' Create the wedge in model space
Set wedgeObj = ThisDrawing.ModelSpace.AddWedge(center, length, width, height)
' Change the viewing direction of the viewport
Dim NewDirection(0 To 2) As Double
NewDirection(0) = -1: NewDirection(1) = -1: NewDirection(2) = 1
ThisDrawing.ActiveViewport.direction = NewDirection
ThisDrawing.ActiveViewport = ThisDrawing.ActiveViewport
ZoomAll
End Sub
可视化 LISP: (vl-load-com)
(defun c:Example_AddWedge()
;; This example creates a wedge in model space.
(setq acadObj (vlax-get-acad-object))
(setq doc (vla-get-ActiveDocument acadObj))
;; Define the wedge
(setq wedgeCenter (vlax-3d-point 5 5 0)
wedgeLength 10
wedgeWidth 15
wedgeHeight 20)
;; Create the wedge in model space
(setq modelSpace (vla-get-ModelSpace doc))
(setq wedgeObj (vla-AddWedge modelSpace wedgeCenter wedgeLength wedgeWidth wedgeHeight))
;; Change the viewing direction of the viewport
(setq NewDirection (vlax-3d-point -1 -1 1))
(setq activeViewport (vla-get-ActiveViewport doc))
(vla-put-Direction activeViewport NewDirection)
(vla-put-ActiveViewport doc activeViewport)
(vla-ZoomAll acadObj)
)
|
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-11-1 23:10
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.