Skip to content

Commit

Permalink
temporarily remove voronoi effect
Browse files Browse the repository at this point in the history
  • Loading branch information
bobnik committed Nov 3, 2024
1 parent 0007a4e commit 029d717
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/features/effects/effectFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ProgramCode from "./ProgramCode"
import Track from "./Track"
import Transformer from "./Transformer"
import Warp from "./Warp"
import Voronoi from "./Voronoi"
// import Voronoi from "./Voronoi"

export const effectFactory = {
loop: Loop,
Expand All @@ -19,7 +19,8 @@ export const effectFactory = {
noise: Noise,
track: Track,
warp: Warp,
voronoi: Voronoi,
// too slow; disabling until we implement worker-based vertex computation
// voronoi: Voronoi
}

export const getEffect = (type, ...args) => {
Expand Down
2 changes: 1 addition & 1 deletion src/features/shapes/shapeFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ export const shapeFactory = {
lsystem: LSystem,
fractalSpirograph: FractalSpirograph,
tessellationTwist: TessellationTwist,
voronoi: Voronoi,
point: Point,
circlePacker: CirclePacker,
wiper: Wiper,
spaceFiller: SpaceFiller,
noise_wave: NoiseWave,
voronoi: Voronoi,
fileImport: LayerImport,
imageImport: ImageImport,
}
Expand Down

0 comments on commit 029d717

Please sign in to comment.