 - (vl-load-com)
- (defun c:Example_GetLoopAt()
- ;; This example creates an associative hatch in model space.
- ;; It then finds the objects that make up the first loop of the hatch.
- (setq acadObj (vlax-get-acad-object))
- (setq doc (vla-get-ActiveDocument acadObj))
- (setq modelSpace (vla-get-ModelSpace doc))
-
- ;; Define the hatch
- (setq patternName "ANSI31"
- patternType acHatchPatternTypePreDefined
- bAssociativity :vlax-true)
-
- ;; Create the associative Hatch object
- (setq modelSpace (vla-get-ModelSpace doc))
- (setq hatchObj (vla-AddHatch modelSpace patternType patternName bAssociativity acHatchObject))
-
- ;; Create the outer loop for the hatch.
- ;; An arc and a line are used to create a closed loop.
- (setq center (vlax-3d-point 5 3 0)
- radius 3
- startAngle 0
- endAngle 3.141592)
-
- (setq arcObj (vla-AddArc modelSpace center radius startAngle endAngle))
- (setq lineObj (vla-AddLine modelSpace (vla-get-StartPoint arcObj) (vla-get-EndPoint arcObj)))
- (setq outerLoop (vlax-make-safearray vlax-vbObject '(0 . 1)))
- (vlax-safearray-put-element outerLoop 0 arcObj)
- (vlax-safearray-put-element outerLoop 1 lineObj)
- ;; Append the outer loop to the hatch object
- (vla-AppendOuterLoop hatchObj outerLoop)
-
- ;; Append the first circle as one inner loop
- (setq center (vlax-3d-point 5 4.5 0)
- radius 1)
- (setq innerLoop1 (vlax-make-safearray vlax-vbObject '(0 . 0)))
- (vlax-safearray-put-element innerLoop1 0 (vla-AddCircle modelSpace center radius))
- (vla-AppendInnerLoop hatchObj innerLoop1)
-
- ;; Append the second circle as the other inner loop
- (setq radius 0.5)
- (setq innerLoop2 (vlax-make-safearray vlax-vbObject '(0 . 0)))
- (vlax-safearray-put-element innerLoop2 0 (vla-AddCircle modelSpace center radius))
- (vla-AppendInnerLoop hatchObj innerLoop2)
-
- ;; Evaluate and display the hatch
- (vla-Evaluate hatchObj)
- (vla-Regen doc :vlax-true)
-
- ;; Find the objects that make up the first loop
- (vla-GetLoopAt hatchObj 0 'loopObjs)
-
- ;; Find the types of the objects in the loop
- (setq I 0
- objName "")
- (while (>= (vlax-safearray-get-u-bound loopObjs 1) I)
- (setq objName (strcat objName (vla-get-ObjectName (vlax-safearray-get-element loopObjs I)) ", "))
- (setq I (1+ I))
- )
-
- (alert (strcat "The objects in the first loop of the hatch are: " objName))
- )
|