Skip to content

Commit

Permalink
Merge pull request #205 from kbot/patch-1
Browse files Browse the repository at this point in the history
fix toMap for ArCoreCylinder
  • Loading branch information
giandifra committed Feb 20, 2023
2 parents e50b78d + 4f20089 commit 1ffb293
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 1ffb293

Please sign in to comment.