pxt-ev3/sim/visuals/nodes/gyroSensorView.ts

14 lines
342 B
TypeScript
Raw Normal View History

2017-12-18 22:04:17 +01:00
/// <reference path="./staticView.ts" />
namespace pxsim.visuals {
export class GyroSensorView extends StaticModuleView implements LayoutElement {
constructor(port: number) {
super(GYRO_SVG, "gyro", NodeType.GyroSensor, port);
}
public getPaddingRatio() {
return 1 / 4;
}
}
}