Skip to content

Commit

Permalink
fix toMap for ArCoreCylinder
Browse files Browse the repository at this point in the history
  • Loading branch information
kbot committed Feb 14, 2023
1 parent e50b78d commit 4f20089
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/shape/arcore_cylindre.dart
Expand Up @@ -15,7 +15,7 @@ class ArCoreCylinder extends ArCoreShape {

@override
Map<String, dynamic> toMap() => <String, dynamic>{
'height': this.radius,
'radius': this.height,
'height': this.height,
'radius': this.radius,
}..addAll(super.toMap());
}

0 comments on commit 4f20089

Please sign in to comment.