mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-02 22:34:52 -04:00
--User changes
-Better handling of crossed min/max DE filter values on the GUI. -Changes to spatial and density filter values will no longer restart the entire render. -Support reading cam_zoom from xml as zoom since JWildfire uses cam_zoom. -Change drag n drop behavior: the default is now to append, hold Ctrl to overwrite. -Set max value of zoom to 25 because it will crash with values around 28 or 29 due to numeric overflow when scaling quality. -Update links in About Dialog. -Rename some controls in Options Dialog. -Move the color curves control to the Palette tab. --Bug fixes -Remove extra space in info tree text when dealing with a linked xform. -Update summary xform name field whenever xform name changes. -Get rid of selection border on summary tab xform tree cells. -Only add variations from Xml that have a non-zero weight. There seemed to be spurious flattens coming from Apo with a weight of 0. --Code changes -Gutters are now a fixed size of 8 * supersample. -Use stl data() member to get pointer to first element instead of &vec[0]. -Eliminate extra calls in renderer to ComputeBounds(), CreateSpatialFilter() and CreateTemporalFilter() to only be done at the start of a render. -Another attempt at vectorizing LogScaleDensityFilter(). Vectorizes, but not sure if it helps. -Some other loop optimizations in Renderer. -No longer check temporal samples in response to some control changes, they are always 1 in the interactive renderer.
This commit is contained in:
@ -3938,14 +3938,13 @@ public:
|
||||
T xi, yi, zi;
|
||||
int iMode = int(m_Mode);
|
||||
|
||||
//Extremely strange usage, where a post variation wants the original affine transformed points.
|
||||
if (m_Static > 1)
|
||||
{
|
||||
xi = helper.In.x;
|
||||
yi = helper.In.y;
|
||||
zi = helper.In.z;
|
||||
}
|
||||
else
|
||||
else//Extremely strange usage, where a post variation wants the original affine transformed points.
|
||||
{
|
||||
xi = helper.m_TransX;
|
||||
yi = helper.m_TransY;
|
||||
@ -4021,7 +4020,7 @@ public:
|
||||
if (m_Roundstr != 0)
|
||||
{
|
||||
T wwidth = ((m_Roundwidth != 1) ? std::exp(std::log(xang * 2) * m_Roundwidth) : (xang * 2)) * m_RoundCoeff;
|
||||
coeff = abs((1 - wwidth) * coeff + wwidth);
|
||||
coeff = std::abs((1 - wwidth) * coeff + wwidth);
|
||||
}
|
||||
|
||||
if (m_Distortion != 1)
|
||||
@ -4369,6 +4368,7 @@ public:
|
||||
|
||||
m_X = m_Y = m_Z = m_C = 0;
|
||||
}
|
||||
|
||||
protected:
|
||||
void Init()
|
||||
{
|
||||
|
Reference in New Issue
Block a user