Merge pull request #11413 from mike-000/patch-12

Include scale option in RegularShape and Circle style constructors
This commit is contained in:
Andreas Hocevar
2020-08-10 09:44:08 +02:00
committed by GitHub
8 changed files with 70 additions and 6 deletions

View File

@@ -10,6 +10,8 @@ import RegularShape from './RegularShape.js';
* @property {number} radius Circle radius.
* @property {import("./Stroke.js").default} [stroke] Stroke style.
* @property {Array<number>} [displacement=[0,0]] displacement
* @property {number|import("../size.js").Size} [scale=1] Scale. A two dimensional scale will produce an ellipse.
* Unless two dimensional scaling is required a better result may be obtained with an appropriate setting for `radius`.
*/
/**
@@ -29,6 +31,7 @@ class CircleStyle extends RegularShape {
fill: options.fill,
radius: options.radius,
stroke: options.stroke,
scale: options.scale !== undefined ? options.scale : 1,
displacement:
options.displacement !== undefined ? options.displacement : [0, 0],
});
@@ -40,14 +43,15 @@ class CircleStyle extends RegularShape {
* @api
*/
clone() {
const scale = this.getScale();
const style = new CircleStyle({
fill: this.getFill() ? this.getFill().clone() : undefined,
stroke: this.getStroke() ? this.getStroke().clone() : undefined,
radius: this.getRadius(),
scale: Array.isArray(scale) ? scale.slice() : scale,
displacement: this.getDisplacement().slice(),
});
style.setOpacity(this.getOpacity());
style.setScale(this.getScale());
return style;
}

View File

@@ -30,6 +30,8 @@ import {
* @property {import("./Stroke.js").default} [stroke] Stroke style.
* @property {number} [rotation=0] Rotation in radians (positive rotation clockwise).
* @property {boolean} [rotateWithView=false] Whether to rotate the shape with the view.
* @property {number|import("../size.js").Size} [scale=1] Scale. Unless two dimensional scaling is required a better
* result may be obtained with appropriate settings for `radius`, `radius1` and `radius2.
*/
/**
@@ -66,7 +68,7 @@ class RegularShape extends ImageStyle {
opacity: 1,
rotateWithView: rotateWithView,
rotation: options.rotation !== undefined ? options.rotation : 0,
scale: 1,
scale: options.scale !== undefined ? options.scale : 1,
displacement:
options.displacement !== undefined ? options.displacement : [0, 0],
});
@@ -159,6 +161,7 @@ class RegularShape extends ImageStyle {
* @api
*/
clone() {
const scale = this.getScale();
const style = new RegularShape({
fill: this.getFill() ? this.getFill().clone() : undefined,
points: this.getPoints(),
@@ -168,10 +171,10 @@ class RegularShape extends ImageStyle {
stroke: this.getStroke() ? this.getStroke().clone() : undefined,
rotation: this.getRotation(),
rotateWithView: this.getRotateWithView(),
scale: Array.isArray(scale) ? scale.slice() : scale,
displacement: this.getDisplacement().slice(),
});
style.setOpacity(this.getOpacity());
style.setScale(this.getScale());
return style;
}