├── .github └── workflows │ └── main.yml ├── .gitignore ├── .swiftpm └── xcode │ └── xcshareddata │ └── xcschemes │ ├── SwiftyCreatives.xcscheme │ └── SwiftyCreativesTests.xcscheme ├── Examples ├── ExampleMacOSApp │ ├── ExampleMacOSApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ExampleMacOSApp.xcscheme │ └── ExampleMacOSApp │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── apple.imageset │ │ │ ├── Contents.json │ │ │ └── Image.png │ │ ├── ExampleMacOSApp.entitlements │ │ ├── ExampleMacOSApp.swift │ │ ├── FeatureExamples │ │ ├── Feature1.swift │ │ ├── Feature2.swift │ │ └── Feature3.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── Samples │ │ ├── Sample1.swift │ │ ├── Sample10.swift │ │ ├── Sample2.swift │ │ ├── Sample3.swift │ │ ├── Sample4.swift │ │ ├── Sample5.swift │ │ ├── Sample6.swift │ │ ├── Sample7.swift │ │ ├── Sample8.swift │ │ └── Sample9.swift │ │ ├── apple.svg │ │ ├── sphere.mtl │ │ └── sphere.obj ├── ExampleVisionOS │ ├── ExampleVisionOS.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── ExampleVisionOS │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.solidimagestack │ │ │ │ ├── Back.solidimagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.solidimagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.solidimagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── ColorMap.textureset │ │ │ │ ├── Contents.json │ │ │ │ └── Universal.mipmapset │ │ │ │ │ ├── ColorMap.png │ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── ExampleVisionOSApp.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── SampleSketch.swift │ └── Packages │ │ └── RealityKitContent │ │ ├── Package.realitycomposerpro │ │ ├── ProjectData │ │ │ └── main.json │ │ └── WorkspaceData │ │ │ ├── SceneMetadataList.json │ │ │ └── Settings.rcprojectdata │ │ ├── Package.swift │ │ ├── README.md │ │ └── Sources │ │ └── RealityKitContent │ │ ├── RealityKitContent.rkassets │ │ ├── Immersive.usda │ │ ├── Materials │ │ │ └── GridMaterial.usda │ │ └── Scene.usda │ │ └── RealityKitContent.swift └── ExampleiOSApp │ ├── ExampleiOSApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved │ └── ExampleiOSApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ExampleiOSApp.entitlements │ ├── ExampleiOSApp.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── SketchSample1.swift │ ├── SketchSample2.swift │ └── TestView.xib ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── SwiftyCreatives │ ├── Camera │ │ ├── Config │ │ │ ├── CameraConfig.swift │ │ │ ├── DefaultOrthographicConfig.swift │ │ │ └── DefaultPerspectiveConfig.swift │ │ ├── EasyCameraType.swift │ │ └── MainCamera.swift │ ├── DrawUtils │ │ └── Config │ │ │ ├── DefaultDrawConfig.swift │ │ │ └── DrawConfig.swift │ ├── Extensions │ │ ├── Bool+.swift │ │ ├── CGPoint+.swift │ │ ├── CGSize+.swift │ │ ├── Comparable+.swift │ │ ├── Float+.swift │ │ ├── MTLCommandBuffer+.swift │ │ ├── MTLTexture+.swift │ │ ├── Numeric+.swift │ │ └── UIView+.swift │ ├── GeometryPresets │ │ └── Box.swift │ ├── Macros │ │ ├── SketchObject.swift │ │ └── SketchObjectHasDraw.swift │ ├── PostProcess │ │ └── Presets │ │ │ ├── BloomPostProcessor.swift │ │ │ └── CornerRadiusPostProcessor.swift │ ├── Primitives │ │ ├── Basics │ │ │ ├── Img.swift │ │ │ ├── ModelObject.swift │ │ │ └── SVGObj.swift │ │ ├── HitTestables │ │ │ ├── HitTestableBox.swift │ │ │ ├── HitTestableImg.swift │ │ │ ├── HitTestableRect.swift │ │ │ └── UIViewObject.swift │ │ ├── PrimitiveUtils │ │ │ ├── Abstract │ │ │ │ ├── HitTestablePrimitive.swift │ │ │ │ ├── ImageAdjustOption.swift │ │ │ │ ├── ImageAdjuster.swift │ │ │ │ ├── ImageLoadable.swift │ │ │ │ ├── RectanglePlanePrimitive.swift │ │ │ │ └── ScaleSettable.swift │ │ │ ├── Info │ │ │ │ ├── BoxInfo.swift │ │ │ │ ├── CircleInfo.swift │ │ │ │ ├── ModelObjectInfo.swift │ │ │ │ ├── PrimitiveInfo.swift │ │ │ │ ├── RectShapeInfo.swift │ │ │ │ └── TriangleInfo.swift │ │ │ └── Primitive.swift │ │ └── Texts │ │ │ ├── Factory │ │ │ ├── RawTextFactory.swift │ │ │ └── TextFactory.swift │ │ │ ├── LetterCache.swift │ │ │ └── Text │ │ │ ├── Text2D.swift │ │ │ ├── Text3D.swift │ │ │ ├── Text3DRaw.swift │ │ │ └── TextBufferCreationError.swift │ ├── PropertyWrappers │ │ └── SCAnimatable.swift │ ├── Renderers │ │ ├── AddRenderer.swift │ │ ├── Base │ │ │ ├── RendererBase+Functions.swift │ │ │ ├── RendererBase+StaticFunctions.swift │ │ │ └── RendererBase.swift │ │ ├── NormalBlendRenderer.swift │ │ ├── TransparentRenderer.swift │ │ └── visionOS │ │ │ ├── AddBlendRendererVision.swift │ │ │ ├── NormalBlendRendererVision.swift │ │ │ ├── TransparentRendererVision.swift │ │ │ └── visionOSSettings.swift │ ├── Resources │ │ └── Shaders │ │ │ ├── AddShader.metal │ │ │ ├── Functions.metal │ │ │ ├── NormalShader.metal │ │ │ ├── SharedIndices.h │ │ │ ├── TransparentShader.metal │ │ │ ├── TransparentShaderVision.metal │ │ │ └── Types.metal │ ├── ShaderUtils │ │ └── ShaderCore.swift │ ├── Sketch │ │ ├── FunctionBase │ │ │ ├── FunctionBase+BoldLine.swift │ │ │ ├── FunctionBase+Box.swift │ │ │ ├── FunctionBase+Circle.swift │ │ │ ├── FunctionBase+Color.swift │ │ │ ├── FunctionBase+Fog.swift │ │ │ ├── FunctionBase+HitTestableBox.swift │ │ │ ├── FunctionBase+HitTestableImg.swift │ │ │ ├── FunctionBase+Img.swift │ │ │ ├── FunctionBase+Line.swift │ │ │ ├── FunctionBase+Mesh.swift │ │ │ ├── FunctionBase+ModelObject.swift │ │ │ ├── FunctionBase+PushPop.swift │ │ │ ├── FunctionBase+Rect.swift │ │ │ ├── FunctionBase+Rotate.swift │ │ │ ├── FunctionBase+SVG.swift │ │ │ ├── FunctionBase+Scale.swift │ │ │ ├── FunctionBase+Text.swift │ │ │ ├── FunctionBase+Translate.swift │ │ │ ├── FunctionBase+Triangle.swift │ │ │ └── FunctionBase.swift │ │ ├── SCPacket.swift │ │ ├── Sketch.swift │ │ └── SketchFunctions │ │ │ └── Sketch+UtilFunctions.swift │ ├── Utils │ │ ├── Alias.swift │ │ ├── AssetUtil.swift │ │ ├── BlendMode.swift │ │ ├── DefaultBuffers.swift │ │ ├── EXPORTER.swift │ │ ├── MathUtil.swift │ │ └── SharedIndices.swift │ └── Views │ │ ├── KitSketchView.swift │ │ ├── SketchView.swift │ │ └── TouchableMTKView │ │ ├── TouchableMTKView+Configure.swift │ │ ├── TouchableMTKView+Deinitializer.swift │ │ ├── TouchableMTKView+Initializer.swift │ │ ├── TouchableMTKView+Utils.swift │ │ └── TouchableMTKView.swift ├── SwiftyCreativesMacro │ ├── SketchObject │ │ └── SketchObject.swift │ ├── SwiftyCreativesMacroPlugin.swift │ └── Utils │ │ └── String+Error.swift └── SwiftyCreativesSound │ ├── AudioCapturer.swift │ ├── DetailedAudioCapturer.swift │ ├── FFT │ ├── FFTBandCalculationMethod.swift │ ├── FFTNoiseExtractionMethod.swift │ ├── FFTResultComponent.swift │ ├── TempiFFT.swift │ └── TempiFFTWindowType.swift │ ├── FFTVisualizer.swift │ ├── FastAudioCapturer.swift │ └── Utils │ └── NoiseExtractor.swift ├── SwiftyCreatives.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved └── Tests └── SwiftyCreativesTests ├── Resources ├── Media.xcassets │ ├── Contents.json │ └── sampleImage.imageset │ │ ├── Contents.json │ │ └── sampleImage.png ├── SampleObject.mtl ├── SampleObject.obj ├── SampleObjectWithTexture.mtl ├── SampleObjectWithTexture.obj └── sampleSvg.svg └── SnapshotTests ├── Functions ├── BoldLineTests.swift ├── BoxTests.swift ├── CircleTests.swift ├── ColorTests.swift ├── FogTests.swift ├── HitTestableBoxTests.swift ├── HitTestableImgTests.swift ├── ImgTests.swift ├── LineTests.swift ├── MeshTests.swift ├── ModelTests.swift ├── PushPopTests.swift ├── RectTests.swift ├── SVGTests.swift ├── SketchForTest.swift ├── TextTests.swift ├── TriangleTests.swift └── __Snapshots__ │ ├── SVGTests │ └── testSVGIsDrawed.1.png │ └── SketchForTest │ ├── testBoldLineColorWorking.1.png │ ├── testBoldLineIsDrawed.1.png │ ├── testBoldLineVariations.1.png │ ├── testBoldLineWithVertexColor.1.png │ ├── testBoxColorWorking.1.png │ ├── testBoxIsDrawed.1.png │ ├── testBoxRotationWorking.1.png │ ├── testBoxVariations.1.png │ ├── testCircleColorWorking.1.png │ ├── testCircleIsDrawed.1.png │ ├── testCircleParameterWorking.1.png │ ├── testColorIsWorking.1.png │ ├── testFogIsWorking.1.png │ ├── testHitTestableBoxIsDrawed.1.png │ ├── testHitTestableImgIsDrawed.1.png │ ├── testImgIsDrawed.1.png │ ├── testLineColorWorking.1.png │ ├── testLineIsDrawed.1.png │ ├── testMeshIsDrawed.1.png │ ├── testMeshWithVertexColor.1.png │ ├── testModelIsDrawed.1.png │ ├── testModelIsDrawedWithCustomTexture.1.png │ ├── testModelIsDrawedWithTexture.1.png │ ├── testNestedPushPopWorking.1.png │ ├── testPushPopWorking.1.png │ ├── testRectColorWorking.1.png │ ├── testRectIsDrawed.1.png │ ├── testRectPosWorking.1.png │ ├── testText2DGradient.1.png │ ├── testText2DIsDrawed.1.png │ ├── testText3DIsDrawed.1.png │ ├── testText3DRawIsDrawed.1.png │ ├── testTextFactoryIsWorking.1.png │ ├── testTexturedMeshIsDrawed.1.png │ ├── testTriangleColorWorking.1.png │ ├── testTriangleIsDrawed.1.png │ └── testTrianglePosWorking.1.png ├── Renderers ├── AddRendererTests.swift ├── NormalRendererTests.swift ├── TransparentRendererTests.swift └── __Snapshots__ │ ├── AddRendererTests │ └── testAddRendering.1.png │ ├── NormalRendererTests │ └── testNormalRendering.1.png │ └── TransparentRendererTests │ └── testTransparentRendering.1.png └── SnapshotTestUtil.swift /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/SwiftyCreatives.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/SwiftyCreatives.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/SwiftyCreativesTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/SwiftyCreativesTests.xcscheme -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/xcshareddata/xcschemes/ExampleMacOSApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp.xcodeproj/xcshareddata/xcschemes/ExampleMacOSApp.xcscheme -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/apple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/apple.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/apple.imageset/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Assets.xcassets/apple.imageset/Image.png -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/ExampleMacOSApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/ExampleMacOSApp.entitlements -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/ExampleMacOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/ExampleMacOSApp.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/FeatureExamples/Feature1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/FeatureExamples/Feature1.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/FeatureExamples/Feature2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/FeatureExamples/Feature2.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/FeatureExamples/Feature3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/FeatureExamples/Feature3.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample1.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample10.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample2.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample3.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample4.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample5.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample6.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample7.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample8.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample9.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/Samples/Sample9.swift -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/apple.svg -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/sphere.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/sphere.mtl -------------------------------------------------------------------------------- /Examples/ExampleMacOSApp/ExampleMacOSApp/sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleMacOSApp/ExampleMacOSApp/sphere.obj -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/ColorMap.textureset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/ColorMap.textureset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/ColorMap.textureset/Universal.mipmapset/ColorMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/ColorMap.textureset/Universal.mipmapset/ColorMap.png -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/ColorMap.textureset/Universal.mipmapset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/ColorMap.textureset/Universal.mipmapset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/ContentView.swift -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/ExampleVisionOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/ExampleVisionOSApp.swift -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Info.plist -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/ExampleVisionOS/SampleSketch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/ExampleVisionOS/SampleSketch.swift -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/Packages/RealityKitContent/Package.swift -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/README.md: -------------------------------------------------------------------------------- 1 | # RealityKitContent 2 | 3 | A description of this package. -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Immersive.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Immersive.usda -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Materials/GridMaterial.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Materials/GridMaterial.usda -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Scene.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Scene.usda -------------------------------------------------------------------------------- /Examples/ExampleVisionOS/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleVisionOS/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/ExampleiOSApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/ExampleiOSApp.entitlements -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/ExampleiOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/ExampleiOSApp.swift -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/SketchSample1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/SketchSample1.swift -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/SketchSample2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/SketchSample2.swift -------------------------------------------------------------------------------- /Examples/ExampleiOSApp/ExampleiOSApp/TestView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Examples/ExampleiOSApp/ExampleiOSApp/TestView.xib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Camera/Config/CameraConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Camera/Config/CameraConfig.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Camera/Config/DefaultOrthographicConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Camera/Config/DefaultOrthographicConfig.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Camera/Config/DefaultPerspectiveConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Camera/Config/DefaultPerspectiveConfig.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Camera/EasyCameraType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Camera/EasyCameraType.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Camera/MainCamera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Camera/MainCamera.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/DrawUtils/Config/DefaultDrawConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/DrawUtils/Config/DefaultDrawConfig.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/DrawUtils/Config/DrawConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/DrawUtils/Config/DrawConfig.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/Bool+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/Bool+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/CGPoint+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/CGPoint+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/CGSize+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/CGSize+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/Comparable+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/Comparable+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/Float+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/Float+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/MTLCommandBuffer+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/MTLCommandBuffer+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/MTLTexture+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/MTLTexture+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/Numeric+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/Numeric+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Extensions/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Extensions/UIView+.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/GeometryPresets/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/GeometryPresets/Box.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Macros/SketchObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Macros/SketchObject.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Macros/SketchObjectHasDraw.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Macros/SketchObjectHasDraw.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/PostProcess/Presets/BloomPostProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/PostProcess/Presets/BloomPostProcessor.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/PostProcess/Presets/CornerRadiusPostProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/PostProcess/Presets/CornerRadiusPostProcessor.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Basics/Img.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Basics/Img.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Basics/ModelObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Basics/ModelObject.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Basics/SVGObj.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Basics/SVGObj.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/HitTestables/HitTestableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/HitTestables/HitTestableBox.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/HitTestables/HitTestableImg.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/HitTestables/HitTestableImg.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/HitTestables/HitTestableRect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/HitTestables/HitTestableRect.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/HitTestables/UIViewObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/HitTestables/UIViewObject.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/HitTestablePrimitive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/HitTestablePrimitive.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/ImageAdjustOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/ImageAdjustOption.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/ImageAdjuster.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/ImageAdjuster.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/ImageLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/ImageLoadable.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/RectanglePlanePrimitive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/RectanglePlanePrimitive.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/ScaleSettable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Abstract/ScaleSettable.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/BoxInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/BoxInfo.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/CircleInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/CircleInfo.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/ModelObjectInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/ModelObjectInfo.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/PrimitiveInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/PrimitiveInfo.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/RectShapeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/RectShapeInfo.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/TriangleInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Info/TriangleInfo.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Primitive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/PrimitiveUtils/Primitive.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Texts/Factory/RawTextFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Texts/Factory/RawTextFactory.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Texts/Factory/TextFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Texts/Factory/TextFactory.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Texts/LetterCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Texts/LetterCache.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Texts/Text/Text2D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Texts/Text/Text2D.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Texts/Text/Text3D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Texts/Text/Text3D.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Texts/Text/Text3DRaw.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Texts/Text/Text3DRaw.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Primitives/Texts/Text/TextBufferCreationError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Primitives/Texts/Text/TextBufferCreationError.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/PropertyWrappers/SCAnimatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/PropertyWrappers/SCAnimatable.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/AddRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/AddRenderer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/Base/RendererBase+Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/Base/RendererBase+Functions.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/Base/RendererBase+StaticFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/Base/RendererBase+StaticFunctions.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/Base/RendererBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/Base/RendererBase.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/NormalBlendRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/NormalBlendRenderer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/visionOS/AddBlendRendererVision.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/visionOS/AddBlendRendererVision.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/visionOS/NormalBlendRendererVision.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/visionOS/NormalBlendRendererVision.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/visionOS/TransparentRendererVision.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/visionOS/TransparentRendererVision.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Renderers/visionOS/visionOSSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Renderers/visionOS/visionOSSettings.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Resources/Shaders/AddShader.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Resources/Shaders/AddShader.metal -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Resources/Shaders/Functions.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Resources/Shaders/Functions.metal -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Resources/Shaders/NormalShader.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Resources/Shaders/NormalShader.metal -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Resources/Shaders/SharedIndices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Resources/Shaders/SharedIndices.h -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Resources/Shaders/TransparentShader.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Resources/Shaders/TransparentShader.metal -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Resources/Shaders/TransparentShaderVision.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Resources/Shaders/TransparentShaderVision.metal -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Resources/Shaders/Types.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Resources/Shaders/Types.metal -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/ShaderUtils/ShaderCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/ShaderUtils/ShaderCore.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+BoldLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+BoldLine.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Box.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Circle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Circle.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Color.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Fog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Fog.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+HitTestableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+HitTestableBox.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+HitTestableImg.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+HitTestableImg.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Img.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Img.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Line.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Line.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Mesh.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Mesh.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+ModelObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+ModelObject.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+PushPop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+PushPop.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Rect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Rect.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Rotate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Rotate.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+SVG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+SVG.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Scale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Scale.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Text.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Translate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Translate.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Triangle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase+Triangle.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/SCPacket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/SCPacket.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/Sketch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/Sketch.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Sketch/SketchFunctions/Sketch+UtilFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Sketch/SketchFunctions/Sketch+UtilFunctions.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Utils/Alias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Utils/Alias.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Utils/AssetUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Utils/AssetUtil.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Utils/BlendMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Utils/BlendMode.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Utils/DefaultBuffers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Utils/DefaultBuffers.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Utils/EXPORTER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Utils/EXPORTER.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Utils/MathUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Utils/MathUtil.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Utils/SharedIndices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Utils/SharedIndices.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Views/KitSketchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Views/KitSketchView.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Views/SketchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Views/SketchView.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView+Configure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView+Configure.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView+Deinitializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView+Deinitializer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView+Initializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView+Initializer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView+Utils.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreatives/Views/TouchableMTKView/TouchableMTKView.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesMacro/SketchObject/SketchObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesMacro/SketchObject/SketchObject.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesMacro/SwiftyCreativesMacroPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesMacro/SwiftyCreativesMacroPlugin.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesMacro/Utils/String+Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesMacro/Utils/String+Error.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/AudioCapturer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/AudioCapturer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/DetailedAudioCapturer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/DetailedAudioCapturer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/FFT/FFTBandCalculationMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/FFT/FFTBandCalculationMethod.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/FFT/FFTNoiseExtractionMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/FFT/FFTNoiseExtractionMethod.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/FFT/FFTResultComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/FFT/FFTResultComponent.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/FFT/TempiFFT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/FFT/TempiFFTWindowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/FFT/TempiFFTWindowType.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/FFTVisualizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/FFTVisualizer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/FastAudioCapturer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/FastAudioCapturer.swift -------------------------------------------------------------------------------- /Sources/SwiftyCreativesSound/Utils/NoiseExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Sources/SwiftyCreativesSound/Utils/NoiseExtractor.swift -------------------------------------------------------------------------------- /SwiftyCreatives.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/SwiftyCreatives.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftyCreatives.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/SwiftyCreatives.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftyCreatives.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/SwiftyCreatives.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/Resources/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/Resources/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/Resources/Media.xcassets/sampleImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/Resources/Media.xcassets/sampleImage.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/Resources/Media.xcassets/sampleImage.imageset/sampleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/Resources/Media.xcassets/sampleImage.imageset/sampleImage.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/Resources/SampleObject.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/Resources/SampleObject.mtl -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/Resources/SampleObject.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/Resources/SampleObject.obj -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/Resources/SampleObjectWithTexture.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/Resources/SampleObjectWithTexture.mtl -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/Resources/SampleObjectWithTexture.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/Resources/SampleObjectWithTexture.obj -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/Resources/sampleSvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/Resources/sampleSvg.svg -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/BoldLineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/BoldLineTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/BoxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/BoxTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/CircleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/CircleTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/ColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/ColorTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/FogTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/FogTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/HitTestableBoxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/HitTestableBoxTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/HitTestableImgTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/HitTestableImgTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/ImgTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/ImgTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/LineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/LineTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/MeshTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/MeshTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/ModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/ModelTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/PushPopTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/PushPopTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/RectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/RectTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/SVGTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/SVGTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/SketchForTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/SketchForTest.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/TextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/TextTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/TriangleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/TriangleTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SVGTests/testSVGIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SVGTests/testSVGIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoldLineColorWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoldLineColorWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoldLineIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoldLineIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoldLineVariations.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoldLineVariations.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoldLineWithVertexColor.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoldLineWithVertexColor.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoxColorWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoxColorWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoxIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoxIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoxRotationWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoxRotationWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoxVariations.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testBoxVariations.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testCircleColorWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testCircleColorWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testCircleIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testCircleIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testCircleParameterWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testCircleParameterWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testColorIsWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testColorIsWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testFogIsWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testFogIsWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testHitTestableBoxIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testHitTestableBoxIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testHitTestableImgIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testHitTestableImgIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testImgIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testImgIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testLineColorWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testLineColorWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testLineIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testLineIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testMeshIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testMeshIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testMeshWithVertexColor.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testMeshWithVertexColor.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testModelIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testModelIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testModelIsDrawedWithCustomTexture.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testModelIsDrawedWithCustomTexture.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testModelIsDrawedWithTexture.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testModelIsDrawedWithTexture.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testNestedPushPopWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testNestedPushPopWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testPushPopWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testPushPopWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testRectColorWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testRectColorWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testRectIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testRectIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testRectPosWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testRectPosWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testText2DGradient.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testText2DGradient.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testText2DIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testText2DIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testText3DIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testText3DIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testText3DRawIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testText3DRawIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTextFactoryIsWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTextFactoryIsWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTexturedMeshIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTexturedMeshIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTriangleColorWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTriangleColorWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTriangleIsDrawed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTriangleIsDrawed.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTrianglePosWorking.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Functions/__Snapshots__/SketchForTest/testTrianglePosWorking.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Renderers/AddRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Renderers/AddRendererTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Renderers/NormalRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Renderers/NormalRendererTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Renderers/TransparentRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Renderers/TransparentRendererTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Renderers/__Snapshots__/AddRendererTests/testAddRendering.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Renderers/__Snapshots__/AddRendererTests/testAddRendering.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Renderers/__Snapshots__/NormalRendererTests/testNormalRendering.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Renderers/__Snapshots__/NormalRendererTests/testNormalRendering.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/Renderers/__Snapshots__/TransparentRendererTests/testTransparentRendering.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/Renderers/__Snapshots__/TransparentRendererTests/testTransparentRendering.1.png -------------------------------------------------------------------------------- /Tests/SwiftyCreativesTests/SnapshotTests/SnapshotTestUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukiny0811/swifty-creatives/HEAD/Tests/SwiftyCreativesTests/SnapshotTests/SnapshotTestUtil.swift --------------------------------------------------------------------------------