Current:
export interface IRenderDimensions {
scaledCharWidth: number;
scaledCharHeight: number;
scaledCellWidth: number;
scaledCellHeight: number;
scaledCharLeft: number;
scaledCharTop: number;
scaledCanvasWidth: number;
scaledCanvasHeight: number;
canvasWidth: number;
canvasHeight: number;
actualCellWidth: number;
actualCellHeight: number;
}
We should standardize on scaled* -> device* and canvas*/actual* -> css*, including updating all the comments and related calculations.
Probably not a good one for an external PR because of the amount of changes this will require.
Current:
We should standardize on
scaled* -> device*andcanvas*/actual* -> css*, including updating all the comments and related calculations.Probably not a good one for an external PR because of the amount of changes this will require.