RemapObjects - PYTHON 不支持

Remqps one or more objects from one plane, or coordinate system, to another.

语法

Rhino.RemapObjects (arrObjects, arrSrcPlane, arrDstPlane [, blnCopy])

参数

arrObject

Required.Array.The identifiers of the objects to remap.

arrSrcPlane

Required.Array.The source plane to transform from.

arrDstPlane

Required.Array.The destination plane to transform to.

blnCopy

可选参数。Boolean.Copy the object.If omitted, the object will not be copied (False).

返回值

Array

An array of strings identifying the remapped objects if successful.

Null

如果执行不成功或出错,返回空值。

示例

Dim arrObjects, arrSrcPlane, arrDstPlane

arrObjects = Rhino.GetObjects("Select objects to remap")

If IsArray(arrObjects) Then

  arrSrcPlane = Rhino.ViewCPlane("Top")

  arrDstPlane = Rhino.ViewCPlane("Right")

  Rhino.RemapObjects arrObjects, arrSrcPlane, arrDstPlane

End If

同见

RemapObject