├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── Media ├── arrow-corner-up-right.png └── squircle-animation.gif ├── README.md ├── XGraphics.sln ├── XGraphics.sln.DotSettings ├── azure-pipelines.yml ├── nuspec ├── XGraphics.SkiaRenderer.nuspec ├── XGraphics.XamarinForms.nuspec └── XGraphics.nuspec ├── samples ├── Directory.Build.props ├── WPFDemo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── WPFDemo.csproj ├── XamarinFormsDemo │ ├── XamarinFormsDemo.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ │ └── xamarin_logo.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.xml │ │ │ │ └── Toolbar.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── icon.xml │ │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── XamarinFormsDemo.Android.csproj │ ├── XamarinFormsDemo.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── tab_about.png │ │ │ ├── tab_about@2x.png │ │ │ ├── tab_about@3x.png │ │ │ ├── tab_feed.png │ │ │ ├── tab_feed@2x.png │ │ │ ├── tab_feed@3x.png │ │ │ ├── xamarin_logo.png │ │ │ ├── xamarin_logo@2x.png │ │ │ └── xamarin_logo@3x.png │ │ └── XamarinFormsDemo.iOS.csproj │ └── XamarinFormsDemo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Models │ │ └── Item.cs │ │ ├── Services │ │ ├── IDataStore.cs │ │ └── MockDataStore.cs │ │ ├── ViewModels │ │ ├── AboutViewModel.cs │ │ ├── BaseViewModel.cs │ │ ├── ItemDetailViewModel.cs │ │ └── ItemsViewModel.cs │ │ ├── Views │ │ ├── AboutPage.xaml │ │ ├── AboutPage.xaml.cs │ │ ├── DemoPage.xaml │ │ ├── DemoPage.xaml.cs │ │ ├── ItemDetailPage.xaml │ │ ├── ItemDetailPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NewItemPage.xaml │ │ └── NewItemPage.xaml.cs │ │ └── XamarinFormsDemo.csproj └── sample-assets │ ├── pumpkin.ai │ └── pumpkin.xaml ├── src ├── Directory.Build.props ├── SkiaRenderer │ ├── XGraphics.SkiaRenderer.Android │ │ ├── AndroidImageLoader.cs │ │ ├── AndroidSkiaXGraphicsRenderer.cs │ │ ├── AndroidXGraphicsView.cs │ │ ├── GLTextureView.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── SKGLTextureViewRenderer.cs │ │ └── XGraphics.SkiaRenderer.Android.csproj │ ├── XGraphics.SkiaRenderer.iOS │ │ ├── GlesInterop │ │ │ └── Gles.cs │ │ ├── IOSImageLoader.cs │ │ ├── IOSSkiaXGraphicsRenderer.cs │ │ ├── IOSXGraphicsView.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SKGLView.cs │ │ └── XGraphics.SkiaRenderer.iOS.csproj │ └── XGraphics.SkiaRenderer │ │ ├── SkiaPainter.cs │ │ ├── SkiaPathFigure.cs │ │ ├── SkiaXGraphicsRenderer.cs │ │ └── XGraphics.SkiaRenderer.csproj ├── XGraphics.CLI │ ├── Program.cs │ └── XGraphics.CLI.csproj ├── XGraphics.DataModelGenerator │ ├── CompilationUnitGenerator.cs │ ├── OutputType.cs │ ├── Program.cs │ ├── UserViewableException.cs │ └── XGraphics.DataModelGenerator.csproj ├── XGraphics.Tools │ ├── XGraphics.Tools.csproj │ └── XGraphicsExport │ │ └── XGraphicsExporterer.cs ├── XGraphics.WPF │ ├── BitmapImageSource.cs │ ├── Brushes │ │ ├── Brush.cs │ │ ├── GradientBrush.cs │ │ ├── GradientStop.cs │ │ ├── LinearGradientBrush.cs │ │ ├── RadialGradientBrush.cs │ │ └── SolidColorBrush.cs │ ├── Canvas.cs │ ├── Converters │ │ ├── BrushTypeConverter.cs │ │ ├── ColorTypeConverter.cs │ │ ├── GeometryTypeConverter.cs │ │ ├── PointTypeConverter.cs │ │ ├── PointsTypeConverter.cs │ │ ├── SizeTypeConverter.cs │ │ └── TypeConverterBase.cs │ ├── DependencyObjectWithCascadingNotifications.cs │ ├── Geometries │ │ ├── ArcSegment.cs │ │ ├── BezierSegment.cs │ │ ├── Geometry.cs │ │ ├── GeometryFactory.cs │ │ ├── LineSegment.cs │ │ ├── PathFigure.cs │ │ ├── PathGeometry.cs │ │ ├── PathSegment.cs │ │ ├── PolyBezierSegment.cs │ │ ├── PolyLineSegment.cs │ │ ├── PolyQuadraticBezierSegment.cs │ │ └── QuadraticBezierSegment.cs │ ├── GraphicsElement.cs │ ├── Image.cs │ ├── ImageSource.cs │ ├── LoadableImageSource.cs │ ├── PropertyUtils.cs │ ├── Shapes │ │ ├── Ellipse.cs │ │ ├── Line.cs │ │ ├── Path.cs │ │ ├── Polygon.cs │ │ ├── Polyline.cs │ │ ├── Rectangle.cs │ │ └── Shape.cs │ ├── Transforms │ │ ├── RotateTransform.cs │ │ ├── ScaleTransform.cs │ │ ├── Transform.cs │ │ ├── TransformGroup.cs │ │ └── TranslateTransform.cs │ ├── VectorImageSource.cs │ ├── WpfImageLoader.cs │ ├── Wrapper │ │ ├── Color.cs │ │ ├── DataSource.cs │ │ ├── Point.cs │ │ ├── Points.cs │ │ └── Size.cs │ ├── XCanvas.cs │ └── XGraphics.WPF.csproj ├── XGraphics │ ├── Brushes │ │ ├── BrushMappingMode.cs │ │ ├── GradientSpreadMethod.cs │ │ ├── IBrush.cs │ │ ├── IGradientBrush.cs │ │ ├── IGradientStop.cs │ │ ├── ILinearGradientBrush.cs │ │ ├── IRadialGradientBrush.cs │ │ └── ISolidColorBrush.cs │ ├── Color.cs │ ├── Colors.cs │ ├── Converters │ │ ├── ColorConverter.cs │ │ ├── Path │ │ │ ├── PathConverter.cs │ │ │ ├── PathStreamGeometryContext.cs │ │ │ └── StreamGeometryContext.cs │ │ ├── PointConverter.cs │ │ ├── PointsConverter.cs │ │ ├── SizeConverter.cs │ │ └── TokenizerHelper.cs │ ├── FillRule.cs │ ├── Geometries │ │ ├── IArcSegment.cs │ │ ├── IBezierSegment.cs │ │ ├── IGeometry.cs │ │ ├── IGeometryFactory.cs │ │ ├── ILineSegment.cs │ │ ├── IPathFigure.cs │ │ ├── IPathGeometry.cs │ │ ├── IPathSegment.cs │ │ ├── IPolyBezierSegment.cs │ │ ├── IPolyLineSegment.cs │ │ ├── IPolyQuadraticBezierSegment.cs │ │ └── IQuadraticBezierSegment.cs │ ├── GraphicsModelObjectAttribute.cs │ ├── ICanvas.cs │ ├── IGraphicsElement.cs │ ├── INotifyObjectOrSubobjectChanged.cs │ ├── IXCanvas.cs │ ├── ImageLoading │ │ ├── Cache │ │ │ ├── CacheEntry.cs │ │ │ ├── CacheType.cs │ │ │ ├── DownloadCache.cs │ │ │ ├── IDiskCache.cs │ │ │ ├── IDownloadCache.cs │ │ │ ├── IMemoryCache.cs │ │ │ ├── LruCache.cs │ │ │ └── SimpleDiskCache.cs │ │ ├── Concurrency │ │ │ ├── FastPriorityQueue │ │ │ │ ├── GenericPriorityQueue.cs │ │ │ │ ├── GenericPriorityQueueNode.cs │ │ │ │ ├── IFixedSizePriorityQueue.cs │ │ │ │ ├── IPriorityQueue.cs │ │ │ │ ├── QueueComparer.cs │ │ │ │ └── SimplePriorityQueue.cs │ │ │ ├── PendingTasksQueue.cs │ │ │ └── ThreadSafeCollection.cs │ │ ├── Exceptions │ │ │ ├── DownloadAggregateException.cs │ │ │ ├── DownloadException.cs │ │ │ ├── DownloadHeadersTimeoutException.cs │ │ │ ├── DownloadHttpStatusCodeException.cs │ │ │ └── DownloadReadTimeoutException.cs │ │ ├── Extensions │ │ │ └── DisposableExtensions.cs │ │ ├── Helpers │ │ │ ├── ConsoleMiniLogger.cs │ │ │ ├── EmptyPlatformPerformance.cs │ │ │ ├── IMainThreadDispatcher.cs │ │ │ ├── IMiniLogger.cs │ │ │ ├── IPlatformPerformance.cs │ │ │ ├── MD5Helper.cs │ │ │ └── Retry.cs │ │ ├── IO │ │ │ └── FileStore.cs │ │ ├── ImageLoader.cs │ │ ├── ImageLoaderConfiguration.cs │ │ └── Work │ │ │ ├── DownloadInformation.cs │ │ │ ├── IImageLoader.cs │ │ │ ├── IImageLoaderTask.cs │ │ │ ├── IScheduledWork.cs │ │ │ ├── IWorkScheduler.cs │ │ │ ├── ImageLoaderTask.cs │ │ │ ├── LoadingPriority.cs │ │ │ └── WorkScheduler.cs │ ├── Images │ │ ├── BitmapLoadedImage.cs │ │ ├── DataSource.cs │ │ ├── EmbeddedResourceSource.cs │ │ ├── IBitmapImageSource.cs │ │ ├── IImage.cs │ │ ├── IImageSource.cs │ │ ├── ILoadableImageSource.cs │ │ ├── ISvgImageSource.cs │ │ ├── IVectorImageSource.cs │ │ ├── ImageDecoder.cs │ │ ├── LoadedImage.cs │ │ ├── LoadingStatus.cs │ │ ├── UriSource.cs │ │ └── VectorLoadedImage.cs │ ├── ModelDefaultValueAttribute.cs │ ├── Point.cs │ ├── Points.cs │ ├── Shapes │ │ ├── IEllipse.cs │ │ ├── ILine.cs │ │ ├── IPath.cs │ │ ├── IPolygon.cs │ │ ├── IPolyline.cs │ │ ├── IRectangle.cs │ │ ├── IShape.cs │ │ ├── PenLineCap.cs │ │ └── PenLineJoin.cs │ ├── Size.cs │ ├── StandardModel │ │ ├── BitmapImageSource.cs │ │ ├── Brushes │ │ │ ├── Brush.cs │ │ │ ├── GradientBrush.cs │ │ │ ├── GradientStop.cs │ │ │ ├── LinearGradientBrush.cs │ │ │ ├── RadialGradientBrush.cs │ │ │ └── SolidColorBrush.cs │ │ ├── Canvas.cs │ │ ├── Geometries │ │ │ ├── ArcSegment.cs │ │ │ ├── BezierSegment.cs │ │ │ ├── Geometry.cs │ │ │ ├── LineSegment.cs │ │ │ ├── PathFigure.cs │ │ │ ├── PathGeometry.cs │ │ │ ├── PathSegment.cs │ │ │ ├── PolyBezierSegment.cs │ │ │ ├── PolyLineSegment.cs │ │ │ ├── PolyQuadraticBezierSegment.cs │ │ │ └── QuadraticBezierSegment.cs │ │ ├── GraphicsElement.cs │ │ ├── Image.cs │ │ ├── ImageSource.cs │ │ ├── LoadableImageSource.cs │ │ ├── ObjectWithCascadingNotifications.cs │ │ ├── Shapes │ │ │ ├── Ellipse.cs │ │ │ ├── Line.cs │ │ │ ├── Path.cs │ │ │ ├── Polygon.cs │ │ │ ├── Polyline.cs │ │ │ ├── Rectangle.cs │ │ │ └── Shape.cs │ │ ├── SvgImageSource.cs │ │ ├── Transforms │ │ │ ├── RotateTransform.cs │ │ │ ├── ScaleTransform.cs │ │ │ ├── Transform.cs │ │ │ ├── TransformGroup.cs │ │ │ └── TranslateTransform.cs │ │ ├── VectorImageSource.cs │ │ └── XCanvas.cs │ ├── SvgImporter │ │ ├── ColorHelper.cs │ │ ├── StyleableProperties.cs │ │ ├── SvgImporter.cs │ │ └── ViewBox.cs │ ├── SweepDirection.cs │ ├── Transforms │ │ ├── IRotateTransform.cs │ │ ├── IScaleTransform.cs │ │ ├── ITransform.cs │ │ ├── ITransformGroup.cs │ │ └── ITranslateTransform.cs │ ├── XGraphics.csproj │ ├── XGraphicsCollection.cs │ └── XGraphicsRenderer.cs ├── XamarinForms │ ├── XGraphics.XamarinForms.Android │ │ ├── Platform.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── XGraphics.XamarinForms.Android.csproj │ │ └── XGraphicsViewRenderer.cs │ ├── XGraphics.XamarinForms.iOS │ │ ├── Platform.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── XGraphics.XamarinForms.iOS.csproj │ │ └── XGraphicsViewRenderer.cs │ └── XGraphics.XamarinForms │ │ ├── BindableObjectWithCascadingNotifications.cs │ │ ├── BitmapImageSource.cs │ │ ├── Brushes │ │ ├── Brush.cs │ │ ├── GradientBrush.cs │ │ ├── GradientStop.cs │ │ ├── LinearGradientBrush.cs │ │ ├── RadialGradientBrush.cs │ │ └── SolidColorBrush.cs │ │ ├── Canvas.cs │ │ ├── Converters │ │ ├── BrushTypeConverter.cs │ │ ├── ColorTypeConverter.cs │ │ ├── GeometryTypeConverter.cs │ │ ├── PointTypeConverter.cs │ │ ├── PointsTypeConverter.cs │ │ ├── SizeTypeConverter.cs │ │ └── TypeConverterBase.cs │ │ ├── Geometries │ │ ├── ArcSegment.cs │ │ ├── BezierSegment.cs │ │ ├── Geometry.cs │ │ ├── GeometryFactory.cs │ │ ├── LineSegment.cs │ │ ├── PathFigure.cs │ │ ├── PathGeometry.cs │ │ ├── PathSegment.cs │ │ ├── PolyBezierSegment.cs │ │ ├── PolyLineSegment.cs │ │ ├── PolyQuadraticBezierSegment.cs │ │ └── QuadraticBezierSegment.cs │ │ ├── GraphicsElement.cs │ │ ├── Image.cs │ │ ├── ImageSource.cs │ │ ├── LoadableImageSource.cs │ │ ├── PropertyUtils.cs │ │ ├── Shapes │ │ ├── Ellipse.cs │ │ ├── Line.cs │ │ ├── Path.cs │ │ ├── Polygon.cs │ │ ├── Polyline.cs │ │ ├── Rectangle.cs │ │ └── Shape.cs │ │ ├── Transforms │ │ ├── RotateTransform.cs │ │ ├── ScaleTransform.cs │ │ ├── Transform.cs │ │ ├── TransformGroup.cs │ │ └── TranslateTransform.cs │ │ ├── VectorImageSource.cs │ │ ├── Wrapper │ │ ├── Color.cs │ │ ├── DataSource.cs │ │ ├── Point.cs │ │ ├── Points.cs │ │ └── Size.cs │ │ ├── XCanvas.cs │ │ └── XGraphics.XamarinForms.csproj └── strongname.snk └── version.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/arrow-corner-up-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/Media/arrow-corner-up-right.png -------------------------------------------------------------------------------- /Media/squircle-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/Media/squircle-animation.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/README.md -------------------------------------------------------------------------------- /XGraphics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/XGraphics.sln -------------------------------------------------------------------------------- /XGraphics.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/XGraphics.sln.DotSettings -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /nuspec/XGraphics.SkiaRenderer.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/nuspec/XGraphics.SkiaRenderer.nuspec -------------------------------------------------------------------------------- /nuspec/XGraphics.XamarinForms.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/nuspec/XGraphics.XamarinForms.nuspec -------------------------------------------------------------------------------- /nuspec/XGraphics.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/nuspec/XGraphics.nuspec -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/WPFDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/WPFDemo/App.xaml -------------------------------------------------------------------------------- /samples/WPFDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/WPFDemo/App.xaml.cs -------------------------------------------------------------------------------- /samples/WPFDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/WPFDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/WPFDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/WPFDemo/MainWindow.xaml -------------------------------------------------------------------------------- /samples/WPFDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/WPFDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/WPFDemo/WPFDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/WPFDemo/WPFDemo.csproj -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/MainActivity.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/drawable/xamarin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/drawable/xamarin_logo.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.Android/XamarinFormsDemo.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.Android/XamarinFormsDemo.Android.csproj -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Entitlements.plist -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Info.plist -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Main.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_about.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_about@2x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_about@3x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_feed.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_feed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_feed@2x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_feed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/tab_feed@3x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/xamarin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/xamarin_logo.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/xamarin_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/xamarin_logo@2x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/xamarin_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/Resources/xamarin_logo@3x.png -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo.iOS/XamarinFormsDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo.iOS/XamarinFormsDemo.iOS.csproj -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/App.xaml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/App.xaml.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Models/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Models/Item.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Services/IDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Services/IDataStore.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Services/MockDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Services/MockDataStore.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/ViewModels/ItemDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/ViewModels/ItemDetailViewModel.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/ViewModels/ItemsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/ViewModels/ItemsViewModel.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/AboutPage.xaml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/DemoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/DemoPage.xaml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/DemoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/DemoPage.xaml.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/ItemDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/ItemDetailPage.xaml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/ItemDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/ItemDetailPage.xaml.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/MainPage.xaml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/NewItemPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/NewItemPage.xaml -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/Views/NewItemPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/Views/NewItemPage.xaml.cs -------------------------------------------------------------------------------- /samples/XamarinFormsDemo/XamarinFormsDemo/XamarinFormsDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/XamarinFormsDemo/XamarinFormsDemo/XamarinFormsDemo.csproj -------------------------------------------------------------------------------- /samples/sample-assets/pumpkin.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/sample-assets/pumpkin.ai -------------------------------------------------------------------------------- /samples/sample-assets/pumpkin.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/samples/sample-assets/pumpkin.xaml -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/AndroidImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/AndroidImageLoader.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/AndroidSkiaXGraphicsRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/AndroidSkiaXGraphicsRenderer.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/AndroidXGraphicsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/AndroidXGraphicsView.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/GLTextureView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/GLTextureView.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/Resources/values/strings.xml -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/SKGLTextureViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/SKGLTextureViewRenderer.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.Android/XGraphics.SkiaRenderer.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.Android/XGraphics.SkiaRenderer.Android.csproj -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/GlesInterop/Gles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/GlesInterop/Gles.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/IOSImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/IOSImageLoader.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/IOSSkiaXGraphicsRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/IOSSkiaXGraphicsRenderer.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/IOSXGraphicsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/IOSXGraphicsView.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/SKGLView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/SKGLView.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/XGraphics.SkiaRenderer.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer.iOS/XGraphics.SkiaRenderer.iOS.csproj -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer/SkiaPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer/SkiaPainter.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer/SkiaPathFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer/SkiaPathFigure.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer/SkiaXGraphicsRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer/SkiaXGraphicsRenderer.cs -------------------------------------------------------------------------------- /src/SkiaRenderer/XGraphics.SkiaRenderer/XGraphics.SkiaRenderer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/SkiaRenderer/XGraphics.SkiaRenderer/XGraphics.SkiaRenderer.csproj -------------------------------------------------------------------------------- /src/XGraphics.CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.CLI/Program.cs -------------------------------------------------------------------------------- /src/XGraphics.CLI/XGraphics.CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.CLI/XGraphics.CLI.csproj -------------------------------------------------------------------------------- /src/XGraphics.DataModelGenerator/CompilationUnitGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.DataModelGenerator/CompilationUnitGenerator.cs -------------------------------------------------------------------------------- /src/XGraphics.DataModelGenerator/OutputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.DataModelGenerator/OutputType.cs -------------------------------------------------------------------------------- /src/XGraphics.DataModelGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.DataModelGenerator/Program.cs -------------------------------------------------------------------------------- /src/XGraphics.DataModelGenerator/UserViewableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.DataModelGenerator/UserViewableException.cs -------------------------------------------------------------------------------- /src/XGraphics.DataModelGenerator/XGraphics.DataModelGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.DataModelGenerator/XGraphics.DataModelGenerator.csproj -------------------------------------------------------------------------------- /src/XGraphics.Tools/XGraphics.Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.Tools/XGraphics.Tools.csproj -------------------------------------------------------------------------------- /src/XGraphics.Tools/XGraphicsExport/XGraphicsExporterer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.Tools/XGraphicsExport/XGraphicsExporterer.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/BitmapImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/BitmapImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Brushes/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Brushes/Brush.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Brushes/GradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Brushes/GradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Brushes/GradientStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Brushes/GradientStop.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Brushes/LinearGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Brushes/LinearGradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Brushes/RadialGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Brushes/RadialGradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Brushes/SolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Brushes/SolidColorBrush.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Canvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Canvas.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Converters/BrushTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Converters/BrushTypeConverter.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Converters/ColorTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Converters/ColorTypeConverter.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Converters/GeometryTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Converters/GeometryTypeConverter.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Converters/PointTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Converters/PointTypeConverter.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Converters/PointsTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Converters/PointsTypeConverter.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Converters/SizeTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Converters/SizeTypeConverter.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Converters/TypeConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Converters/TypeConverterBase.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/DependencyObjectWithCascadingNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/DependencyObjectWithCascadingNotifications.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/ArcSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/ArcSegment.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/BezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/BezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/Geometry.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/GeometryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/GeometryFactory.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/LineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/LineSegment.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/PathFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/PathFigure.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/PathGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/PathGeometry.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/PathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/PathSegment.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/PolyBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/PolyBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/PolyLineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/PolyLineSegment.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/PolyQuadraticBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/PolyQuadraticBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Geometries/QuadraticBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Geometries/QuadraticBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/GraphicsElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/GraphicsElement.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Image.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/ImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/ImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/LoadableImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/LoadableImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/PropertyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/PropertyUtils.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Shapes/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Shapes/Ellipse.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Shapes/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Shapes/Line.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Shapes/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Shapes/Path.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Shapes/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Shapes/Polygon.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Shapes/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Shapes/Polyline.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Shapes/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Shapes/Rectangle.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Shapes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Shapes/Shape.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Transforms/RotateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Transforms/RotateTransform.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Transforms/ScaleTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Transforms/ScaleTransform.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Transforms/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Transforms/Transform.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Transforms/TransformGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Transforms/TransformGroup.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Transforms/TranslateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Transforms/TranslateTransform.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/VectorImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/VectorImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/WpfImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/WpfImageLoader.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Wrapper/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Wrapper/Color.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Wrapper/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Wrapper/DataSource.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Wrapper/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Wrapper/Point.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Wrapper/Points.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Wrapper/Points.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/Wrapper/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/Wrapper/Size.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/XCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/XCanvas.cs -------------------------------------------------------------------------------- /src/XGraphics.WPF/XGraphics.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics.WPF/XGraphics.WPF.csproj -------------------------------------------------------------------------------- /src/XGraphics/Brushes/BrushMappingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Brushes/BrushMappingMode.cs -------------------------------------------------------------------------------- /src/XGraphics/Brushes/GradientSpreadMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Brushes/GradientSpreadMethod.cs -------------------------------------------------------------------------------- /src/XGraphics/Brushes/IBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Brushes/IBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/Brushes/IGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Brushes/IGradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/Brushes/IGradientStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Brushes/IGradientStop.cs -------------------------------------------------------------------------------- /src/XGraphics/Brushes/ILinearGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Brushes/ILinearGradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/Brushes/IRadialGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Brushes/IRadialGradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/Brushes/ISolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Brushes/ISolidColorBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Color.cs -------------------------------------------------------------------------------- /src/XGraphics/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Colors.cs -------------------------------------------------------------------------------- /src/XGraphics/Converters/ColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Converters/ColorConverter.cs -------------------------------------------------------------------------------- /src/XGraphics/Converters/Path/PathConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Converters/Path/PathConverter.cs -------------------------------------------------------------------------------- /src/XGraphics/Converters/Path/PathStreamGeometryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Converters/Path/PathStreamGeometryContext.cs -------------------------------------------------------------------------------- /src/XGraphics/Converters/Path/StreamGeometryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Converters/Path/StreamGeometryContext.cs -------------------------------------------------------------------------------- /src/XGraphics/Converters/PointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Converters/PointConverter.cs -------------------------------------------------------------------------------- /src/XGraphics/Converters/PointsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Converters/PointsConverter.cs -------------------------------------------------------------------------------- /src/XGraphics/Converters/SizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Converters/SizeConverter.cs -------------------------------------------------------------------------------- /src/XGraphics/Converters/TokenizerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Converters/TokenizerHelper.cs -------------------------------------------------------------------------------- /src/XGraphics/FillRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/FillRule.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IArcSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IArcSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IGeometry.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IGeometryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IGeometryFactory.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/ILineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/ILineSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IPathFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IPathFigure.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IPathGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IPathGeometry.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IPathSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IPolyBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IPolyBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IPolyLineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IPolyLineSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IPolyQuadraticBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IPolyQuadraticBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/Geometries/IQuadraticBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Geometries/IQuadraticBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/GraphicsModelObjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/GraphicsModelObjectAttribute.cs -------------------------------------------------------------------------------- /src/XGraphics/ICanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ICanvas.cs -------------------------------------------------------------------------------- /src/XGraphics/IGraphicsElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/IGraphicsElement.cs -------------------------------------------------------------------------------- /src/XGraphics/INotifyObjectOrSubobjectChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/INotifyObjectOrSubobjectChanged.cs -------------------------------------------------------------------------------- /src/XGraphics/IXCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/IXCanvas.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Cache/CacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Cache/CacheEntry.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Cache/CacheType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Cache/CacheType.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Cache/DownloadCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Cache/DownloadCache.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Cache/IDiskCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Cache/IDiskCache.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Cache/IDownloadCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Cache/IDownloadCache.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Cache/IMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Cache/IMemoryCache.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Cache/LruCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Cache/LruCache.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Cache/SimpleDiskCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Cache/SimpleDiskCache.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/GenericPriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/GenericPriorityQueue.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/GenericPriorityQueueNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/GenericPriorityQueueNode.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/IFixedSizePriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/IFixedSizePriorityQueue.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/IPriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/IPriorityQueue.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/QueueComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/QueueComparer.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/SimplePriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Concurrency/FastPriorityQueue/SimplePriorityQueue.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Concurrency/PendingTasksQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Concurrency/PendingTasksQueue.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Concurrency/ThreadSafeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Concurrency/ThreadSafeCollection.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Exceptions/DownloadAggregateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Exceptions/DownloadAggregateException.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Exceptions/DownloadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Exceptions/DownloadException.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Exceptions/DownloadHeadersTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Exceptions/DownloadHeadersTimeoutException.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Exceptions/DownloadHttpStatusCodeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Exceptions/DownloadHttpStatusCodeException.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Exceptions/DownloadReadTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Exceptions/DownloadReadTimeoutException.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Extensions/DisposableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Extensions/DisposableExtensions.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Helpers/ConsoleMiniLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Helpers/ConsoleMiniLogger.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Helpers/EmptyPlatformPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Helpers/EmptyPlatformPerformance.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Helpers/IMainThreadDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Helpers/IMainThreadDispatcher.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Helpers/IMiniLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Helpers/IMiniLogger.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Helpers/IPlatformPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Helpers/IPlatformPerformance.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Helpers/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Helpers/MD5Helper.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Helpers/Retry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Helpers/Retry.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/IO/FileStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/IO/FileStore.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/ImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/ImageLoader.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/ImageLoaderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/ImageLoaderConfiguration.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Work/DownloadInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Work/DownloadInformation.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Work/IImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Work/IImageLoader.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Work/IImageLoaderTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Work/IImageLoaderTask.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Work/IScheduledWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Work/IScheduledWork.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Work/IWorkScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Work/IWorkScheduler.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Work/ImageLoaderTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Work/ImageLoaderTask.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Work/LoadingPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Work/LoadingPriority.cs -------------------------------------------------------------------------------- /src/XGraphics/ImageLoading/Work/WorkScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ImageLoading/Work/WorkScheduler.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/BitmapLoadedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/BitmapLoadedImage.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/DataSource.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/EmbeddedResourceSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/EmbeddedResourceSource.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/IBitmapImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/IBitmapImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/IImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/IImage.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/IImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/IImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/ILoadableImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/ILoadableImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/ISvgImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/ISvgImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/IVectorImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/IVectorImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/ImageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/ImageDecoder.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/LoadedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/LoadedImage.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/LoadingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/LoadingStatus.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/UriSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/UriSource.cs -------------------------------------------------------------------------------- /src/XGraphics/Images/VectorLoadedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Images/VectorLoadedImage.cs -------------------------------------------------------------------------------- /src/XGraphics/ModelDefaultValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/ModelDefaultValueAttribute.cs -------------------------------------------------------------------------------- /src/XGraphics/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Point.cs -------------------------------------------------------------------------------- /src/XGraphics/Points.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Points.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/IEllipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/IEllipse.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/ILine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/ILine.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/IPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/IPath.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/IPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/IPolygon.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/IPolyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/IPolyline.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/IRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/IRectangle.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/IShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/IShape.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/PenLineCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/PenLineCap.cs -------------------------------------------------------------------------------- /src/XGraphics/Shapes/PenLineJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Shapes/PenLineJoin.cs -------------------------------------------------------------------------------- /src/XGraphics/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Size.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/BitmapImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/BitmapImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Brushes/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Brushes/Brush.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Brushes/GradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Brushes/GradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Brushes/GradientStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Brushes/GradientStop.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Brushes/LinearGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Brushes/LinearGradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Brushes/RadialGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Brushes/RadialGradientBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Brushes/SolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Brushes/SolidColorBrush.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Canvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Canvas.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/ArcSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/ArcSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/BezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/BezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/Geometry.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/LineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/LineSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/PathFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/PathFigure.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/PathGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/PathGeometry.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/PathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/PathSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/PolyBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/PolyBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/PolyLineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/PolyLineSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/PolyQuadraticBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/PolyQuadraticBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Geometries/QuadraticBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Geometries/QuadraticBezierSegment.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/GraphicsElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/GraphicsElement.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Image.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/ImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/ImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/LoadableImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/LoadableImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/ObjectWithCascadingNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/ObjectWithCascadingNotifications.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Shapes/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Shapes/Ellipse.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Shapes/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Shapes/Line.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Shapes/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Shapes/Path.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Shapes/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Shapes/Polygon.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Shapes/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Shapes/Polyline.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Shapes/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Shapes/Rectangle.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Shapes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Shapes/Shape.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/SvgImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/SvgImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Transforms/RotateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Transforms/RotateTransform.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Transforms/ScaleTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Transforms/ScaleTransform.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Transforms/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Transforms/Transform.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Transforms/TransformGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Transforms/TransformGroup.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/Transforms/TranslateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/Transforms/TranslateTransform.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/VectorImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/VectorImageSource.cs -------------------------------------------------------------------------------- /src/XGraphics/StandardModel/XCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/StandardModel/XCanvas.cs -------------------------------------------------------------------------------- /src/XGraphics/SvgImporter/ColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/SvgImporter/ColorHelper.cs -------------------------------------------------------------------------------- /src/XGraphics/SvgImporter/StyleableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/SvgImporter/StyleableProperties.cs -------------------------------------------------------------------------------- /src/XGraphics/SvgImporter/SvgImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/SvgImporter/SvgImporter.cs -------------------------------------------------------------------------------- /src/XGraphics/SvgImporter/ViewBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/SvgImporter/ViewBox.cs -------------------------------------------------------------------------------- /src/XGraphics/SweepDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/SweepDirection.cs -------------------------------------------------------------------------------- /src/XGraphics/Transforms/IRotateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Transforms/IRotateTransform.cs -------------------------------------------------------------------------------- /src/XGraphics/Transforms/IScaleTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Transforms/IScaleTransform.cs -------------------------------------------------------------------------------- /src/XGraphics/Transforms/ITransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Transforms/ITransform.cs -------------------------------------------------------------------------------- /src/XGraphics/Transforms/ITransformGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Transforms/ITransformGroup.cs -------------------------------------------------------------------------------- /src/XGraphics/Transforms/ITranslateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/Transforms/ITranslateTransform.cs -------------------------------------------------------------------------------- /src/XGraphics/XGraphics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/XGraphics.csproj -------------------------------------------------------------------------------- /src/XGraphics/XGraphicsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/XGraphicsCollection.cs -------------------------------------------------------------------------------- /src/XGraphics/XGraphicsRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XGraphics/XGraphicsRenderer.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.Android/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.Android/Platform.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.Android/Resources/values/strings.xml -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.Android/XGraphics.XamarinForms.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.Android/XGraphics.XamarinForms.Android.csproj -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.Android/XGraphicsViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.Android/XGraphicsViewRenderer.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.iOS/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.iOS/Platform.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.iOS/XGraphics.XamarinForms.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.iOS/XGraphics.XamarinForms.iOS.csproj -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms.iOS/XGraphicsViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms.iOS/XGraphicsViewRenderer.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/BindableObjectWithCascadingNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/BindableObjectWithCascadingNotifications.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/BitmapImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/BitmapImageSource.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Brushes/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Brushes/Brush.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Brushes/GradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Brushes/GradientBrush.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Brushes/GradientStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Brushes/GradientStop.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Brushes/LinearGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Brushes/LinearGradientBrush.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Brushes/RadialGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Brushes/RadialGradientBrush.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Brushes/SolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Brushes/SolidColorBrush.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Canvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Canvas.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Converters/BrushTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Converters/BrushTypeConverter.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Converters/ColorTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Converters/ColorTypeConverter.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Converters/GeometryTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Converters/GeometryTypeConverter.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Converters/PointTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Converters/PointTypeConverter.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Converters/PointsTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Converters/PointsTypeConverter.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Converters/SizeTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Converters/SizeTypeConverter.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Converters/TypeConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Converters/TypeConverterBase.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/ArcSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/ArcSegment.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/BezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/BezierSegment.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/Geometry.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/GeometryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/GeometryFactory.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/LineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/LineSegment.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/PathFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/PathFigure.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/PathGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/PathGeometry.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/PathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/PathSegment.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/PolyBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/PolyBezierSegment.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/PolyLineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/PolyLineSegment.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/PolyQuadraticBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/PolyQuadraticBezierSegment.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Geometries/QuadraticBezierSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Geometries/QuadraticBezierSegment.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/GraphicsElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/GraphicsElement.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Image.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/ImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/ImageSource.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/LoadableImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/LoadableImageSource.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/PropertyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/PropertyUtils.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Shapes/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Shapes/Ellipse.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Shapes/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Shapes/Line.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Shapes/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Shapes/Path.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Shapes/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Shapes/Polygon.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Shapes/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Shapes/Polyline.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Shapes/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Shapes/Rectangle.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Shapes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Shapes/Shape.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Transforms/RotateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Transforms/RotateTransform.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Transforms/ScaleTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Transforms/ScaleTransform.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Transforms/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Transforms/Transform.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Transforms/TransformGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Transforms/TransformGroup.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Transforms/TranslateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Transforms/TranslateTransform.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/VectorImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/VectorImageSource.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Wrapper/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Wrapper/Color.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Wrapper/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Wrapper/DataSource.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Wrapper/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Wrapper/Point.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Wrapper/Points.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Wrapper/Points.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/Wrapper/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/Wrapper/Size.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/XCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/XCanvas.cs -------------------------------------------------------------------------------- /src/XamarinForms/XGraphics.XamarinForms/XGraphics.XamarinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/XamarinForms/XGraphics.XamarinForms/XGraphics.XamarinForms.csproj -------------------------------------------------------------------------------- /src/strongname.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/src/strongname.snk -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/XGraphics/HEAD/version.json --------------------------------------------------------------------------------