-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.ts
More file actions
29 lines (27 loc) · 682 Bytes
/
index.ts
File metadata and controls
29 lines (27 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { Vec3, Space, vec3 } from './src/vector.js';
import * as Exp from './src/expression.js';
import * as Generator from './src/generator.js';
import * as Transform from './src/transform.js';
import * as LSystem from './src/lsystem.js';
import * as IFS from './src/ifs.js';
import * as Lineamp from './src/lineamp.js';
import * as Symmetry from './src/hyper.js';
import { Turtle2D, Turtle3D } from './src/turtle.js';
import { DLA2D, DLA2DLazy } from './src/DLA2D.js';
import { DLA3D } from './src/DLA3D.js';
const DLA = { DLA2D, DLA3D, DLA2DLazy };
export {
Vec3,
Space,
vec3,
Exp,
Symmetry,
Generator,
Transform,
Lineamp,
LSystem,
IFS,
DLA,
Turtle2D,
Turtle3D
};