├── .gitignore ├── .swiftpm └── xcode │ └── xcshareddata │ └── xcschemes │ └── DotGlobe.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── DotGlobe │ ├── Assets │ ├── StarsParticles.scnp │ ├── earth-dark.jpg │ └── star.png │ ├── Core │ ├── DotGlobe.swift │ └── EarthNode.swift │ └── SwiftUI │ └── GlobeView.swift ├── Tests └── DotGlobeTests │ └── DotGlobeTests.swift └── thumbnail.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/DotGlobe.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/DotGlobe.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/README.md -------------------------------------------------------------------------------- /Sources/DotGlobe/Assets/StarsParticles.scnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/Sources/DotGlobe/Assets/StarsParticles.scnp -------------------------------------------------------------------------------- /Sources/DotGlobe/Assets/earth-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/Sources/DotGlobe/Assets/earth-dark.jpg -------------------------------------------------------------------------------- /Sources/DotGlobe/Assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/Sources/DotGlobe/Assets/star.png -------------------------------------------------------------------------------- /Sources/DotGlobe/Core/DotGlobe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/Sources/DotGlobe/Core/DotGlobe.swift -------------------------------------------------------------------------------- /Sources/DotGlobe/Core/EarthNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/Sources/DotGlobe/Core/EarthNode.swift -------------------------------------------------------------------------------- /Sources/DotGlobe/SwiftUI/GlobeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/Sources/DotGlobe/SwiftUI/GlobeView.swift -------------------------------------------------------------------------------- /Tests/DotGlobeTests/DotGlobeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/Tests/DotGlobeTests/DotGlobeTests.swift -------------------------------------------------------------------------------- /thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventhq/dot-globe/HEAD/thumbnail.jpg --------------------------------------------------------------------------------