Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/uvedit/uvedit_intern.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 eduv | * \ingroup eduv | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| #ifdef __cplusplus | |||||
| extern "C" { | |||||
| #endif | |||||
| struct BMFace; | struct BMFace; | ||||
| struct BMLoop; | struct BMLoop; | ||||
| struct Object; | struct Object; | ||||
| struct Scene; | struct Scene; | ||||
| struct SpaceImage; | struct SpaceImage; | ||||
| struct wmOperatorType; | struct wmOperatorType; | ||||
| /* find nearest */ | /* find nearest */ | ||||
| ▲ Show 20 Lines • Show All 123 Lines • ▼ Show 20 Lines | |||||
| void UV_OT_pack_islands(struct wmOperatorType *ot); | void UV_OT_pack_islands(struct wmOperatorType *ot); | ||||
| void UV_OT_reset(struct wmOperatorType *ot); | void UV_OT_reset(struct wmOperatorType *ot); | ||||
| void UV_OT_sphere_project(struct wmOperatorType *ot); | void UV_OT_sphere_project(struct wmOperatorType *ot); | ||||
| void UV_OT_unwrap(struct wmOperatorType *ot); | void UV_OT_unwrap(struct wmOperatorType *ot); | ||||
| void UV_OT_rip(struct wmOperatorType *ot); | void UV_OT_rip(struct wmOperatorType *ot); | ||||
| void UV_OT_stitch(struct wmOperatorType *ot); | void UV_OT_stitch(struct wmOperatorType *ot); | ||||
| void UV_OT_smart_project(struct wmOperatorType *ot); | void UV_OT_smart_project(struct wmOperatorType *ot); | ||||
| /* uvedit_copy_paste.cc */ | |||||
| void UV_OT_copy(wmOperatorType *ot); | |||||
| void UV_OT_paste(wmOperatorType *ot); | |||||
| /* uvedit_path.c */ | /* uvedit_path.c */ | ||||
| void UV_OT_shortest_path_pick(struct wmOperatorType *ot); | void UV_OT_shortest_path_pick(struct wmOperatorType *ot); | ||||
| void UV_OT_shortest_path_select(struct wmOperatorType *ot); | void UV_OT_shortest_path_select(struct wmOperatorType *ot); | ||||
| /* uvedit_select.c */ | /* uvedit_select.c */ | ||||
| bool uvedit_select_is_any_selected(const struct Scene *scene, struct Object *obedit); | bool uvedit_select_is_any_selected(const struct Scene *scene, struct Object *obedit); | ||||
| Show All 20 Lines | |||||
| void UV_OT_select_lasso(struct wmOperatorType *ot); | void UV_OT_select_lasso(struct wmOperatorType *ot); | ||||
| void UV_OT_select_circle(struct wmOperatorType *ot); | void UV_OT_select_circle(struct wmOperatorType *ot); | ||||
| void UV_OT_select_more(struct wmOperatorType *ot); | void UV_OT_select_more(struct wmOperatorType *ot); | ||||
| void UV_OT_select_less(struct wmOperatorType *ot); | void UV_OT_select_less(struct wmOperatorType *ot); | ||||
| void UV_OT_select_overlap(struct wmOperatorType *ot); | void UV_OT_select_overlap(struct wmOperatorType *ot); | ||||
| void UV_OT_select_similar(struct wmOperatorType *ot); | void UV_OT_select_similar(struct wmOperatorType *ot); | ||||
| /* Used only when UV sync select is disabled. */ | /* Used only when UV sync select is disabled. */ | ||||
| void UV_OT_select_mode(struct wmOperatorType *ot); | void UV_OT_select_mode(struct wmOperatorType *ot); | ||||
| #ifdef __cplusplus | |||||
| } | |||||
| #endif | |||||