Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/sculpt_intern.h
| Show First 20 Lines • Show All 729 Lines • ▼ Show 20 Lines | |||||
| /*************** Brush testing declarations ****************/ | /*************** Brush testing declarations ****************/ | ||||
| typedef struct SculptBrushTest { | typedef struct SculptBrushTest { | ||||
| float radius_squared; | float radius_squared; | ||||
| float radius; | float radius; | ||||
| float location[3]; | float location[3]; | ||||
| float dist; | float dist; | ||||
| int mirror_symmetry_pass; | int mirror_symmetry_pass; | ||||
| int radial_symmetry_pass; | |||||
| float symm_rot_mat_inv[4][4]; | |||||
| /* For circle (not sphere) projection. */ | /* For circle (not sphere) projection. */ | ||||
| float plane_view[4]; | float plane_view[4]; | ||||
| /* Some tool code uses a plane for it's calculateions. */ | /* Some tool code uses a plane for it's calculateions. */ | ||||
| float plane_tool[4]; | float plane_tool[4]; | ||||
| /* View3d clipping - only set rv3d for clipping */ | /* View3d clipping - only set rv3d for clipping */ | ||||
| struct RegionView3D *clip_rv3d; | struct RegionView3D *clip_rv3d; | ||||
| ▲ Show 20 Lines • Show All 361 Lines • Show Last 20 Lines | |||||