v2.0
Creates a symmetry mapping template under the model that is used to define the object's symmetry. A symmetry mapping template creates a relation between deformers.
oReturn = CreateSymmetryMappingTemplate( [InputObj], [FillTemplate], [Symmetry Plane], [CreateSymmetryMap] ); |
Returns the new symmetry mapping template.
| Parameter | Type | Description | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| InputObj | String | List of objects
Default Value: Current selection |
||||||||
| FillTemplate | Boolean | Do we want to automatically fill the object symmetry map based
on input symmetry plane
Default Value: True |
||||||||
| Symmetry Plane | Integer | Which symmetry plane should be used to generate the symmetry
map
Default Value: 0 (YZ plane)
|
||||||||
| CreateSymmetryMap | Boolean | Do we want to create a new symmetry map property mapping
geometry
Default Value: True |
'
' This example creates 2 symmetrical bones and envelopes them inside a
' sphere. Then it creates a symmetry mapping template for the envelope
' and finishes by displaying the new template's property page.
'
' Create a sphere that we will use as an envelope
set oEnvelope = CreatePrim( "Sphere", "MeshSurface" )
' Create the bones that will be used to deform the envelope
set oRoot1 = Create2DSkeleton( 0.000, 3.000, 0.000, -2.000, 1.000, _
0.000, 0.000, 0.000, 0.000, 4 )
AppendBone , -2.000, -2.000, 0.000
set oRoot2 = Create2DSkeleton( 0.000, 3.000, 0.000, 2.000, 1.000, _
0.000, 0.000, 0.000, 0.000, 4 )
AppendBone , 2.000, -2.000, 0.000
' Assign the envelope to the skeleton (notice here I have used "B:"
' to indicate that I want to select the objects in Branch mode so that
' the connection set will include the effectors as well as the roots;
' otherwise the flexible envelope will not be assigned properly.
ApplyFlexEnv oEnvelope & ";B:" & oRoot1 & ",B:" & oRoot2, False
' Create a symmetry mapping template
set oTemplate = CreateSymmetryMappingTemplate( oEnvelope, True, 0, True )
' Display the property page for the new template
InspectObj oTemplate
|