0dc2548d0b
* Optimize simulator for light mode. * Add user-select none.
26 lines
848 B
TypeScript
26 lines
848 B
TypeScript
/// <reference path="./moduleView.ts" />
|
|
|
|
namespace pxsim.visuals {
|
|
|
|
export class MediumMotorView extends MotorView implements LayoutElement {
|
|
|
|
constructor(port: number) {
|
|
super(MEDIUM_MOTOR_SVG, "medium-motor", NodeType.MediumMotor, port, "medmotor_Hole");
|
|
}
|
|
|
|
protected optimizeForLightMode() {
|
|
(this.content.getElementById(this.normalizeId('medmotor_box_wgradient')) as SVGElement).style.fill = '#a8aaa8';
|
|
}
|
|
|
|
public getPaddingRatio() {
|
|
return 1 / 5;
|
|
}
|
|
|
|
protected renderMotorAngle(holeEl: Element, angle: number) {
|
|
const width = 44.45;
|
|
const height = 44.45;
|
|
const transform = `translate(2 1.84) rotate(${angle} ${width / 2} ${height / 2})`;
|
|
holeEl.setAttribute("transform", transform);
|
|
}
|
|
}
|
|
} |