mirror of
https://github.com/google/blockly.git
synced 2026-01-07 09:00:11 +01:00
* 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
34 lines
956 B
TypeScript
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;
|
|
}
|
|
}
|