├── .editorconfig ├── .gitignore ├── .gitmodules ├── .paket ├── paket.bootstrapper.exe ├── paket.exe └── paket.targets ├── Assets ├── BigBatch.unity ├── BigBatch.unity.meta ├── Demo.meta ├── Demo │ ├── Invoke.cs │ ├── Invoke.cs.meta │ ├── Material.mat │ ├── Material.mat.meta │ ├── Shader.shader │ └── Shader.shader.meta ├── Editor.meta ├── Editor │ └── UnityREPL.meta ├── SVGFiles.meta ├── SVGFiles │ ├── arc1.txt │ ├── arc1.txt.meta │ ├── arc2.txt │ ├── arc2.txt.meta │ ├── arc3.txt │ ├── arc3.txt.meta │ ├── butterfly.svg │ ├── butterfly.svg.meta │ ├── butterfly.txt │ ├── butterfly.txt.meta │ ├── circle1.txt │ ├── circle1.txt.meta │ ├── lineargradient1.svg │ ├── lineargradient1.svg.meta │ ├── lineargradient1.txt │ ├── lineargradient1.txt.meta │ ├── lines1.txt │ ├── lines1.txt.meta │ ├── lion.txt │ ├── lion.txt.meta │ ├── none.txt │ ├── none.txt.meta │ ├── path1.txt │ ├── path1.txt.meta │ ├── path2.txt │ ├── path2.txt.meta │ ├── path3.txt │ ├── path3.txt.meta │ ├── polyline1.txt │ ├── polyline1.txt.meta │ ├── polyline2.txt │ ├── polyline2.txt.meta │ ├── radgrad1.txt │ ├── radgrad1.txt.meta │ ├── rect1.svg │ ├── rect1.svg.meta │ ├── rect1.txt │ ├── rect1.txt.meta │ ├── rect2.txt │ ├── rect2.txt.meta │ ├── test1.txt │ ├── test1.txt.meta │ ├── test2.txt │ ├── test2.txt.meta │ ├── tiger.txt │ └── tiger.txt.meta ├── Test.unity ├── Test.unity.meta ├── UnityGUIExtensions.meta ├── UnitySVG.meta └── UnitySVG │ ├── Extensions.cs │ ├── Extensions.cs.meta │ ├── Implement.cs │ ├── Implement.cs.meta │ ├── Implementation.meta │ ├── Implementation │ ├── RenderingEngine.meta │ ├── RenderingEngine │ │ ├── BasicType.meta │ │ ├── BasicType │ │ │ ├── SVGGArcAbs.cs │ │ │ ├── SVGGArcAbs.cs.meta │ │ │ ├── SVGGCircle.cs │ │ │ ├── SVGGCircle.cs.meta │ │ │ ├── SVGGCubicAbs.cs │ │ │ ├── SVGGCubicAbs.cs.meta │ │ │ ├── SVGGEllipse.cs │ │ │ ├── SVGGEllipse.cs.meta │ │ │ ├── SVGGLineTo.cs │ │ │ ├── SVGGLineTo.cs.meta │ │ │ ├── SVGGMoveTo.cs │ │ │ ├── SVGGMoveTo.cs.meta │ │ │ ├── SVGGPolyLine.cs │ │ │ ├── SVGGPolyLine.cs.meta │ │ │ ├── SVGGPolygon.cs │ │ │ ├── SVGGPolygon.cs.meta │ │ │ ├── SVGGQuadraticAbs.cs │ │ │ ├── SVGGQuadraticAbs.cs.meta │ │ │ ├── SVGGRect.cs │ │ │ └── SVGGRect.cs.meta │ │ ├── RenderingDevices.meta │ │ ├── RenderingDevices │ │ │ ├── ISVGDevice.cs │ │ │ ├── ISVGDevice.cs.meta │ │ │ ├── SVGDeviceFast.cs │ │ │ ├── SVGDeviceFast.cs.meta │ │ │ ├── SVGDeviceSmall.cs │ │ │ └── SVGDeviceSmall.cs.meta │ │ ├── SVGBasicDraw.cs │ │ ├── SVGBasicDraw.cs.meta │ │ ├── SVGGraphics.cs │ │ ├── SVGGraphics.cs.meta │ │ ├── SVGGraphicsFill.cs │ │ ├── SVGGraphicsFill.cs.meta │ │ ├── SVGGraphicsPath.cs │ │ ├── SVGGraphicsPath.cs.meta │ │ ├── SVGGraphicsStroke.cs │ │ ├── SVGGraphicsStroke.cs.meta │ │ ├── SVGLinearGradientBrush.cs │ │ ├── SVGLinearGradientBrush.cs.meta │ │ ├── SVGRadialGradientBrush.cs │ │ └── SVGRadialGradientBrush.cs.meta │ ├── SVG.meta │ ├── SVG │ │ ├── DOM.meta │ │ └── DOM │ │ │ ├── BasicShapes.meta │ │ │ ├── BasicShapes │ │ │ ├── SVGBasicElement.cs │ │ │ ├── SVGBasicElement.cs.meta │ │ │ ├── SVGCircleElement.cs │ │ │ ├── SVGCircleElement.cs.meta │ │ │ ├── SVGEllipseElement.cs │ │ │ ├── SVGEllipseElement.cs.meta │ │ │ ├── SVGLineElement.cs │ │ │ ├── SVGLineElement.cs.meta │ │ │ ├── SVGPolygonElement.cs │ │ │ ├── SVGPolygonElement.cs.meta │ │ │ ├── SVGPolylineElement.cs │ │ │ ├── SVGPolylineElement.cs.meta │ │ │ ├── SVGRectElement.cs │ │ │ └── SVGRectElement.cs.meta │ │ │ ├── BasicTypes.meta │ │ │ ├── BasicTypes │ │ │ ├── SVGColor.cs │ │ │ ├── SVGColor.cs.meta │ │ │ ├── SVGLength.cs │ │ │ ├── SVGLength.cs.meta │ │ │ ├── SVGPaintable.cs │ │ │ ├── SVGPaintable.cs.meta │ │ │ ├── SVGTransformable.cs │ │ │ └── SVGTransformable.cs.meta │ │ │ ├── CoordinateTransformUnits.meta │ │ │ ├── CoordinateTransformUnits │ │ │ ├── Matrix2x3.cs │ │ │ ├── Matrix2x3.cs.meta │ │ │ ├── SVGTransform.cs │ │ │ ├── SVGTransform.cs.meta │ │ │ ├── SVGTransformList.cs │ │ │ └── SVGTransformList.cs.meta │ │ │ ├── DocumentStructure.meta │ │ │ ├── DocumentStructure │ │ │ ├── SVGDocument.cs │ │ │ ├── SVGDocument.cs.meta │ │ │ ├── SVGGElement.cs │ │ │ ├── SVGGElement.cs.meta │ │ │ ├── SVGSVGElement.cs │ │ │ └── SVGSVGElement.cs.meta │ │ │ ├── GradientsNPatterns.meta │ │ │ ├── GradientsNPatterns │ │ │ ├── SVGGradientElement.cs │ │ │ ├── SVGGradientElement.cs.meta │ │ │ ├── SVGLinearGradientElement.cs │ │ │ ├── SVGLinearGradientElement.cs.meta │ │ │ ├── SVGRadialGradientElement.cs │ │ │ ├── SVGRadialGradientElement.cs.meta │ │ │ ├── SVGStopElement.cs │ │ │ └── SVGStopElement.cs.meta │ │ │ ├── Paths.meta │ │ │ ├── Paths │ │ │ ├── Interfaces.meta │ │ │ ├── Interfaces │ │ │ │ ├── ISVGDrawable.cs │ │ │ │ ├── ISVGDrawable.cs.meta │ │ │ │ ├── ISVGDrawableSeg.cs │ │ │ │ ├── ISVGDrawableSeg.cs.meta │ │ │ │ ├── ISVGPathSegment.cs │ │ │ │ └── ISVGPathSegment.cs.meta │ │ │ ├── SVGPathElement.cs │ │ │ ├── SVGPathElement.cs.meta │ │ │ ├── SVGPathSeg.cs │ │ │ ├── SVGPathSeg.cs.meta │ │ │ ├── SVGPathSegArcAbs.cs │ │ │ ├── SVGPathSegArcAbs.cs.meta │ │ │ ├── SVGPathSegArcRel.cs │ │ │ ├── SVGPathSegArcRel.cs.meta │ │ │ ├── SVGPathSegClosePath.cs │ │ │ ├── SVGPathSegClosePath.cs.meta │ │ │ ├── SVGPathSegCurvetoCubic.cs │ │ │ ├── SVGPathSegCurvetoCubic.cs.meta │ │ │ ├── SVGPathSegCurvetoCubicAbs.cs │ │ │ ├── SVGPathSegCurvetoCubicAbs.cs.meta │ │ │ ├── SVGPathSegCurvetoCubicRel.cs │ │ │ ├── SVGPathSegCurvetoCubicRel.cs.meta │ │ │ ├── SVGPathSegCurvetoCubicSmoothAbs.cs │ │ │ ├── SVGPathSegCurvetoCubicSmoothAbs.cs.meta │ │ │ ├── SVGPathSegCurvetoCubicSmoothRel.cs │ │ │ ├── SVGPathSegCurvetoCubicSmoothRel.cs.meta │ │ │ ├── SVGPathSegCurvetoQuadratic.cs │ │ │ ├── SVGPathSegCurvetoQuadratic.cs.meta │ │ │ ├── SVGPathSegCurvetoQuadraticAbs.cs │ │ │ ├── SVGPathSegCurvetoQuadraticAbs.cs.meta │ │ │ ├── SVGPathSegCurvetoQuadraticRel.cs │ │ │ ├── SVGPathSegCurvetoQuadraticRel.cs.meta │ │ │ ├── SVGPathSegCurvetoQuadraticSmoothAbs.cs │ │ │ ├── SVGPathSegCurvetoQuadraticSmoothAbs.cs.meta │ │ │ ├── SVGPathSegCurvetoQuadraticSmoothRel.cs │ │ │ ├── SVGPathSegCurvetoQuadraticSmoothRel.cs.meta │ │ │ ├── SVGPathSegLinetoAbs.cs │ │ │ ├── SVGPathSegLinetoAbs.cs.meta │ │ │ ├── SVGPathSegLinetoHorizontalAbs.cs │ │ │ ├── SVGPathSegLinetoHorizontalAbs.cs.meta │ │ │ ├── SVGPathSegLinetoHorizontalRel.cs │ │ │ ├── SVGPathSegLinetoHorizontalRel.cs.meta │ │ │ ├── SVGPathSegLinetoRel.cs │ │ │ ├── SVGPathSegLinetoRel.cs.meta │ │ │ ├── SVGPathSegLinetoVerticalAbs.cs │ │ │ ├── SVGPathSegLinetoVerticalAbs.cs.meta │ │ │ ├── SVGPathSegLinetoVerticalRel.cs │ │ │ ├── SVGPathSegLinetoVerticalRel.cs.meta │ │ │ ├── SVGPathSegList.cs │ │ │ ├── SVGPathSegList.cs.meta │ │ │ ├── SVGPathSegMovetoAbs.cs │ │ │ ├── SVGPathSegMovetoAbs.cs.meta │ │ │ ├── SVGPathSegMovetoRel.cs │ │ │ └── SVGPathSegMovetoRel.cs.meta │ │ │ ├── Utilities.meta │ │ │ └── Utilities │ │ │ ├── DOMException.cs │ │ │ ├── DOMException.cs.meta │ │ │ ├── LiteStack.cs │ │ │ ├── LiteStack.cs.meta │ │ │ ├── SVGColorExtractor.cs │ │ │ ├── SVGColorExtractor.cs.meta │ │ │ ├── SVGException.cs │ │ │ ├── SVGException.cs.meta │ │ │ ├── SVGStringExtractor.cs │ │ │ └── SVGStringExtractor.cs.meta │ ├── XMLParser.meta │ └── XMLParser │ │ ├── SVGParser.cs │ │ ├── SVGParser.cs.meta │ │ ├── SmallXmlParser.cs │ │ └── SmallXmlParser.cs.meta │ ├── Interface.meta │ └── Interface │ ├── RenderingEngine.meta │ └── RenderingEngine │ ├── ISVGPathDraw.cs │ └── ISVGPathDraw.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md ├── SharpVectorGraphics.0.4.alpha.zip ├── UnitySVG.sln ├── UnitySVG.sublime-project ├── benchmarks.txt ├── bin ├── format_code └── paket ├── paket.dependencies └── paket.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/.gitmodules -------------------------------------------------------------------------------- /.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /.paket/paket.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/.paket/paket.exe -------------------------------------------------------------------------------- /.paket/paket.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/.paket/paket.targets -------------------------------------------------------------------------------- /Assets/BigBatch.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/BigBatch.unity -------------------------------------------------------------------------------- /Assets/BigBatch.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56684fc74466b46f28607eee7cc186c2 3 | -------------------------------------------------------------------------------- /Assets/Demo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 08b24598dd117a63d0004889613f5639 3 | -------------------------------------------------------------------------------- /Assets/Demo/Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/Demo/Invoke.cs -------------------------------------------------------------------------------- /Assets/Demo/Invoke.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: f681b4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/Demo/Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/Demo/Material.mat -------------------------------------------------------------------------------- /Assets/Demo/Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 51edb96bdd118a63d000decb613f5639 3 | -------------------------------------------------------------------------------- /Assets/Demo/Shader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/Demo/Shader.shader -------------------------------------------------------------------------------- /Assets/Demo/Shader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: d5e8e6383c1f3428ead6d80078cb8daf 3 | -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb6f2cbdc33c14793b345ecd7f501d9d 3 | -------------------------------------------------------------------------------- /Assets/Editor/UnityREPL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e57f43ecc64d3472f9559232a339d63b 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 7329e7dfae9e2432db0c51e8e06d74e5 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/arc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/arc1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/arc1.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 9c11505acd3334dd49c26981ad8853a9 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/arc2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/arc2.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/arc2.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: f7a83dad7eccd4f39812661fee7bf285 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/arc3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/arc3.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/arc3.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: e4c0cc2d4572f45a1b29a021feb7e1b9 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/butterfly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/butterfly.svg -------------------------------------------------------------------------------- /Assets/SVGFiles/butterfly.svg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 1b1a9256d13844471877bf5f5ea6d670 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/butterfly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/butterfly.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/butterfly.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 2d59d53084f184b8bae8db891ed1dfe8 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/circle1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/circle1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/circle1.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 4b1d125e9c8d84780a99629ca0a7d768 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/lineargradient1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/lineargradient1.svg -------------------------------------------------------------------------------- /Assets/SVGFiles/lineargradient1.svg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/lineargradient1.svg.meta -------------------------------------------------------------------------------- /Assets/SVGFiles/lineargradient1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/lineargradient1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/lineargradient1.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: e3f6aaf8394bc4ed7b78185625feac37 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/lines1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/lines1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/lines1.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 9ed41d2b626b344d2bd96a4f792485b5 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/lion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/lion.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/lion.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 8a395d64ef14b443a87fd383c19bb58c 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/none.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/none.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/none.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 4769247eb286a4faabbd21567ef7d5d2 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/path1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/path1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/path1.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 2268932f9d8c84ae28ffd0a78885f00e 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/path2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/path2.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/path2.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 1805eee13a2014d5ea9a586e0d0560ee 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/path3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/path3.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/path3.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: a040285ffb356451198844403cc242b3 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/polyline1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/polyline1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/polyline1.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: bdd68603fbf20464fa6d8ecffbb07690 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/polyline2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/polyline2.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/polyline2.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 421a8db9b6ed841c394c51edd695620e 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/radgrad1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/radgrad1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/radgrad1.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: c7b0d77386e2b426dbc764553e601799 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/rect1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/rect1.svg -------------------------------------------------------------------------------- /Assets/SVGFiles/rect1.svg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/rect1.svg.meta -------------------------------------------------------------------------------- /Assets/SVGFiles/rect1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/rect1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/rect1.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: bd68f1af0cd774dc4bde7d2e161fea35 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/rect2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/rect2.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/rect2.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: c2545c8d9994746c092fb7a7023206e2 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/test1.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/test1.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/test1.txt.meta -------------------------------------------------------------------------------- /Assets/SVGFiles/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/test2.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/test2.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 97cc7aa9aaa064cb38b78afc029b5aac 3 | -------------------------------------------------------------------------------- /Assets/SVGFiles/tiger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/SVGFiles/tiger.txt -------------------------------------------------------------------------------- /Assets/SVGFiles/tiger.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 5526ef80d6d7342859fad7964808fdca 3 | -------------------------------------------------------------------------------- /Assets/Test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/Test.unity -------------------------------------------------------------------------------- /Assets/Test.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 72ae05d36e51449b0953c3184b18d653 3 | -------------------------------------------------------------------------------- /Assets/UnityGUIExtensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnityGUIExtensions.meta -------------------------------------------------------------------------------- /Assets/UnitySVG.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Extensions.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Extensions.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 43ce94a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 83de94a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 878f94a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 6b70a4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGArcAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGArcAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGArcAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: ba81054021fcb4662880c509b914471b 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGCircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGCircle.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGCircle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 380499dc426414b3eaa324a44ab2da06 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGCubicAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGCubicAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGCubicAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 7b411c68dc084478d83f468252f77ba8 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGEllipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGEllipse.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGEllipse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 6ca78d12aa6ad4e7bbd2b8f492c0e4e9 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGLineTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGLineTo.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGLineTo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGLineTo.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGMoveTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGMoveTo.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGMoveTo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGMoveTo.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGPolyLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGPolyLine.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGPolyLine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGPolyLine.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGPolygon.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGPolygon.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGPolygon.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGQuadraticAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGQuadraticAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGQuadraticAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 06e81d861b5bd4d1daf673947f95f53b 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGRect.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGRect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/BasicType/SVGGRect.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 399c088f42a0e439a8496ad381d37749 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/ISVGDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/ISVGDevice.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/ISVGDevice.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/ISVGDevice.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/SVGDeviceFast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/SVGDeviceFast.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/SVGDeviceFast.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: d5c6b3a8c2afa4255bf63e48acf25e9a 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/SVGDeviceSmall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/SVGDeviceSmall.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/SVGDeviceSmall.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/RenderingDevices/SVGDeviceSmall.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGBasicDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/SVGBasicDraw.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGBasicDraw.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: ad8691ad30aea46b79363aa335981238 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphics.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: d6b07b7adb54544308ed236c59c56d5e 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsFill.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsFill.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 2cf9037eaf1584c05a217166a6003430 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsPath.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsPath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: fbaa5b797a3f74caaadcf5401c96e167 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsStroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsStroke.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGGraphicsStroke.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: a334b83904b414926ab32f8c851d16b9 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGLinearGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/SVGLinearGradientBrush.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGLinearGradientBrush.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 9085dec39bfbd44d8b33cd0051736df7 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGRadialGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/RenderingEngine/SVGRadialGradientBrush.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/RenderingEngine/SVGRadialGradientBrush.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 9dfbeb88b4e5b4f1ab687fc2e191c704 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 8ca2a4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 3c53a4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 2714a4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGBasicElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGBasicElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGBasicElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGBasicElement.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGCircleElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGCircleElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGCircleElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 758082430f9644092985eec7f5ddb372 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGEllipseElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGEllipseElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGEllipseElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: a2bc70aeb171e4ce1929950dcfa578f7 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGLineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGLineElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGLineElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 297daae153b5843be80d0669a553faaa 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGPolygonElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGPolygonElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGPolygonElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 49f635bd579a240108976538d83cbaa7 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGPolylineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGPolylineElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGPolylineElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 15af5e10b0d1a4e48b4cf38d4a9537d0 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGRectElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGRectElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicShapes/SVGRectElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 77b819b47807149ac91314cd15c0fab1 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: d855a4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGColor.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 2f1b12114bdc245079e618b539314d07 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGLength.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGLength.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: f3d08beca8f154357896be1c1574affc 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGPaintable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGPaintable.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGPaintable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: ab6a956192fbe4116a407a477fcc9de3 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGTransformable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGTransformable.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/BasicTypes/SVGTransformable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 3c0154a4c8db64dcbb16fc691a9f45dd 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 1a07a4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/Matrix2x3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/Matrix2x3.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/Matrix2x3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: b762a9f8a98e343d2b6517b865fad1c7 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/SVGTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/SVGTransform.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/SVGTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 73fb19954f55c41469ca4a891e89237d 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/SVGTransformList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/SVGTransformList.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/CoordinateTransformUnits/SVGTransformList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 5a4367b24dcce4a168354870cba6f04d 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: ac28a4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGDocument.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGDocument.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 351f8e4d9caca45deb72797bd9accd88 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGGElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGGElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGGElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 92743eda825db45f6a0725f43f95c520 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGSVGElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGSVGElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/DocumentStructure/SVGSVGElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 62c14cc19744a449d861e2dc24d17e1a 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: b519a4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGGradientElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGGradientElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGGradientElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 23c55137f8cff4504ad7ade00514723b 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGLinearGradientElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGLinearGradientElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGLinearGradientElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 888d54f7bc6bb482ca16f0bd23127dec 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGRadialGradientElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGRadialGradientElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGRadialGradientElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 6ca1ed628a6764b268c49aecf1d5779f 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGStopElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGStopElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/GradientsNPatterns/SVGStopElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 9eca5f7bd51d74ad1adbfd5813ee1d60 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: a40aa4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: be5ba4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGDrawable.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGDrawable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 8c5161da6c9f74a89a45bde33685326e 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGDrawableSeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGDrawableSeg.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGDrawableSeg.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: df377ead808a74361af6bd1093a36c54 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGPathSegment.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGPathSegment.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/Interfaces/ISVGPathSegment.cs.meta -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathElement.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 88a9fccb49d2f4ee3b758e27335d83e5 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSeg.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSeg.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 2b70f56a6b52646feb27c50962075d93 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegArcAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegArcAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegArcAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 92c1b32b014fb480cbe35fc55c1ce6f8 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegArcRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegArcRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegArcRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 1f940484fe758429faf4660dab138224 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegClosePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegClosePath.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegClosePath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 7a89d3f4073fb49ffae831dfe556df98 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubic.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: a2d7cc7c68bf24b5bab0fefbb0851fa5 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 8af6997e3963c4b7d9aa8bc78a51ecff 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 421a648b36a774323b5a89b88ace9e04 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicSmoothAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicSmoothAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicSmoothAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: b32c10b86636e47d8a5e702b636c2338 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicSmoothRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicSmoothRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoCubicSmoothRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 2a88dc4645b3c4158bdba5f715545423 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadratic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadratic.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadratic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 7ccc78f38046e46959a0bd5e500242c4 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: e78801a1b0be646ac8714c8245722e9d 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 5c1257a4d950c473abf4fc913cce080a 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticSmoothAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticSmoothAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticSmoothAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 09dca972c6d4b4ee1bce0e37509c23d0 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticSmoothRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticSmoothRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegCurvetoQuadraticSmoothRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 50dda37f18ebe40f38c78aa0f2114ffc 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: c369e9d2111a44839a555ece2f8cc0c7 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoHorizontalAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoHorizontalAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoHorizontalAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 5ca1e8b4086414bbb99559fc824a2aa2 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoHorizontalRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoHorizontalRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoHorizontalRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 7e25b3aae953f474d9178fed3ebeca13 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 598fbae76f429454dbcd251986937ba2 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoVerticalAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoVerticalAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoVerticalAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: edbd2f73ed0ca498a81fed71c51fb3a6 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoVerticalRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoVerticalRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegLinetoVerticalRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: df2e19d82da4d426a816cb5475896b60 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegList.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: c3a5a12d5cfdf459a96bd7602960e338 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegMovetoAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegMovetoAbs.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegMovetoAbs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: fbe527def63804b9d8c621e098c769ed 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegMovetoRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegMovetoRel.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Paths/SVGPathSegMovetoRel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 5ca7104214e9e4b86bea3ad704c56994 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 62bda4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/DOMException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Utilities/DOMException.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/DOMException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: fdd76c284ee7d45f5840b0009dba0fe7 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/LiteStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Utilities/LiteStack.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/LiteStack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: c9cea4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGColorExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGColorExtractor.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGColorExtractor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: e59e39c6de3a64773a555ba42a3d4447 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGException.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 0cef747541703440e86340b5cca84580 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGStringExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGStringExtractor.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/SVG/DOM/Utilities/SVGStringExtractor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: c74d09cf2a00d43b08571a2f5c7fdc43 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/XMLParser.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 7b0fa4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/XMLParser/SVGParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/XMLParser/SVGParser.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/XMLParser/SVGParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 8b3aa7b3f9ae941fba31c7e5bbb28275 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/XMLParser/SmallXmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Implementation/XMLParser/SmallXmlParser.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Implementation/XMLParser/SmallXmlParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 47bfa4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 74ffa4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Interface/RenderingEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 7b70b4a6dd117063d000a35b613f5639 3 | -------------------------------------------------------------------------------- /Assets/UnitySVG/Interface/RenderingEngine/ISVGPathDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/Assets/UnitySVG/Interface/RenderingEngine/ISVGPathDraw.cs -------------------------------------------------------------------------------- /Assets/UnitySVG/Interface/RenderingEngine/ISVGPathDraw.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 5dae9f92bb40f445cb3b4fb004e0beab 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.5.2f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/README.md -------------------------------------------------------------------------------- /SharpVectorGraphics.0.4.alpha.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/SharpVectorGraphics.0.4.alpha.zip -------------------------------------------------------------------------------- /UnitySVG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/UnitySVG.sln -------------------------------------------------------------------------------- /UnitySVG.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/UnitySVG.sublime-project -------------------------------------------------------------------------------- /benchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/benchmarks.txt -------------------------------------------------------------------------------- /bin/format_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/bin/format_code -------------------------------------------------------------------------------- /bin/paket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJoy/UnitySVG/HEAD/bin/paket -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- 1 | source https://www.nuget.org/api/v2 2 | -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------