Changeset View
Changeset View
Standalone View
Standalone View
doc/python_api/rst_from_bmesh_opdefines.py
| Context not available. | |||||
| elif tp_sub == BMO_OP_SLOT_SUBTYPE_PTR_MESH: | elif tp_sub == BMO_OP_SLOT_SUBTYPE_PTR_MESH: | ||||
| tp_str = ":class:`bpy.types.Mesh`" | tp_str = ":class:`bpy.types.Mesh`" | ||||
| else: | else: | ||||
| print("Cant find", vars_dict_reverse[tp_sub]) | print("Can't find", vars_dict_reverse[tp_sub]) | ||||
| assert(0) | assert(0) | ||||
| elif tp == BMO_OP_SLOT_ELEMENT_BUF: | elif tp == BMO_OP_SLOT_ELEMENT_BUF: | ||||
| Context not available. | |||||
| elif tp_sub == BMO_OP_SLOT_SUBTYPE_MAP_INTERNAL: | elif tp_sub == BMO_OP_SLOT_SUBTYPE_MAP_INTERNAL: | ||||
| tp_str += "unknown internal data, not compatible with python" | tp_str += "unknown internal data, not compatible with python" | ||||
| else: | else: | ||||
| print("Cant find", vars_dict_reverse[tp_sub]) | print("Can't find", vars_dict_reverse[tp_sub]) | ||||
| assert(0) | assert(0) | ||||
| else: | else: | ||||
| print("Cant find", vars_dict_reverse[tp]) | print("Can't find", vars_dict_reverse[tp]) | ||||
| assert(0) | assert(0) | ||||
| args_wash.append((name, tp_str, comment)) | args_wash.append((name, tp_str, comment)) | ||||
| Context not available. | |||||