Public Member Functions | |
| def | __init__ |
Data Fields | |
| xStr | |
| yStr | |
| zStr | |
| x | |
| y | |
| z | |
Static Public Attributes | |
| int | x = 0 |
| int | y = 0 |
| int | z = 0 |
| string | xStr = "" |
| string | yStr = "" |
| string | zStr = "" |
Definition at line 216 of file smeshDC.py.
| def smeshDC.PointStructStr.__init__ | ( | self, | |
| xStr, | |||
| yStr, | |||
| zStr | |||
| ) |
Definition at line 225 of file smeshDC.py.
00226 : 00227 self.xStr = xStr 00228 self.yStr = yStr 00229 self.zStr = zStr 00230 if isinstance(xStr, str) and notebook.isVariable(xStr): 00231 self.x = notebook.get(xStr) 00232 else: 00233 self.x = xStr 00234 if isinstance(yStr, str) and notebook.isVariable(yStr): 00235 self.y = notebook.get(yStr) 00236 else: 00237 self.y = yStr 00238 if isinstance(zStr, str) and notebook.isVariable(zStr): 00239 self.z = notebook.get(zStr) 00240 else: 00241 self.z = zStr 00242 # Parametrized substitute for PointStruct (with 6 parameters)
int smeshDC.PointStructStr.x = 0 [static] |
Definition at line 218 of file smeshDC.py.
Definition at line 225 of file smeshDC.py.
string smeshDC.PointStructStr.xStr = "" [static] |
Definition at line 221 of file smeshDC.py.
Definition at line 225 of file smeshDC.py.
int smeshDC.PointStructStr.y = 0 [static] |
Definition at line 219 of file smeshDC.py.
Definition at line 225 of file smeshDC.py.
Definition at line 225 of file smeshDC.py.
string smeshDC.PointStructStr.yStr = "" [static] |
Definition at line 222 of file smeshDC.py.
int smeshDC.PointStructStr.z = 0 [static] |
Definition at line 220 of file smeshDC.py.
Definition at line 225 of file smeshDC.py.
string smeshDC.PointStructStr.zStr = "" [static] |
Definition at line 223 of file smeshDC.py.
Definition at line 225 of file smeshDC.py.