Elvira
Elvira
Sometimes when I need to access THREE object (example): ``` globe .labelsData(labelsData) .labelText(...) .labelAltitude(...) .labelSize(...) ...; function get_bBox() { let three_obj = labelsData.__threeObj.children[0]; let bBox = new THREE.Box3().setFromObject(three_obj); console.log(bBox); //...
### Problem 1: The number of `labelDot` segments is fixed (16). ### Solution: Added `labelDotSegments` function to change the default (16) labelDot number of segments: ``` const Globe = new...
I'm experiencing an issue with the aspect ratio. A similar problem was discussed in the original repository: [AmolGangadhare/flutter_barcode_scanner#109](https://github.com/AmolGangadhare/flutter_barcode_scanner/issues/109). Potential solution: [Reference comment with solution](https://github.com/AmolGangadhare/flutter_barcode_scanner/issues/109#issuecomment-1147152178). Here’s the commit that appears to...