mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-17 13:45:00 -04:00
--User changes
-Change how the PositiveYUp option is actually handled to make things more compatible with Apophysis. depending on the value of that option: --Moving an affine up or down will mean a positive or negative value. --Locally, the display of the affine will be flipped. --Bug fixes -Fix waffle.
This commit is contained in:
@ -1792,8 +1792,8 @@ public:
|
||||
|
||||
virtual void Precalc() override
|
||||
{
|
||||
m_SinR = std::sin(m_Rotation);
|
||||
m_CosR = std::cos(m_Rotation);
|
||||
m_SinR = m_Weight * std::sin(m_Rotation);
|
||||
m_CosR = m_Weight * std::cos(m_Rotation);
|
||||
}
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user