--User changes

-Fix xform selection logic to prevent selecting hidden pre and post xforms.
 -Add hex_modulus.

--Bug fixes
 -starblur was wrong.

--Code changes
 -Optimize Truchet_hex_crop, Truchet_hex_fill.
 -Cleanup Truchet_inv.
 -Add new file Variations08.h, and move Gnarly and inkdrop there.
This commit is contained in:
Person
2019-06-18 21:29:58 -07:00
parent 09dd6efb23
commit d34e2ffa4a
49 changed files with 1104 additions and 3837 deletions

View File

@ -147,7 +147,8 @@ private:
m4T m_Projection;
Affine2D<T> m_DragSrcTransform;
vector<Affine2D<T>> m_DragSrcTransforms;
std::map<size_t, Affine2D<T>> m_DragSrcPreTransforms;
std::map<size_t, Affine2D<T>> m_DragSrcPostTransforms;
Xform<T>* m_HoverXform;
Xform<T>* m_SelectedXform;