pxt-ev3/sim/visuals/boardview.ts

10 lines
288 B
TypeScript
Raw Normal View History

2017-07-11 10:15:17 +02:00
namespace pxsim.visuals {
mkBoardView = (opts: BoardViewOptions): BoardView => {
return new visuals.EV3BoardSvg({
runtime: runtime,
theme: visuals.randomTheme(),
disableTilt: false,
wireframe: opts.wireframe,
});
}
}