Skip to content

Commit 45388ec

Browse files
committed
updated api and roadmap
1 parent ccd4349 commit 45388ec

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

docs/api.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,30 @@
1111
}
1212
```
1313

14+
## Space
15+
16+
### Refresh Space
17+
18+
Describes the virtual items in the space
19+
20+
```javascript
21+
{
22+
type: 'space';
23+
screen: {
24+
position: { x: number; y: number; z: number };
25+
};
26+
sky: {
27+
color: string;
28+
};
29+
viewer: {
30+
position: { x: number; y: number; z: number }
31+
};
32+
geometry: unknown[];
33+
}
34+
```
35+
36+
The geometry shall describe "drawn" geometries outlined by the presenter
37+
1438
## Screen
1539

1640
### Show Image

docs/roadmap.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@
2323

2424
# Post-MVP
2525

26+
## Define screen location
27+
28+
Allow the presenter to use controls to define where the screen is located
29+
30+
## Define geometry
31+
32+
Allow the presenter to define stage geometry; e.g. a podium
33+
2634
## Record the presentation
2735

2836
* Record viewer data

0 commit comments

Comments
 (0)