remove unused T_LOCAL_MATRIX

- was introduced in rB844a17a3d9d2 but apparently never used
- spotted while looking into T57767

Reviewers: brecht

Differential Revision: https://developer.blender.org/D4805
This commit is contained in:
Philipp Oeser 2019-05-06 11:15:30 +02:00
parent e9160eae95
commit 578ead77f9
1 changed files with 3 additions and 5 deletions

View File

@ -525,7 +525,7 @@ typedef struct TransDataContainer {
struct Object *obedit;
/**
* Use when #T_LOCAL_MATRIX is set.
* Store matrix, this avoids having to have duplicate check all over
* Typically: 'obedit->obmat' or 'poseobj->obmat', but may be used elsewhere too.
*/
bool use_local_mat;
@ -739,10 +739,8 @@ enum {
T_CURSOR = 1 << 5,
/** Transform points, having no rotation/scale. */
T_POINTS = 1 << 6,
/**
* Apply matrix #TransDataContainer.matrix, this avoids having to have duplicate check all over
* that happen to apply to specific modes (edit & pose for eg). */
T_LOCAL_MATRIX = 1 << 7,
/* empty slot - (1 << 7) */
/** restrictions flags */
T_NO_CONSTRAINT = 1 << 8,