CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2022 开发者帮助

Add3DFace 方法 (ActiveX)

2024-5-18 18:43| 发布者: admin| 查看: 83| 评论: 0|原作者: admin|来自: AutoCAD

Add3DFace 方法 (ActiveX)

创建一个给定四个顶点的 3DFace 对象。

支持的平台:仅限 Windows

签名

VBA:

RetVal = object.Add3DFace(Point1, Point2, Point3 [, Point4])
对象

类型:模型空间纸空间

此方法应用到的对象。

第1点

访问:仅输入

类型:变体(双打的三元素阵列)

指定对象上点的 3D WCS 坐标。3DFace

第2点

访问:仅输入

类型:变体(双打的三元素阵列)

指定对象上点的 3D WCS 坐标。3DFace

第3点

访问:仅输入

类型:变体(双打的三元素阵列)

指定对象上点的 3D WCS 坐标。3DFace

第4点

访问:仅输入;自选

类型:变体(双打的三元素阵列)

指定对象上点的 3D WCS 坐标。如果省略,则该点将默认为 Point3 的坐标,以创建三面面。3DFace

返回值 (RetVal)

类型: 3DFace

新创建的对象。3DFace

言论

要创建三面面,请省略最后一点。使用该方法设置边的可见性。SetInvisibleEdge

必须按顺时针或逆时针方向依次输入点才能创建对象。通过将附加面的前两点与前一个面的最后两点完全相同来创建多个相邻面。3DFace



例子

VBA:

Sub Example_Add3DFace()
    ' This example creates a 3D face in model space.

    Dim faceObj As Acad3DFace
    Dim point1(0 To 2) As Double
    Dim point2(0 To 2) As Double
    Dim point3(0 To 2) As Double
    Dim point4(0 To 2) As Double
    
    ' Define the four coordinates of the face
    point1(0) = 0#: point1(1) = 0#: point1(2) = 0#
    point2(0) = 5#: point2(1) = 0#: point2(2) = 1#
    point3(0) = 5#: point3(1) = 5#: point3(2) = 1#
    point4(0) = 1#: point4(1) = 10#: point4(2) = 0#
    
    ' Create the 3DFace object in model space
    Set faceObj = ThisDrawing.ModelSpace.Add3DFace(point1, point2, point3, point4)
    ZoomAll
    
End Sub

可视化 LISP:

(vl-load-com)
(defun c:Example_Add3DFace()
    ;; This example creates a 3D face in model space.
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))

    ;; Define the four coordinates of the face
    (setq point1 (vlax-3d-point 0 0 0)
          point2 (vlax-3d-point 5 0 1)
          point3 (vlax-3d-point 5 10 1)
          point4 (vlax-3d-point 0 10 0))
    
    ;; Create the 3DFace object in model space
    (setq modelSpace (vla-get-ModelSpace doc))
    (setq faceObj (vla-Add3DFace modelSpace point1 point2 point3 point4))
    (vla-ZoomAll acadObj)
)

路过

雷人

握手

鲜花

鸡蛋

最新评论

QQ|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1   苏公网安备32011402011833)

GMT+8, 2024-12-15 11:43

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部