VolumeDisplay(bpy_struct)

base class — bpy_struct

class bpy.types.VolumeDisplay(bpy_struct)

Volume object display settings for 3d viewport

density

Thickness of volume drawing in the viewport

Type

float in [1e-05, inf], default 0.0

wireframe_detail

Amount of detail for wireframe display

  • COARSE Coarse, Display one box or point for each intermediate tree node.

  • FINE Fine, Display box for each leaf node containing 8x8 voxels.

Type

enum in [‘COARSE’, ‘FINE’], default ‘COARSE’

wireframe_type

Type of wireframe display

  • NONE None, Don’t display volume in wireframe mode.

  • BOUNDS Bounds, Display single bounding box for the entire grid.

  • BOXES Boxes, Display bounding boxes for nodes in the volume tree.

  • POINTS Points, 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.Struct subclass

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