14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
/// <reference path="./moduleView.ts" />
|
|
|
|
namespace pxsim.visuals {
|
|
export class GyroSensorView extends ModuleView implements LayoutElement {
|
|
|
|
constructor(port: number) {
|
|
super(GYRO_SVG, "gyro", NodeType.GyroSensor, port);
|
|
}
|
|
|
|
public getPaddingRatio() {
|
|
return 0.3;
|
|
}
|
|
}
|
|
} |