GraphicalObject.ts 303 B

123456789101112131415
  1. import {BoundingBox} from "./BoundingBox";
  2. export class GraphicalObject {
  3. protected boundingBox: BoundingBox;
  4. public get PositionAndShape(): BoundingBox {
  5. return this.boundingBox;
  6. }
  7. public set PositionAndShape(value: BoundingBox) {
  8. this.boundingBox = value;
  9. }
  10. }