Files
blockly/core/renderers/measurables/round_corner.js
Rachel Fenichel 97c19be612 refactor: convert renderer measurables to es6 classes (#5899)
* chore: use casts to narrow types in renderers

* chore: add @struct and type information on common measurables

* refactor: update some renderer measurables to es6 classes

* refactor: convert many measurables to es6 classes

* chore: format

* chore: rebuild
2022-02-01 15:43:11 -08:00

53 lines
1.5 KiB
JavaScript

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Objects representing a round corner in a row of a rendered
* block.
*/
/**
* Objects representing a round corner in a row of a rendered
* block.
* @class
*/
goog.module('Blockly.blockRendering.RoundCorner');
/* eslint-disable-next-line no-unused-vars */
const {ConstantProvider} = goog.requireType('Blockly.blockRendering.ConstantProvider');
const {Measurable} = goog.require('Blockly.blockRendering.Measurable');
const {Types} = goog.require('Blockly.blockRendering.Types');
/**
* An object containing information about the space a rounded corner takes up
* during rendering.
* @extends {Measurable}
* @struct
*/
class RoundCorner extends Measurable {
/**
* @param {!ConstantProvider} constants The rendering
* constants provider.
* @param {string=} opt_position The position of this corner.
* @package
* @alias Blockly.blockRendering.RoundCorner
*/
constructor(constants, opt_position) {
super(constants);
this.type = ((!opt_position || opt_position === 'left') ?
Types.LEFT_ROUND_CORNER :
Types.RIGHT_ROUND_CORNER) |
Types.CORNER;
this.width = this.constants_.CORNER_RADIUS;
// The rounded corner extends into the next row by 4 so we only take the
// height that is aligned with this row.
this.height = this.constants_.CORNER_RADIUS / 2;
}
}
exports.RoundCorner = RoundCorner;