WIP
This commit is contained in:
parent
24cc572e47
commit
345e183e34
30 changed files with 628 additions and 187 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue