评估给定的剖面线或引线。 支持的平台:仅窗口 返回值(RetVal)无返回值。 言论引线:计算引线与其关联注释的关系,并在必要时更新引线几何。 填充:使用指定的填充图案评估对象的填充线或实心填充。对于常规填充图案,此方法在图案定义线和填充边界曲线之间执行相交计算以形成填充线。对于实心填充填充图案,此方法对填充区域执行三角测量,并使用给定的颜色填充三角形网格。Hatch 例子工 务 局: Sub Example_Evaluate()
' This example creates an associative hatch in model space.
' It uses the Evaluate method to calculate the hatch
' lines for the given boundary.
Dim hatchObj As AcadHatch
Dim patternName As String
Dim PatternType As Long
Dim bAssociativity As Boolean
' Define the hatch
patternName = "ANSI31"
PatternType = 0
bAssociativity = True
' Create the associative Hatch object in model space
Set hatchObj = ThisDrawing.ModelSpace.AddHatch(PatternType, patternName, bAssociativity)
' Create the outer boundary for the hatch. (a circle)
Dim outerLoop(0 To 0) As AcadEntity
Dim center(0 To 2) As Double
Dim radius As Double
center(0) = 3: center(1) = 3: center(2) = 0
radius = 1
Set outerLoop(0) = ThisDrawing.ModelSpace.AddCircle(center, radius)
' Append the outerboundary to the hatch object, and display the hatch
hatchObj.AppendOuterLoop (outerLoop)
hatchObj.Evaluate
ThisDrawing.Regen True
End Sub
Visual LISP: (vl-load-com)
(defun c:Example_Evaluate()
;; This example creates an associative hatch in model space.
;; It uses the Evaluate method to calculate the hatch
;; lines for the given boundary.
(setq acadObj (vlax-get-acad-object))
(setq doc (vla-get-ActiveDocument acadObj))
;; Define the hatch
(setq patternName "ANSI31"
patternType acHatchPatternTypePreDefined
bAssociativity :vlax-true)
;; Create the associative Hatch object in model space
(setq modelSpace (vla-get-ModelSpace doc))
(setq hatchObj (vla-AddHatch modelSpace patternType patternName bAssociativity acHatchObject))
;; Create the outer boundary for the hatch. (a circle)
(setq center (vlax-3d-point 3 3 0)
radius 1)
(setq outerLoop (vlax-make-safearray vlax-vbObject '(0 . 0)))
(vlax-safearray-put-element outerLoop 0 (vla-AddCircle modelSpace center radius))
;; Append the outerboundary to the hatch object, and display the hatch
(vla-AppendOuterLoop hatchObj outerLoop)
(vla-Evaluate hatchObj)
(vla-Regen doc :vlax-true)
)
|
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-10-29 08:51
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.