简体   繁体   English

Mandelbrot 集 function 崩溃

[英]Mandelbrot Set function crashes

i made a sim for the Mandelbrot Set function, zn + 1 = power(zn) + c and it work but when i get to the point were the function is unstable it crashes, now i have a boolen that when true makes a wire that connects all the circles, when its false its fine(dosent crash) but when its on it does, the code works like this:我为 Mandelbrot Set function, zn + 1 = power(zn) + c 制作了一个 sim 并且它可以工作但是当我说到这一点时 function 不稳定它崩溃了,现在我有一个布尔值,当 true 制作电线时连接所有的圈子,当它为假时它很好(dosent crash)但是当它在它上面时,代码是这样工作的:

start: building a list of circles and making there pos by the equation, and then crating a wire between the circle and the last circle, update: then when you move the circle it uses the already made list of gameobj to update there pos.开始:构建一个圆列表并通过等式使 pos 出现,然后在圆和最后一个圆之间制作一条线,更新:然后当您移动圆时,它使用已经制作的 gameobj 列表来更新 pos。

you can try it here: build github: git你可以在这里试试: build github: git

but it crashes:(, heres the code:但它崩溃了:(,这是代码:

 private void updateCircles()
{
    StartUpdateCircles();
}


private void StartCircles()
{
    float x = BlackCircle.anchoredPosition.x;
    float y = BlackCircle.anchoredPosition.y;
    AllCircles.Add(BlackCircle.gameObject);

    for (int i = 1; i < itarations; i++)
    {
        Vector2 RedCircleVec2 = RedCircle.anchoredPosition;
        Vector2 LastCircleVec2 = AllCircles[i - 1].GetComponent<RectTransform>().anchoredPosition;
        GameObject Circle = Instantiate(BlackCircle.gameObject, Vector3.zero, Quaternion.identity);

        Circle.transform.SetParent(CanvasPerent);
        AllCircles.Add(Circle);

        x = Mathf.Pow(x, 2);
        x -= Mathf.Pow(LastCircleVec2.y, 2);
        x += RedCircleVec2.x;

        y = (2 * LastCircleVec2.x
            * LastCircleVec2.y) + RedCircleVec2.y;

        Circle.GetComponent<RectTransform>().anchoredPosition = new Vector2(x, y);

        if (HasWire)
        {
             GameObject wire = GenrateWireStart(LastCircleVec2
           , Circle.GetComponent<RectTransform>().anchoredPosition);

            AllWires.Add(wire);
        }

    }

}

private void StartUpdateCircles()
{
    float x = BlackCircle.anchoredPosition.x;
    float y = BlackCircle.anchoredPosition.y;
    for (int i = 1; i < itarations; i++)
    {
        Vector2 RedCircleVec2 = RedCircle.anchoredPosition;
        Vector2 LastCircleVec2 = AllCircles[i - 1].GetComponent<RectTransform>().anchoredPosition;
        RectTransform ICircle = AllCircles[i].GetComponent<RectTransform>();


        x = Mathf.Pow(x, 2);
        x -= Mathf.Pow(LastCircleVec2.y, 2);
        x += RedCircleVec2.x;

        y = (2 * LastCircleVec2.x
            * LastCircleVec2.y) + RedCircleVec2.y;

        ICircle.anchoredPosition = new Vector2(x, y);
        if (HasWire)
        {
            
              GenrateWireUpdate(LastCircleVec2
                ,ICircle.anchoredPosition, i);
            
            
        }
    }
}

public GameObject GenrateWireStart(Vector2 NodeA, Vector2 NodeB)
{
    GameObject Connector = new GameObject("connector", typeof(Image));
    Connector.transform.SetParent(CanvasPerent);
    RectTransform ConnectorRT = Connector.GetComponent<RectTransform>();

    ConnectorRT.anchorMin = new Vector2(0, 0);
    ConnectorRT.anchorMax = new Vector2(0, 0);

    Connector.GetComponent<Image>().color = new Color(0f, 0f, 0f, 0.25f);

    Vector2 dir = (NodeB - NodeA).normalized;
    float distance = Vector2.Distance(NodeA, NodeB);

    ConnectorRT.sizeDelta = new Vector2(distance, 0.005f);

    ConnectorRT.position = NodeA + dir * distance * .5f;

    ConnectorRT.localEulerAngles = new Vector3(0, 0, UtilsClass.GetAngleFromVectorFloat(dir));

    return Connector;
}

public void GenrateWireUpdate(Vector2 NodeA, Vector2 NodeB, int i)
{
    RectTransform ConnectorRT = AllWires[i - 1].GetComponent<RectTransform>();
    Vector2 dir = (NodeB - NodeA).normalized;
    float distance = Vector2.Distance(NodeA, NodeB);
    ConnectorRT.sizeDelta = new Vector2(distance, 0.005f);
    ConnectorRT.position = NodeA + dir * distance * .5f;
    ConnectorRT.localEulerAngles = new Vector3(0, 0, UtilsClass.GetAngleFromVectorFloat(dir));
}

pls help, thank you.请帮忙,谢谢。

该项目

I looked briefly into your code and you seem to get some invalid positions like infinite / undefined from your calculations or just some positions too far away for Unity.我简要地查看了您的代码,您似乎从计算中得到了一些无效的位置,例如 infinite / undefined,或者只是一些位置对于 Unity 来说太远了。

I could remove these by simply limiting positions to eg我可以通过简单地将位置限制为例如来删除这些

 x = Mathf.Clamp(Mathf.Pow(x, 2), -Screen.width, Screen.width);
 x = Mathf.Clamp(x - Mathf.Pow(LastCircleVec2.y, 2), -Screen.width, Screen.width);
 x = Mathf.Clamp(x + RedCircleVec2.x, -Screen.width, Screen.width);

 y = Mathf.Clamp((2 * LastCircleVec2.x * LastCircleVec2.y) + RedCircleVec2.y, -Screen.width, Screen.width);

which simply limits all positions to some off-screen max positions这只是将所有位置限制在一些屏幕外的最大位置

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM