[docs]classModelingCls:"""Modeling commands group definition. 9 total commands, 7 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("modeling",core,parent)@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._state@propertydefamam(self):"""amam commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_amam'):from.AmamimportAmamClsself._amam=AmamCls(self._core,self._cmd_group)returnself._amam@propertydefamPm(self):"""amPm commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_amPm'):from.AmPmimportAmPmClsself._amPm=AmPmCls(self._core,self._cmd_group)returnself._amPm@propertydeflrange(self):"""lrange commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_lrange'):from.LrangeimportLrangeClsself._lrange=LrangeCls(self._core,self._cmd_group)returnself._lrange@propertydefnpoints(self):"""npoints commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_npoints'):from.NpointsimportNpointsClsself._npoints=NpointsCls(self._core,self._cmd_group)returnself._npoints@propertydefscale(self):"""scale commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_scale'):from.ScaleimportScaleClsself._scale=ScaleCls(self._core,self._cmd_group)returnself._scale@propertydefsequence(self):"""sequence commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_sequence'):from.SequenceimportSequenceClsself._sequence=SequenceCls(self._core,self._cmd_group)returnself._sequencedefclone(self)->'ModelingCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=ModelingCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group