跳到主要内容

create_face_from_wires

类型: 函数
领域: 建模与几何
推荐导入: from cadflow import create_face_from_wires

签名

def create_face_from_wires(outer_wire: 'Wire', inner_wires: 'Sequence[Wire]', normal: 'Tuple[float, float, float]' = (0, 0, 1)) -> 'Face'

功能说明

create_face_from_wires 是 CadFlow 建模与几何领域的公共函数。

原始 API 说明

Create a face from one outer closed wire and optional inner closed wires.

其他公共导入路径

  • from cadflow import make_face_from_wires_rface

参数

名称类型必需默认值源码说明
outer_wire'Wire'-源码 Docstring 未单独说明。
inner_wires'Sequence[Wire]'-源码 Docstring 未单独说明。
normal'Tuple[float, float, float]'(0, 0, 1)源码 Docstring 未单独说明。

返回值

类型: 'Face'

源码 Docstring 未声明更多返回语义。

异常

源码 Docstring 未声明更窄的异常契约。类型、数值、所有权、路径或后端状态无效时,仍可能抛出相应公共异常。

行为与约束

  • 以下契约由当前公共运行时签名生成;所有权与工作流限制见对应领域说明。

导入检查

from cadflow import create_face_from_wires

相关内容