From 00debf509d23ef3f0524cbf5e743f8b82ec17d4d Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Mon, 23 Jun 2025 12:17:38 +0800 Subject: [PATCH] remove getBoundingBoxAsset and destroyBoundingBoxAsset from ThermionAsset --- .../lib/src/filament/src/interface/asset.dart | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/thermion_dart/lib/src/filament/src/interface/asset.dart b/thermion_dart/lib/src/filament/src/interface/asset.dart index 54ab1df7..dfdf86b3 100644 --- a/thermion_dart/lib/src/filament/src/interface/asset.dart +++ b/thermion_dart/lib/src/filament/src/interface/asset.dart @@ -101,24 +101,6 @@ abstract class ThermionAsset { /// [createBoundingBoxAsset] before this method. Future getBoundingBox(); - /// - /// The bounding box for this asset, as an actual renderable asset. - /// This is safe to call multiple times; if [boundingBoxAsset] is non-null, - /// this will simply return the existing bounding box asset. - /// - /// You will still need to call [Scene.add] to add this to the scene. - /// - Future getBoundingBoxAsset() { - throw UnimplementedError(); - } - - /// - /// - /// - Future destroyBoundingBoxAsset(Scene scene) { - throw UnimplementedError(); - } - /// /// ///