Public
Edited
Nov 2, 2023
1 fork
2 stars
Insert cell
Insert cell
// Define an IFS
IFS = new IteratedFunctionSystem([
scale(0.5),
scale(0.5, [1, 0]),
scale(0.5, [0, 1])
])
Insert cell
// The easiest way to visualize is with IFS.render_stochastic
IFS.render_stochastic({ colors: true })
Insert cell
// IFS.render_deterministic is another option
IFS.render_deterministic({
max_depth: 4,
init: [
[0, 0],
[1, 0],
[0, 1]
],
fill_colors: true
})
Insert cell
// All built on top of the following imports
import {
IteratedFunctionSystem,
scale,
shift,
rotate,
reflect,
pi,
degree
} from "@mcmcclur/iteratedfunctionsystem-class"
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