码迷,mamicode.com
首页 > 其他好文 > 详细

混沌数学之ASin模型

时间:2014-09-15 15:54:19      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   2014   div   art   

相关软件:混沌数学之离散点集图形DEMO

相关代码:

class ASinEquation : public DiscreteEquation
{
public:
    ASinEquation()
    {
        m_StartX = 0.0f;
        m_StartY = PI*0.5f;

        m_ParamA = 0.5f;
        m_ParamB = 1.0f;
    }

    void IterateValue(float x, float y, float& outX, float& outY) const
    {
        outX = x+0.00025f;
        outY = m_ParamA*sinf(m_ParamB*y);
    }

    bool IsValidParamA() const {return true;}
    bool IsValidParamB() const {return true;}
};

相关截图:

bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

 

混沌数学之ASin模型

标签:style   blog   http   color   io   ar   2014   div   art   

原文地址:http://www.cnblogs.com/WhyEngine/p/3972852.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!