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:
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_parametrizer.h')
-rw-r--r--source/blender/editors/uvedit/uvedit_parametrizer.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.h b/source/blender/editors/uvedit/uvedit_parametrizer.h
index 6724b568f57..2b80241e6e3 100644
--- a/source/blender/editors/uvedit/uvedit_parametrizer.h
+++ b/source/blender/editors/uvedit/uvedit_parametrizer.h
@@ -25,13 +25,13 @@
extern "C" {
#endif
-#include "BLI_sys_types.h" // for intptr_t support
+#include "BLI_sys_types.h" // for intptr_t support
-typedef void ParamHandle; /* handle to a set of charts */
-typedef intptr_t ParamKey; /* (hash) key for identifying verts and faces */
+typedef void ParamHandle; /* handle to a set of charts */
+typedef intptr_t ParamKey; /* (hash) key for identifying verts and faces */
typedef enum ParamBool {
- PARAM_TRUE = 1,
- PARAM_FALSE = 0,
+ PARAM_TRUE = 1,
+ PARAM_FALSE = 0,
} ParamBool;
/* Chart construction:
@@ -58,8 +58,7 @@ void param_face_add(ParamHandle *handle,
ParamBool *pin,
ParamBool *select);
-void param_edge_set_seam(ParamHandle *handle,
- ParamKey *vkeys);
+void param_edge_set_seam(ParamHandle *handle, ParamKey *vkeys);
void param_construct_end(ParamHandle *handle, ParamBool fill, ParamBool impl);
void param_delete(ParamHandle *chart);
@@ -107,7 +106,6 @@ void param_scale(ParamHandle *handle, float x, float y);
void param_flush(ParamHandle *handle);
void param_flush_restore(ParamHandle *handle);
-
#ifdef __cplusplus
}
#endif