VolumeDisplay(bpy_struct)¶
base class — bpy_struct
- class bpy.types.VolumeDisplay(bpy_struct)¶
Volume object display settings for 3D viewport
- density¶
Thickness of volume display in the viewport
- Type
float in [1e-05, inf], default 0.0
- interpolation_method¶
Interpolation method to use for volumes in solid mode
LINEARLinear, Good smoothness and speed.CUBICCubic, Smoothed high quality interpolation, but slower.CLOSESTClosest, No interpolation.
- Type
enum in [‘LINEAR’, ‘CUBIC’, ‘CLOSEST’], default ‘LINEAR’
- slice_axis¶
AUTOAuto, Adjust slice direction according to the view direction.XX, Slice along the X axis.YY, Slice along the Y axis.ZZ, Slice along the Z axis.
- Type
enum in [‘AUTO’, ‘X’, ‘Y’, ‘Z’], default ‘AUTO’
- slice_depth¶
Position of the slice
- Type
float in [0, 1], default 0.0
- use_slice¶
Perform a single slice of the domain object
- Type
boolean, default False
- wireframe_detail¶
Amount of detail for wireframe display
COARSECoarse, Display one box or point for each intermediate tree node.FINEFine, Display box for each leaf node containing 8x8 voxels.
- Type
enum in [‘COARSE’, ‘FINE’], default ‘COARSE’
- wireframe_type¶
Type of wireframe display
NONENone, Don’t display volume in wireframe mode.BOUNDSBounds, Display single bounding box for the entire grid.BOXESBoxes, Display bounding boxes for nodes in the volume tree.POINTSPoints, Display points for nodes in the volume tree.
- Type
enum in [‘NONE’, ‘BOUNDS’, ‘BOXES’, ‘POINTS’], default ‘NONE’
- classmethod bl_rna_get_subclass(id, default=None)¶
- Parameters
id (string) – The RNA type identifier.
- Returns
The RNA type or default when not found.
- Return type
bpy.types.Structsubclass
- classmethod bl_rna_get_subclass_py(id, default=None)¶
- Parameters
id (string) – The RNA type identifier.
- Returns
The class or default when not found.
- Return type
type
Inherited Properties
Inherited Functions
References