mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-12 03:04:51 -04:00
--User changes
-Allow dragging in folders which will be recursively traversed for flame files. -Allow for adjusting scale via keyboard with the < and > keys. -Show the count of opened flames on the header of the library tree. --Bug fixes -Attempt to preserve xaos when pasting xforms. --Code changes -Default flam3 compatibility mode to true.
This commit is contained in:
@ -3261,7 +3261,7 @@ public:
|
||||
ss << "\t{\n"
|
||||
<< "\t\treal_t a = vIn.x + " << r << ";\n"
|
||||
<< "\t\treal_t b = vIn.y;\n"
|
||||
<< "\t\treal_t c = " << r << " * vIn.x + 1;\n"
|
||||
<< "\t\treal_t c = fma(" << r << ", vIn.x, (real_t)(1.0));\n"
|
||||
<< "\t\treal_t d = " << r << " * vIn.y;\n"
|
||||
<< "\t\treal_t x = fma(a, c, b * d);\n"
|
||||
<< "\t\treal_t y = fma(b, c, -(a * d));\n"
|
||||
|
Reference in New Issue
Block a user