CurvatureParams
Parameters for curvature analysis. Configures the curvature analysis algorithm.
Import
import ScriptingApi as api
# Create parameter instance
params = api.CurvatureParams()
Properties
mask_preview_quality
Mesh quality preset used to generate preview geometry for mask inputs. Use api.MaskPreviewQuality.Optimal
Type: MaskPreviewQuality
method
Curvature calculation method. Use api.CurvatureMethod.Gaussian. Gaussian: Calculates the Gaussian curvature, which represents the intrinsic curvature of the surface. It is defined as the product of the maximum and minimum principal curvatures at each point. Mean: Computes the mean curvature, the average of the principal curvatures. It indicates how curved the surface is in an overall sense. Maximum: Determines the maximum principal curvature, representing the strongest bending of the surface at each point. Minimum: Determines the minimum principal curvature, representing the weakest bending of the surface at each point.
Type: CurvatureMethod