Published
Edited
May 14, 2019
3 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
testPoint = (x, y, w, h, v) => {

// number of times to iterate
// through the test. a bounded
// point will end up with a value
// of 255, which causes the pixel
// representation to be fully black
let k = 0;
let maxIterations = 255;
// initilize the point x,y values
let p = {
x:0,
y:0
};

// scale the x and y coordinates from screen space
let c = {
x: v.x+x/v.s,
y: v.y+y/v.s
}
// keep iterating on the point until
// it hits the max iterations or the
// we determine it is unbounded
while ((k<maxIterations) && (p.x*p.x + p.y*p.y<4)) {
p = {
x: (p.x*p.x) - (p.y*p.y) + c.x,
y: 2 * p.x*p.y + c.y
};
++k;
}
return k;

}
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more