alias_api.set_layer_symmetry
- alias_api.set_layer_symmetry(*args, **kwargs)
Overloaded function.
set_layer_symmetry(layers: collections.abc.Sequence[alias_api.AlLayer], symmetric: bool) -> int
Set the symmetry of the given list of layers.
- param layers
The layers to set the symmetry on.
- type layers
List[AlLayer]
- param symmetric
True will set the layer to be symmetric, False will set the layer to be non-symmetric.
- type symmetric
bool
- return
The status code result of the operation.
- rtype
int(AlStatusCode)
set_layer_symmetry(layer_name: collections.abc.Sequence[str], symmetric: bool) -> int
Set the symmetry of the given list of layers by name.
- param layer_names
The names of the layers to set the symmetry on.
- type layer_names
List[str]
- param symmetric
True will set the layer to be symmetric, False will set the layer to be non-symmetric.
- type symmetric
bool
- return
The status code result of the operation.
- rtype
int(AlStatusCode)