Files
blockly/core/renderers/measurables/square_corner.ts
Maribeth Bottorff 88ff901a72 chore: use prettier instead of clang-format (#7014)
* chore: add and configure prettier

* chore: remove clang-format

* chore: remove clang-format config

* chore: lint additional ts files

* chore: fix lint errors in blocks

* chore: add prettier-ignore where needed

* chore: ignore js blocks when formatting

* chore: fix playground html syntax

* chore: fix yaml spacing from merge

* chore: convert text blocks to use arrow functions

* chore: format everything with prettier

* chore: fix lint unused imports in blocks
2023-05-10 16:01:39 -07:00

34 lines
956 B
TypeScript

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as goog from '../../../closure/goog/goog.js';
goog.declareModuleId('Blockly.blockRendering.SquareCorner');
import type {ConstantProvider} from '../common/constants.js';
import {Measurable} from './base.js';
import {Types} from './types.js';
/**
* An object containing information about the space a square corner takes up
* during rendering.
*/
export class SquareCorner extends Measurable {
/**
* @param constants The rendering constants provider.
* @param opt_position The position of this corner.
*/
constructor(constants: ConstantProvider, opt_position?: string) {
super(constants);
this.type =
(!opt_position || opt_position === 'left'
? Types.LEFT_SQUARE_CORNER
: Types.RIGHT_SQUARE_CORNER) | Types.CORNER;
this.height = this.constants_.NO_PADDING;
this.width = this.constants_.NO_PADDING;
}
}