.. _class_feature_revolve: feature_revolve =============== 环绕特征 -------- **图块代码** .. image:: img/feature_revolve.png ---- **javascript** .. code-block:: javascript jih_doc.feature_revolve(op, value, axis, color, bSolid) ---- **python** .. code-block:: python jih_doc.feature_revolve(op, value, axis, color, bSolid) ---- **npl** .. code-block:: lua jih_doc:feature_revolve(op, value, axis, color, bSolid) ---- 参数 ---- +----------+----------+-------------+--------+ | 参数 | 类型 | 默认值 | 说明 | +==========+==========+=============+========+ | op | string | "union" | | +----------+----------+-------------+--------+ | value | number | 360 | | +----------+----------+-------------+--------+ | axis | string | "'y'" | | +----------+----------+-------------+--------+ | color | string | "#ffc658" | | +----------+----------+-------------+--------+ | bSolid | string | "true" | | +----------+----------+-------------+--------+ 示例 ---- .. tabs:: .. tab:: javascript .. code-block:: javascript jih_doc.feature_revolve("union", 360, 'y', "#ffc658", true) .. tab:: python .. code-block:: python jih_doc.feature_revolve("union", 360, 'y', "#ffc658", true) .. tab:: npl .. code-block:: lua jih_doc:feature_revolve("union", 360, 'y', "#ffc658", true)