Code Cleanup: Just some fixes for whitespace/typos that I noticed while working on other stuff
This commit is contained in:
@@ -183,7 +183,7 @@ void gp_subdivide_stroke(bGPDstroke *gps, const int new_totpoints);
|
||||
/**
|
||||
* Add randomness to stroke
|
||||
* \param gps Stroke data
|
||||
* \param brsuh Brush data
|
||||
* \param brush Brush data
|
||||
*/
|
||||
void gp_randomize_stroke(bGPDstroke *gps, bGPDbrush *brush);
|
||||
|
||||
@@ -199,6 +199,7 @@ EnumPropertyItem *ED_gpencil_brushes_enum_itemf(bContext *C, PointerRNA *UNUSED(
|
||||
/* Enums of GP palettes */
|
||||
EnumPropertyItem *ED_gpencil_palettes_enum_itemf(bContext *C, PointerRNA *UNUSED(ptr), PropertyRNA *UNUSED(prop),
|
||||
bool *r_free);
|
||||
|
||||
/* ***************************************************** */
|
||||
/* Operator Defines */
|
||||
|
||||
@@ -303,10 +304,10 @@ void GPENCIL_OT_palette_add(struct wmOperatorType *ot);
|
||||
void GPENCIL_OT_palette_remove(struct wmOperatorType *ot);
|
||||
void GPENCIL_OT_palette_change(struct wmOperatorType *ot);
|
||||
void GPENCIL_OT_palette_lock_layer(struct wmOperatorType *ot);
|
||||
|
||||
void GPENCIL_OT_palettecolor_add(struct wmOperatorType *ot);
|
||||
void GPENCIL_OT_palettecolor_remove(struct wmOperatorType *ot);
|
||||
void GPENCIL_OT_palettecolor_isolate(struct wmOperatorType *ot);
|
||||
|
||||
void GPENCIL_OT_palettecolor_hide(struct wmOperatorType *ot);
|
||||
void GPENCIL_OT_palettecolor_reveal(struct wmOperatorType *ot);
|
||||
void GPENCIL_OT_palettecolor_lock_all(struct wmOperatorType *ot);
|
||||
@@ -321,7 +322,7 @@ void gpencil_undo_init(struct bGPdata *gpd);
|
||||
void gpencil_undo_push(struct bGPdata *gpd);
|
||||
void gpencil_undo_finish(void);
|
||||
|
||||
/******************************************************* */
|
||||
/* ****************************************************** */
|
||||
/* FILTERED ACTION DATA - TYPES ---> XXX DEPRECEATED OLD ANIM SYSTEM CODE! */
|
||||
|
||||
/* XXX - TODO: replace this with the modern bAnimListElem... */
|
||||
@@ -343,7 +344,7 @@ typedef struct bActListElem {
|
||||
short ownertype; /* type of owner */
|
||||
} bActListElem;
|
||||
|
||||
/******************************************************* */
|
||||
/* ****************************************************** */
|
||||
/* FILTER ACTION DATA - METHODS/TYPES */
|
||||
|
||||
/* filtering flags - under what circumstances should a channel be added */
|
||||
@@ -366,6 +367,9 @@ typedef enum ACTCONT_TYPES {
|
||||
ACTCONT_GPENCIL
|
||||
} ACTCONT_TYPES;
|
||||
|
||||
/* ****************************************************** */
|
||||
/* Stroke Iteration Utilities */
|
||||
|
||||
/**
|
||||
* Iterate over all editable strokes in the current context,
|
||||
* stopping on each usable layer + stroke pair (i.e. gpl and gps)
|
||||
@@ -401,4 +405,6 @@ typedef enum ACTCONT_TYPES {
|
||||
CTX_DATA_END; \
|
||||
} (void)0
|
||||
|
||||
/* ****************************************************** */
|
||||
|
||||
#endif /* __GPENCIL_INTERN_H__ */
|
||||
|
@@ -883,10 +883,12 @@ void gp_randomize_stroke(bGPDstroke *gps, bGPDbrush *brush)
|
||||
float normal[3];
|
||||
cross_v3_v3v3(normal, v1, v2);
|
||||
normalize_v3(normal);
|
||||
|
||||
/* get orthogonal vector to plane to rotate random effect */
|
||||
float ortho[3];
|
||||
cross_v3_v3v3(ortho, v1, normal);
|
||||
normalize_v3(ortho);
|
||||
|
||||
/* Read all points and apply shift vector (first and last point not modified) */
|
||||
for (int i = 1; i < gps->totpoints - 1; ++i) {
|
||||
bGPDspoint *pt = &gps->points[i];
|
||||
@@ -955,8 +957,8 @@ bool ED_gpencil_stroke_minmax(
|
||||
}
|
||||
return changed;
|
||||
}
|
||||
/* Dynamic Enums of GP Brushes */
|
||||
|
||||
/* Dynamic Enums of GP Brushes */
|
||||
EnumPropertyItem *ED_gpencil_brushes_enum_itemf(
|
||||
bContext *C, PointerRNA *UNUSED(ptr), PropertyRNA *UNUSED(prop),
|
||||
bool *r_free)
|
||||
@@ -990,8 +992,8 @@ EnumPropertyItem *ED_gpencil_brushes_enum_itemf(
|
||||
|
||||
return item;
|
||||
}
|
||||
/* Dynamic Enums of GP Palettes */
|
||||
|
||||
/* Dynamic Enums of GP Palettes */
|
||||
EnumPropertyItem *ED_gpencil_palettes_enum_itemf(
|
||||
bContext *C, PointerRNA *UNUSED(ptr), PropertyRNA *UNUSED(prop),
|
||||
bool *r_free)
|
||||
|
Reference in New Issue
Block a user