mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-06-30 21:36:33 -04:00
--Code changes
-Change some menu capitalization to make the text easier on the eyes.
This commit is contained in:
@ -182,6 +182,7 @@ public:
|
||||
/// <param name="singleBufferIndex">The converted single raster buffer index</param>
|
||||
inline void Convert(Point<T>& point, size_t& singleBufferIndex)
|
||||
{
|
||||
//singleBufferIndex = static_cast<size_t>(Round(m_PixPerImageUnitW * point.m_X - m_RasLlX) + (m_RasWidth * Round(m_PixPerImageUnitH * point.m_Y - m_RasLlY)));
|
||||
singleBufferIndex = static_cast<size_t>(m_PixPerImageUnitW * point.m_X - m_RasLlX) + (m_RasWidth * static_cast<size_t>(m_PixPerImageUnitH * point.m_Y - m_RasLlY));
|
||||
}
|
||||
|
||||
|
@ -176,9 +176,9 @@ XmlToEmber<T>::XmlToEmber()
|
||||
{ "angle", "pixel_flow_angle" },
|
||||
{ "len", "pixel_flow_len" },
|
||||
{ "width", "pixel_flow_width" },
|
||||
{ "radial_gaussian_angle", "radial_blur_angle" },
|
||||
//{ "seed", "pixel_flow_seed" },//randCubes above already uses "seed", but it's just for randomness, so it shouldn't matter.
|
||||
{ "enable_dc", "pixel_flow_enable_dc" },
|
||||
{ "radial_gaussian_angle", "radial_blur_angle" },
|
||||
{ "pr_a", "projective_A" },
|
||||
{ "pr_b", "projective_B" },
|
||||
{ "pr_c", "projective_C" },
|
||||
|
Reference in New Issue
Block a user