Source: worker.js

"use strict";

importScripts("../libraries/mathjs-10.6.0.min.js");
importScripts("mandelbrot.js");

/**
 * On message event that sends data to the worker.
 *
 * @param {event} e The on message even information.
 */
onmessage = (e) => {
    const row = e.data.row;
    const xNumPts = e.data.xNumPts;
    const yNumPts = e.data.yNumPts;
    const xLimits = e.data.xLimits;
    const yLimits = e.data.yLimits;
    const maxSteps = e.data.maxSteps;
    const threshold = e.data.threshold;

    const xx = linspace(xLimits[0], xLimits[1], xNumPts);
    const yy = linspace(yLimits[0], yLimits[1], yNumPts);

    let arr = [];
    let xy = [];

    for(let i = 0; i < xx.length; i++) {
        arr[i] = (mandelbrot(xx[i], yy[row], maxSteps, threshold));

        xy[i] = (
            {
                x:xx[i],
                y:yy[row]
            }
        );
    }

    const result = {
        row: row,
        array: arr,
    };

    postMessage(result);
};

Documentation generated by JSDoc 4.0.2 on Sat Jan 18 2025 19:08:52 GMT-0800 (Pacific Standard Time)