mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-16 13:14:51 -04:00
--User changes
-Add gnarly variation. --Bug fixes -Fix reading of post variations in .chaos files. -Make selection of points on color curves control apply only to the current selection as specified by the radio buttons below. --Code changes -Use std::complex<T> type in some variations' CPU code.
This commit is contained in:
@ -19,9 +19,11 @@ namespace apoconv
|
||||
{ "(float)", "" },
|
||||
{ "double", "T" },
|
||||
{ "float", "T" },
|
||||
{ "Complex", "std::complex<T>" },
|
||||
//{ "0.0", "0" },
|
||||
{ "0.5", "T(0.5)" },
|
||||
{ "1.0", "T(1.0)" },
|
||||
{ "2.0", "T(2.0)" },
|
||||
{ "0.1", "T(0.1)" },
|
||||
{ "0.01", "T(0.01)" },
|
||||
{ "0.001", "T(0.001)" },
|
||||
@ -56,6 +58,7 @@ namespace apoconv
|
||||
{ "sqrt(", "std::sqrt(" },
|
||||
{ "pow(", "std::pow(" },
|
||||
{ "fabs(", "std::abs(" },
|
||||
{ "log(", "std::log(" },
|
||||
|
||||
{ "sqr(", "Sqr(" },
|
||||
|
||||
|
Reference in New Issue
Block a user