Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_view3d/view3d_navigate.h
| /* SPDX-License-Identifier: GPL-2.0-or-later | /* SPDX-License-Identifier: GPL-2.0-or-later | ||||
| * Copyright 2008 Blender Foundation. All rights reserved. */ | * Copyright 2008 Blender Foundation. All rights reserved. */ | ||||
| /** \file | /** \file | ||||
| * \ingroup spview3d | * \ingroup spview3d | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| #ifdef __cplusplus | |||||
| extern "C" { | |||||
| #endif | |||||
| /** | /** | ||||
| * Size of the sphere being dragged for trackball rotation within the view bounds. | * Size of the sphere being dragged for trackball rotation within the view bounds. | ||||
| * also affects speed (smaller is faster). | * also affects speed (smaller is faster). | ||||
| */ | */ | ||||
| #define V3D_OP_TRACKBALLSIZE (1.1f) | #define V3D_OP_TRACKBALLSIZE (1.1f) | ||||
| struct ARegion; | struct ARegion; | ||||
| struct Depsgraph; | struct Depsgraph; | ||||
| ▲ Show 20 Lines • Show All 275 Lines • ▼ Show 20 Lines | |||||
| /* view3d_navigate_zoom.c */ | /* view3d_navigate_zoom.c */ | ||||
| void viewzoom_modal_keymap(struct wmKeyConfig *keyconf); | void viewzoom_modal_keymap(struct wmKeyConfig *keyconf); | ||||
| void VIEW3D_OT_zoom(struct wmOperatorType *ot); | void VIEW3D_OT_zoom(struct wmOperatorType *ot); | ||||
| /* view3d_navigate_zoom_border.c */ | /* view3d_navigate_zoom_border.c */ | ||||
| void VIEW3D_OT_zoom_border(struct wmOperatorType *ot); | void VIEW3D_OT_zoom_border(struct wmOperatorType *ot); | ||||
| #ifdef __cplusplus | |||||
| } | |||||
| #endif | |||||