v1.5
モデリング
選択対象に基づき新しいリファレンス プレーンを作成し、アクティブなリファレンス プレーンに設定します。
oReturn = CreateReferencePlane( [InputObjs] ); |
作成されるリファレンス プレーンのリストを含む XSICollection オブジェクトを戻します。
' ' This example shows how to create a reference plane ' NewScene 'Create a sphere 'Create a grid that will serve to define the reference plane CreatePrim "Sphere", "MeshSurface" CreatePrim "Grid", "MeshSurface" TranslateTool 'Position and create reference plane from grid Rotate , 45, 0, 0, siAbsolute, siParent, siObj, siX CreateReferencePlane "grid" SelectObj "sphere", , True 'Set-up snapping to the reference plane 'Set plane reference mode in MCP SetValue "Preferences.SnapProperties.Enable", True SetValue "Preferences.SnapProperties.EnableGrid", True SetUserPref "3D_TRANSFO_REFERENTIAL_CHANGED", 7 |