Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGermano Cavalcante <germano.costa@ig.com.br>2021-10-19 00:38:31 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2021-10-19 00:38:42 +0300
commitd7b231baa87e4d89c519059bad96c07163453724 (patch)
tree97c6a79c66a1162323ae5ced3b74134c3b96d7f9 /source/blender/editors/include/ED_view3d.h
parent3a898db3638d2ab13b4aa85e0dcce1fe35ae8695 (diff)
Cleanup: remove unused member and rearrange function
Diffstat (limited to 'source/blender/editors/include/ED_view3d.h')
-rw-r--r--source/blender/editors/include/ED_view3d.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/include/ED_view3d.h b/source/blender/editors/include/ED_view3d.h
index 593d1be9444..4439ecfdd97 100644
--- a/source/blender/editors/include/ED_view3d.h
+++ b/source/blender/editors/include/ED_view3d.h
@@ -267,7 +267,6 @@ typedef struct V3DSnapCursorData {
short snap_elem;
float loc[3];
float nor[3];
- float face_nor[3];
float obmat[4][4];
int elem_index[3];
float plane_omat[3][3];
@@ -282,11 +281,11 @@ void ED_view3d_cursor_snap_activate_point(void);
void ED_view3d_cursor_snap_activate_plane(void);
void ED_view3d_cursor_snap_deactivate_point(void);
void ED_view3d_cursor_snap_deactivate_plane(void);
+void ED_view3d_cursor_snap_prevpoint_set(const float prev_point[3]);
void ED_view3d_cursor_snap_update(const struct bContext *C,
const int x,
const int y,
V3DSnapCursorData *snap_data);
-void ED_view3d_cursor_snap_prevpoint_set(const float prev_point[3]);
struct SnapObjectContext *ED_view3d_cursor_snap_context_ensure(struct Scene *scene);
void ED_view3d_cursor_snap_draw_util(struct RegionView3D *rv3d,
const float loc_prev[3],