ClothSolverResult(bpy_struct)
base class — bpy_struct
- class bpy.types.ClothSolverResult(bpy_struct)
Result of cloth solver iteration
- avg_error
Average error during substeps (in [-inf, inf], default 0.0, readonly)
- Type:
float
- avg_iterations
Average iterations during substeps (in [-inf, inf], default 0.0, readonly)
- Type:
float
- max_error
Maximum error during substeps (in [-inf, inf], default 0.0, readonly)
- Type:
float
- max_iterations
Maximum iterations during substeps (in [-inf, inf], default 0, readonly)
- Type:
int
- min_error
Minimum error during substeps (in [-inf, inf], default 0.0, readonly)
- Type:
float
- min_iterations
Minimum iterations during substeps (in [-inf, inf], default 0, readonly)
- Type:
int
- status
Status of the solver iteration (default set(), readonly)
SUCCESSSuccess – Computation was successful.NUMERICAL_ISSUENumerical Issue – The provided data did not satisfy the prerequisites.NO_CONVERGENCENo Convergence – Iterative procedure did not converge.INVALID_INPUTInvalid Input – The inputs are invalid, or the algorithm has been improperly called.
- Type:
set[Literal[‘SUCCESS’, ‘NUMERICAL_ISSUE’, ‘NO_CONVERGENCE’, ‘INVALID_INPUT’]]
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type