This commit is contained in:
schmelczerandras 2020-08-04 22:07:39 +02:00
parent 24cc572e47
commit 345e183e34
30 changed files with 628 additions and 187 deletions

View file

@ -0,0 +1,14 @@
import { BoundingBoxBase } from './bounding-box-base';
import { IPrimitive } from '../../drawing/drawables/primitives/i-primitive';
export class ImmutableBoundingBox extends BoundingBoxBase {
constructor(
value: IPrimitive,
xMin: number = 0,
xMax: number = 0,
yMin: number = 0,
yMax: number = 0
) {
super(value, xMin, xMax, yMin, yMax);
}
}