aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/argaze/ArFeatures.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/argaze/ArFeatures.py b/src/argaze/ArFeatures.py
index c7b9342..18fb430 100644
--- a/src/argaze/ArFeatures.py
+++ b/src/argaze/ArFeatures.py
@@ -178,12 +178,12 @@ class ArLayer():
# JSON file format for 2D or 3D dimension
if file_format == 'json':
- new_aoi_scene = AOIFeatures.AOIScene.from_json(filepath).copy()
+ new_aoi_scene = AOIFeatures.AOIScene.from_json(filepath)
# OBJ file format for 3D dimension only
elif file_format == 'obj':
- new_aoi_scene = AOI3DScene.AOI3DScene.from_obj(filepath).copy()
+ new_aoi_scene = AOI3DScene.AOI3DScene.from_obj(filepath)
# dict:
else:
@@ -1353,7 +1353,7 @@ class ArCamera(ArFrame):
output = f'Name:\n{self.name}\n'
for name, scene in self.scenes.items():
- output += f'\"{name}\" ArScene:\n{scene}\n'
+ output += f'\"{name}\" {type(scene)}:\n{scene}\n'
return output