10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
|
namespace pxsim.visuals {
|
||
|
mkBoardView = (opts: BoardViewOptions): BoardView => {
|
||
|
return new visuals.EV3BoardSvg({
|
||
|
runtime: runtime,
|
||
|
theme: visuals.randomTheme(),
|
||
|
disableTilt: false,
|
||
|
wireframe: opts.wireframe,
|
||
|
});
|
||
|
}
|
||
|
}
|