Spur label: center at wide end (w/2), keep font at 14px

Place text centered at the wide bottom edge where there's always
enough room. No font shrinking — the wide end has plenty of space.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
igurielidze 2026-03-30 21:34:10 +04:00
parent 3adbfffb9d
commit ff952c5cb1
2 changed files with 8 additions and 12 deletions

View File

@ -556,13 +556,11 @@ function drawConveyanceLabel(ctx: CanvasRenderingContext2D, sym: PlacedSymbol) {
let cx: number, cy: number, availW: number, availH: number; let cx: number, cy: number, availW: number, availH: number;
if (isSpurType(sym.symbolId)) { if (isSpurType(sym.symbolId)) {
const w2 = sym.w2 ?? sym.w; const w2 = sym.w2 ?? sym.w;
// Center in the wider half of the trapezoid (bottom half where w > w2) // Place text at the wide end corner of the trapezoid
// At 75% height, width = w2 + 0.75*(w-w2) = w2*0.25 + w*0.75 cx = sym.x + sym.w / 2;
const widthAt75 = w2 * 0.25 + sym.w * 0.75; cy = sym.y + sym.h / 2;
cx = sym.x + widthAt75 / 2; availW = sym.w - pad * 2;
cy = sym.y + sym.h * 0.75; availH = sym.h - pad * 2;
availW = widthAt75 - pad * 2;
availH = sym.h * 0.45;
} else { } else {
cx = sym.x + sym.w / 2; cx = sym.x + sym.w / 2;
cy = sym.y + sym.h / 2; cy = sym.y + sym.h / 2;

View File

@ -43,11 +43,9 @@ function emitConveyanceLabelInner(lines: string[], sym: PlacedSymbol) {
// Mirror: label follows the mirrored shape naturally // Mirror: label follows the mirrored shape naturally
textRotDeg = (textRotRad * 180) / Math.PI; textRotDeg = (textRotRad * 180) / Math.PI;
} else if (isSpurType(sym.symbolId)) { } else if (isSpurType(sym.symbolId)) {
const w2 = sym.w2 ?? sym.w; labelCx = sym.x + sym.w / 2;
const widthAt75 = w2 * 0.25 + sym.w * 0.75; labelCy = sym.y + sym.h / 2;
labelCx = sym.x + widthAt75 / 2; availH = sym.h - 4;
labelCy = sym.y + sym.h * 0.75;
availH = sym.h * 0.45;
} else if (isInductionType(sym.symbolId)) { } else if (isInductionType(sym.symbolId)) {
const stripTopY = sym.y + sym.h * INDUCTION_CONFIG.stripTopFrac; const stripTopY = sym.y + sym.h * INDUCTION_CONFIG.stripTopFrac;
const stripBottomY = sym.y + sym.h * INDUCTION_CONFIG.stripBottomFrac; const stripBottomY = sym.y + sym.h * INDUCTION_CONFIG.stripBottomFrac;