├── .github └── workflows │ ├── SwiftPlot_Ubuntu.yml │ └── swift.yml ├── .gitignore ├── .swift-format ├── CONTRIBUTING.md ├── LICENSE ├── Notebooks ├── LineChart.ipynb └── Machine Learning with Swift for TensorFlow and SwiftPlot.ipynb ├── Package.swift ├── README.md ├── Sources ├── AGG │ ├── CMakeLists.txt │ ├── Makefile │ ├── Makefile.am │ ├── agg_arc.cpp │ ├── agg_arrowhead.cpp │ ├── agg_bezier_arc.cpp │ ├── agg_bspline.cpp │ ├── agg_color_rgba.cpp │ ├── agg_curves.cpp │ ├── agg_embedded_raster_fonts.cpp │ ├── agg_font_freetype.cpp │ ├── agg_gsv_text.cpp │ ├── agg_image_filters.cpp │ ├── agg_line_aa_basics.cpp │ ├── agg_line_profile_aa.cpp │ ├── agg_rounded_rect.cpp │ ├── agg_sqrt_tables.cpp │ ├── agg_trans_affine.cpp │ ├── agg_trans_double_path.cpp │ ├── agg_trans_single_path.cpp │ ├── agg_trans_warp_magnifier.cpp │ ├── agg_vcgen_bspline.cpp │ ├── agg_vcgen_contour.cpp │ ├── agg_vcgen_dash.cpp │ ├── agg_vcgen_markers_term.cpp │ ├── agg_vcgen_smooth_poly1.cpp │ ├── agg_vcgen_stroke.cpp │ ├── agg_vpgen_clip_polygon.cpp │ ├── agg_vpgen_clip_polyline.cpp │ ├── agg_vpgen_segmentator.cpp │ ├── ctrl │ │ ├── Makefile.am │ │ ├── agg_bezier_ctrl.cpp │ │ ├── agg_cbox_ctrl.cpp │ │ ├── agg_gamma_ctrl.cpp │ │ ├── agg_gamma_spline.cpp │ │ ├── agg_polygon_ctrl.cpp │ │ ├── agg_rbox_ctrl.cpp │ │ ├── agg_scale_ctrl.cpp │ │ ├── agg_slider_ctrl.cpp │ │ └── agg_spline_ctrl.cpp │ ├── gpc.c │ └── include │ │ ├── Makefile.am │ │ ├── agg_alpha_mask_u8.h │ │ ├── agg_arc.h │ │ ├── agg_array.h │ │ ├── agg_arrowhead.h │ │ ├── agg_basics.h │ │ ├── agg_bezier_arc.h │ │ ├── agg_bitset_iterator.h │ │ ├── agg_blur.h │ │ ├── agg_bounding_rect.h │ │ ├── agg_bspline.h │ │ ├── agg_clip_liang_barsky.h │ │ ├── agg_color_gray.h │ │ ├── agg_color_rgba.h │ │ ├── agg_config.h │ │ ├── agg_conv_adaptor_vcgen.h │ │ ├── agg_conv_adaptor_vpgen.h │ │ ├── agg_conv_bspline.h │ │ ├── agg_conv_clip_polygon.h │ │ ├── agg_conv_clip_polyline.h │ │ ├── agg_conv_close_polygon.h │ │ ├── agg_conv_concat.h │ │ ├── agg_conv_contour.h │ │ ├── agg_conv_curve.h │ │ ├── agg_conv_dash.h │ │ ├── agg_conv_gpc.h │ │ ├── agg_conv_marker.h │ │ ├── agg_conv_marker_adaptor.h │ │ ├── agg_conv_segmentator.h │ │ ├── agg_conv_shorten_path.h │ │ ├── agg_conv_smooth_poly1.h │ │ ├── agg_conv_stroke.h │ │ ├── agg_conv_transform.h │ │ ├── agg_conv_unclose_polygon.h │ │ ├── agg_curves.h │ │ ├── agg_dda_line.h │ │ ├── agg_ellipse.h │ │ ├── agg_ellipse_bresenham.h │ │ ├── agg_embedded_raster_fonts.h │ │ ├── agg_font_cache_manager.h │ │ ├── agg_font_cache_manager2.h │ │ ├── agg_font_freetype.h │ │ ├── agg_gamma_functions.h │ │ ├── agg_gamma_lut.h │ │ ├── agg_glyph_raster_bin.h │ │ ├── agg_gradient_lut.h │ │ ├── agg_gsv_text.h │ │ ├── agg_image_accessors.h │ │ ├── agg_image_filters.h │ │ ├── agg_line_aa_basics.h │ │ ├── agg_math.h │ │ ├── agg_math_stroke.h │ │ ├── agg_path_length.h │ │ ├── agg_path_storage.h │ │ ├── agg_path_storage_integer.h │ │ ├── agg_pattern_filters_rgba.h │ │ ├── agg_pixfmt_amask_adaptor.h │ │ ├── agg_pixfmt_base.h │ │ ├── agg_pixfmt_gray.h │ │ ├── agg_pixfmt_rgb.h │ │ ├── agg_pixfmt_rgb_packed.h │ │ ├── agg_pixfmt_rgba.h │ │ ├── agg_pixfmt_transposer.h │ │ ├── agg_rasterizer_cells_aa.h │ │ ├── agg_rasterizer_compound_aa.h │ │ ├── agg_rasterizer_outline.h │ │ ├── agg_rasterizer_outline_aa.h │ │ ├── agg_rasterizer_scanline_aa.h │ │ ├── agg_rasterizer_scanline_aa_nogamma.h │ │ ├── agg_rasterizer_sl_clip.h │ │ ├── agg_renderer_base.h │ │ ├── agg_renderer_markers.h │ │ ├── agg_renderer_mclip.h │ │ ├── agg_renderer_outline_aa.h │ │ ├── agg_renderer_outline_image.h │ │ ├── agg_renderer_primitives.h │ │ ├── agg_renderer_raster_text.h │ │ ├── agg_renderer_scanline.h │ │ ├── agg_rendering_buffer.h │ │ ├── agg_rendering_buffer_dynarow.h │ │ ├── agg_rounded_rect.h │ │ ├── agg_scanline_bin.h │ │ ├── agg_scanline_boolean_algebra.h │ │ ├── agg_scanline_p.h │ │ ├── agg_scanline_storage_aa.h │ │ ├── agg_scanline_storage_bin.h │ │ ├── agg_scanline_u.h │ │ ├── agg_shorten_path.h │ │ ├── agg_simul_eq.h │ │ ├── agg_span_allocator.h │ │ ├── agg_span_converter.h │ │ ├── agg_span_gouraud.h │ │ ├── agg_span_gouraud_gray.h │ │ ├── agg_span_gouraud_rgba.h │ │ ├── agg_span_gradient.h │ │ ├── agg_span_gradient_alpha.h │ │ ├── agg_span_gradient_contour.h │ │ ├── agg_span_gradient_image.h │ │ ├── agg_span_image_filter.h │ │ ├── agg_span_image_filter_gray.h │ │ ├── agg_span_image_filter_rgb.h │ │ ├── agg_span_image_filter_rgba.h │ │ ├── agg_span_interpolator_adaptor.h │ │ ├── agg_span_interpolator_linear.h │ │ ├── agg_span_interpolator_persp.h │ │ ├── agg_span_interpolator_trans.h │ │ ├── agg_span_pattern_gray.h │ │ ├── agg_span_pattern_rgb.h │ │ ├── agg_span_pattern_rgba.h │ │ ├── agg_span_solid.h │ │ ├── agg_span_subdiv_adaptor.h │ │ ├── agg_trans_affine.h │ │ ├── agg_trans_bilinear.h │ │ ├── agg_trans_double_path.h │ │ ├── agg_trans_perspective.h │ │ ├── agg_trans_single_path.h │ │ ├── agg_trans_viewport.h │ │ ├── agg_trans_warp_magnifier.h │ │ ├── agg_vcgen_bspline.h │ │ ├── agg_vcgen_contour.h │ │ ├── agg_vcgen_dash.h │ │ ├── agg_vcgen_markers_term.h │ │ ├── agg_vcgen_smooth_poly1.h │ │ ├── agg_vcgen_stroke.h │ │ ├── agg_vcgen_vertex_sequence.h │ │ ├── agg_vertex_sequence.h │ │ ├── agg_vpgen_clip_polygon.h │ │ ├── agg_vpgen_clip_polyline.h │ │ ├── agg_vpgen_segmentator.h │ │ ├── ctrl │ │ ├── Makefile.am │ │ ├── agg_bezier_ctrl.h │ │ ├── agg_cbox_ctrl.h │ │ ├── agg_ctrl.h │ │ ├── agg_gamma_ctrl.h │ │ ├── agg_gamma_spline.h │ │ ├── agg_polygon_ctrl.h │ │ ├── agg_rbox_ctrl.h │ │ ├── agg_scale_ctrl.h │ │ ├── agg_slider_ctrl.h │ │ └── agg_spline_ctrl.h │ │ ├── gpc.h │ │ ├── platform │ │ ├── Makefile.am │ │ └── agg_platform_support.h │ │ └── util │ │ ├── Makefile.am │ │ ├── agg_color_conv.h │ │ ├── agg_color_conv_rgb16.h │ │ └── agg_color_conv_rgb8.h ├── AGGRenderer │ ├── AGGRenderer │ │ └── AGGRenderer.swift │ ├── CAGGRenderer │ │ ├── CAGGRenderer.cpp │ │ └── include │ │ │ └── CAGGRenderer.h │ └── CPPAGGRenderer │ │ ├── CPPAGGRenderer.cpp │ │ ├── Roboto-Regular.ttf │ │ └── include │ │ ├── CPPAGGRenderer.h │ │ ├── pixel_formats.h │ │ └── savebmp.h ├── CFreeType │ ├── module.modulemap │ └── shim.h ├── QuartzRenderer │ └── QuartzRenderer.swift ├── SVGRenderer │ └── SVGRenderer.swift ├── SwiftPlot │ ├── AdaptersNamespace.swift │ ├── Axis.swift │ ├── BarChart.swift │ ├── BarGraphSeriesOptions.swift │ ├── Color │ │ ├── Color.swift │ │ ├── ColorMap.swift │ │ └── ColorMapData.swift │ ├── FloatConvertible.swift │ ├── Geometry │ │ ├── EdgeComponents.swift │ │ ├── Rect.swift │ │ └── Size.swift │ ├── GraphLayout.swift │ ├── Heatmap-adapter.swift │ ├── Heatmap.swift │ ├── HelperFunction.swift │ ├── Histogram.swift │ ├── HistogramSeries.swift │ ├── HistogramSeriesOptions.swift │ ├── LayoutComponents │ │ ├── Label.swift │ │ ├── LayoutComponent.swift │ │ └── Spacing.swift │ ├── LineChart.swift │ ├── Pair.swift │ ├── Plot.swift │ ├── PlotDimensions.swift │ ├── PlotMarkers.swift │ ├── PlotStyleHelpers.swift │ ├── Renderer.swift │ ├── ScatterChart.swift │ ├── ScatterPlotSeriesOptions.swift │ ├── SequencePlots.swift │ ├── Series.swift │ └── SubPlot.swift └── lodepng │ ├── include │ └── lodepng.h │ └── lodepng.cpp ├── Swiftplot_Docker_setup.md ├── Tests ├── LinuxMain.swift └── SwiftPlotTests │ ├── AGGRenderer │ ├── agg-png-output.swift │ └── aggTests.swift │ ├── Annotation │ ├── annotation-arrow-dart.swift │ ├── annotation-arrow-double-headed.swift │ ├── annotation-arrow-wedge.swift │ ├── annotation-arrow.swift │ ├── annotation-bracket.swift │ ├── annotation-text-bounding-box.swift │ ├── annotation-text.swift │ └── annotationTests.swift │ ├── BarChart │ ├── barchart-hatched-backwardslash.swift │ ├── barchart-hatched-cross.swift │ ├── barchart-hatched-filledcircle.swift │ ├── barchart-hatched-forwardsslash.swift │ ├── barchart-hatched-grid.swift │ ├── barchart-hatched-hollowcircle.swift │ ├── barchart-hatched-horizontal.swift │ ├── barchart-hatched-vertical.swift │ ├── barchart-orientation-horizontal.swift │ ├── barchart-stacked-horizontal.swift │ ├── barchart-stacked-vertical.swift │ ├── barchart.swift │ └── barchartTests.swift │ ├── Heatmap │ └── heatmap.swift │ ├── Histogram │ ├── histogram-arrayValues.swift │ ├── histogram-regression-tests.swift │ ├── histogram-stacked-arrayValues.swift │ ├── histogram-stacked-step-arrayValues.swift │ ├── histogram-stacked-step.swift │ ├── histogram-stacked.swift │ ├── histogram-step-arrayValues.swift │ ├── histogram-step.swift │ ├── histogram.swift │ └── histogramTests.swift │ ├── LineChart │ ├── linechart-functionplot.swift │ ├── linechart-multiple-series.swift │ ├── linechart-regressiontests.swift │ ├── linechart-secondary-axis.swift │ ├── linechart-single-series.swift │ ├── linechart-subplot-gridstacked.swift │ ├── linechart-subplot-h-stacked.swift │ ├── linechart-subplot-v-stacked.swift │ └── linechartTests.swift │ ├── PerformanceTests │ ├── performance-histogram.swift │ └── performanceTests.swift │ ├── Reference │ ├── agg │ │ ├── _01_single_series_line_chart.png │ │ ├── _02_multiple_series_line_chart.png │ │ ├── _03_sub_plot_horizontally_stacked_line_chart.png │ │ ├── _04_sub_plot_vertically_stacked_line_chart.png │ │ ├── _05_sub_plot_grid_stacked_line_chart.png │ │ ├── _06_function_plot_line_chart.png │ │ ├── _07_secondary_axis_line_chart.png │ │ ├── _08_bar_chart.png │ │ ├── _09_bar_chart_orientation_horizontal.png │ │ ├── _10_bar_chart_forward_slash_hatched.png │ │ ├── _11_bar_chart_backward_slash_hatched.png │ │ ├── _12_bar_chart_vertical_hatched.png │ │ ├── _13_bar_chart_horizontal_hatched.png │ │ ├── _14_bar_chart_grid_hatched.png │ │ ├── _15_bar_chart_cross_hatched.png │ │ ├── _16_bar_chart_hollow_circle_hatched.png │ │ ├── _17_bar_chart_filled_circle_hatched.png │ │ ├── _18_bar_chart_vertical_stacked.png │ │ ├── _19_bar_chart_horizontal_stacked.png │ │ ├── _20_scatter_plot.png │ │ ├── _21_histogram.png │ │ ├── _22_histogram_step.png │ │ ├── _23_histogram_stacked.png │ │ ├── _24_histogram_stacked_step.png │ │ ├── _25_histogram_multi_stacked_color_bleed.png │ │ ├── _26_histogram_multi_stacked.png │ │ ├── _27_histogram_multi_stacked_step.png │ │ ├── _28_histogram_stacked_step_line_joins.png │ │ ├── _29_nested_subplots.png │ │ ├── _29_text_annotation.png │ │ ├── _30_text_bounding_box_annotation.png │ │ ├── _31_arrow_annotation.png │ │ ├── _32_arrow_annotation_dart.png │ │ ├── _33_arrow_annotation_wedge.png │ │ ├── _34_arrow_annotation_double_headed.png │ │ ├── _35_bracket_annotation.png │ │ ├── _reg_57_histogram_stacked_step_offset.png │ │ ├── testHeatmap.png │ │ ├── testHeatmap_invertedMapping.png │ │ ├── testLineChart_crossBothAxes.png │ │ ├── testLineChart_crossX.png │ │ ├── testLineChart_crossY.png │ │ ├── testLineChart_negativeXOrigin.png │ │ ├── testLineChart_negativeXOrigin_unsorted.png │ │ ├── testLineChart_negativeYOrigin.png │ │ ├── testLineChart_positiveXOrigin.png │ │ ├── testLineChart_positiveXOrigin_secondary.png │ │ ├── testLineChart_positiveYOrigin.png │ │ ├── testLineChart_positiveYOrigin_secondary.png │ │ └── testLineChart_smallXRange.png │ ├── quartz │ │ ├── _01_single_series_line_chart.png │ │ ├── _02_multiple_series_line_chart.png │ │ ├── _03_sub_plot_horizontally_stacked_line_chart.png │ │ ├── _04_sub_plot_vertically_stacked_line_chart.png │ │ ├── _05_sub_plot_grid_stacked_line_chart.png │ │ ├── _06_function_plot_line_chart.png │ │ ├── _07_secondary_axis_line_chart.png │ │ ├── _08_bar_chart.png │ │ ├── _09_bar_chart_orientation_horizontal.png │ │ ├── _10_bar_chart_forward_slash_hatched.png │ │ ├── _11_bar_chart_backward_slash_hatched.png │ │ ├── _12_bar_chart_vertical_hatched.png │ │ ├── _13_bar_chart_horizontal_hatched.png │ │ ├── _14_bar_chart_grid_hatched.png │ │ ├── _15_bar_chart_cross_hatched.png │ │ ├── _16_bar_chart_hollow_circle_hatched.png │ │ ├── _17_bar_chart_filled_circle_hatched.png │ │ ├── _18_bar_chart_vertical_stacked.png │ │ ├── _19_bar_chart_horizontal_stacked.png │ │ ├── _20_scatter_plot.png │ │ ├── _21_histogram.png │ │ ├── _22_histogram_step.png │ │ ├── _23_histogram_stacked.png │ │ ├── _24_histogram_stacked_step.png │ │ ├── _25_histogram_multi_stacked_color_bleed.png │ │ ├── _26_histogram_multi_stacked.png │ │ ├── _27_histogram_multi_stacked_step.png │ │ ├── _28_histogram_stacked_step_line_joins.png │ │ ├── _29_nested_subplots.png │ │ ├── _29_text_annotation.png │ │ ├── _30_text_bounding_box_annotation.png │ │ ├── _31_arrow_annotation.png │ │ ├── _32_arrow_annotation_dart.png │ │ ├── _33_arrow_annotation_wedge.png │ │ ├── _34_arrow_annotation_double_headed.png │ │ ├── _reg_57_histogram_stacked_step_offset.png │ │ ├── testHeatmap.png │ │ ├── testHeatmap_invertedMapping.png │ │ ├── testLineChart_crossBothAxes.png │ │ ├── testLineChart_crossX.png │ │ ├── testLineChart_crossY.png │ │ ├── testLineChart_negativeXOrigin.png │ │ ├── testLineChart_negativeXOrigin_unsorted.png │ │ ├── testLineChart_negativeYOrigin.png │ │ ├── testLineChart_positiveXOrigin.png │ │ ├── testLineChart_positiveXOrigin_secondary.png │ │ ├── testLineChart_positiveYOrigin.png │ │ ├── testLineChart_positiveYOrigin_secondary.png │ │ └── testLineChart_smallXRange.png │ ├── svg │ │ ├── _01_single_series_line_chart.svg │ │ ├── _02_multiple_series_line_chart.svg │ │ ├── _03_sub_plot_horizontally_stacked_line_chart.svg │ │ ├── _04_sub_plot_vertically_stacked_line_chart.svg │ │ ├── _05_sub_plot_grid_stacked_line_chart.svg │ │ ├── _06_function_plot_line_chart.svg │ │ ├── _07_secondary_axis_line_chart.svg │ │ ├── _08_bar_chart.svg │ │ ├── _09_bar_chart_orientation_horizontal.svg │ │ ├── _10_bar_chart_forward_slash_hatched.svg │ │ ├── _11_bar_chart_backward_slash_hatched.svg │ │ ├── _12_bar_chart_vertical_hatched.svg │ │ ├── _13_bar_chart_horizontal_hatched.svg │ │ ├── _14_bar_chart_grid_hatched.svg │ │ ├── _15_bar_chart_cross_hatched.svg │ │ ├── _16_bar_chart_hollow_circle_hatched.svg │ │ ├── _17_bar_chart_filled_circle_hatched.svg │ │ ├── _18_bar_chart_vertical_stacked.svg │ │ ├── _19_bar_chart_horizontal_stacked.svg │ │ ├── _20_scatter_plot.svg │ │ ├── _21_histogram.svg │ │ ├── _22_histogram_step.svg │ │ ├── _23_histogram_stacked.svg │ │ ├── _24_histogram_stacked_step.svg │ │ ├── _25_histogram_multi_stacked_color_bleed.svg │ │ ├── _26_histogram_multi_stacked.svg │ │ ├── _27_histogram_multi_stacked_step.svg │ │ ├── _28_histogram_stacked_step_line_joins.svg │ │ ├── _29_nested_subplots.svg │ │ ├── _29_text_annotation.svg │ │ ├── _30_text_bounding_box_annotation.svg │ │ ├── _31_arrow_annotation.svg │ │ ├── _32_arrow_annotation_dart.svg │ │ ├── _33_arrow_annotation_wedge.svg │ │ ├── _34_arrow_annotation_double_headed.svg │ │ ├── _35_bracket_annotation.svg │ │ ├── _reg_57_histogram_stacked_step_offset.svg │ │ ├── testHeatmap.svg │ │ ├── testHeatmap_invertedMapping.svg │ │ ├── testLineChart_crossBothAxes.svg │ │ ├── testLineChart_crossX.svg │ │ ├── testLineChart_crossY.svg │ │ ├── testLineChart_negativeXOrigin.svg │ │ ├── testLineChart_negativeXOrigin_unsorted.svg │ │ ├── testLineChart_negativeYOrigin.svg │ │ ├── testLineChart_positiveXOrigin.svg │ │ ├── testLineChart_positiveXOrigin_secondary.svg │ │ ├── testLineChart_positiveYOrigin.svg │ │ ├── testLineChart_positiveYOrigin_secondary.svg │ │ └── testLineChart_smallXRange.svg │ └── testLineChart_crossBothAxes.png │ ├── ScatterPlot │ ├── scatterplot-arrayValues.swift │ ├── scatterplot.swift │ └── scatterplotTests.swift │ ├── SubPlots │ ├── subplotTests.swift │ └── subplots.swift │ ├── SwiftPlotTestCase.swift │ └── XCTestManifests.swift ├── run_examples.sh └── swiftplot.png /.github/workflows/SwiftPlot_Ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/.github/workflows/SwiftPlot_Ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/.swift-format -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/LICENSE -------------------------------------------------------------------------------- /Notebooks/LineChart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Notebooks/LineChart.ipynb -------------------------------------------------------------------------------- /Notebooks/Machine Learning with Swift for TensorFlow and SwiftPlot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Notebooks/Machine Learning with Swift for TensorFlow and SwiftPlot.ipynb -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AGG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/AGG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/Makefile -------------------------------------------------------------------------------- /Sources/AGG/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/Makefile.am -------------------------------------------------------------------------------- /Sources/AGG/agg_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_arc.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_arrowhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_arrowhead.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_bezier_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_bezier_arc.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_bspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_bspline.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_color_rgba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_color_rgba.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_curves.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_embedded_raster_fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_embedded_raster_fonts.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_font_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_font_freetype.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_gsv_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_gsv_text.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_image_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_image_filters.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_line_aa_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_line_aa_basics.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_line_profile_aa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_line_profile_aa.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_rounded_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_rounded_rect.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_sqrt_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_sqrt_tables.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_trans_affine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_trans_affine.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_trans_double_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_trans_double_path.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_trans_single_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_trans_single_path.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_trans_warp_magnifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_trans_warp_magnifier.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vcgen_bspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vcgen_bspline.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vcgen_contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vcgen_contour.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vcgen_dash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vcgen_dash.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vcgen_markers_term.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vcgen_markers_term.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vcgen_smooth_poly1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vcgen_smooth_poly1.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vcgen_stroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vcgen_stroke.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vpgen_clip_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vpgen_clip_polygon.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vpgen_clip_polyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vpgen_clip_polyline.cpp -------------------------------------------------------------------------------- /Sources/AGG/agg_vpgen_segmentator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/agg_vpgen_segmentator.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/Makefile.am -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_bezier_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_bezier_ctrl.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_cbox_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_cbox_ctrl.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_gamma_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_gamma_ctrl.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_gamma_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_gamma_spline.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_polygon_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_polygon_ctrl.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_rbox_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_rbox_ctrl.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_scale_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_scale_ctrl.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_slider_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_slider_ctrl.cpp -------------------------------------------------------------------------------- /Sources/AGG/ctrl/agg_spline_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/ctrl/agg_spline_ctrl.cpp -------------------------------------------------------------------------------- /Sources/AGG/gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/gpc.c -------------------------------------------------------------------------------- /Sources/AGG/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/Makefile.am -------------------------------------------------------------------------------- /Sources/AGG/include/agg_alpha_mask_u8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_alpha_mask_u8.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_arc.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_array.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_arrowhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_arrowhead.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_basics.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_bezier_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_bezier_arc.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_bitset_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_bitset_iterator.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_blur.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_bounding_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_bounding_rect.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_bspline.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_clip_liang_barsky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_clip_liang_barsky.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_color_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_color_gray.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_color_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_color_rgba.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_config.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_adaptor_vcgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_adaptor_vcgen.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_adaptor_vpgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_adaptor_vpgen.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_bspline.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_clip_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_clip_polygon.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_clip_polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_clip_polyline.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_close_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_close_polygon.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_concat.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_contour.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_curve.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_dash.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_gpc.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_marker.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_marker_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_marker_adaptor.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_segmentator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_segmentator.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_shorten_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_shorten_path.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_smooth_poly1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_smooth_poly1.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_stroke.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_transform.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_conv_unclose_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_conv_unclose_polygon.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_curves.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_dda_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_dda_line.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_ellipse.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_ellipse_bresenham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_ellipse_bresenham.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_embedded_raster_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_embedded_raster_fonts.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_font_cache_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_font_cache_manager.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_font_cache_manager2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_font_cache_manager2.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_font_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_font_freetype.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_gamma_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_gamma_functions.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_gamma_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_gamma_lut.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_glyph_raster_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_glyph_raster_bin.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_gradient_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_gradient_lut.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_gsv_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_gsv_text.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_image_accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_image_accessors.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_image_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_image_filters.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_line_aa_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_line_aa_basics.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_math.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_math_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_math_stroke.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_path_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_path_length.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_path_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_path_storage.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_path_storage_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_path_storage_integer.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_pattern_filters_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_pattern_filters_rgba.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_pixfmt_amask_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_pixfmt_amask_adaptor.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_pixfmt_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_pixfmt_base.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_pixfmt_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_pixfmt_gray.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_pixfmt_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_pixfmt_rgb.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_pixfmt_rgb_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_pixfmt_rgb_packed.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_pixfmt_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_pixfmt_rgba.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_pixfmt_transposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_pixfmt_transposer.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rasterizer_cells_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rasterizer_cells_aa.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rasterizer_compound_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rasterizer_compound_aa.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rasterizer_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rasterizer_outline.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rasterizer_outline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rasterizer_outline_aa.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rasterizer_scanline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rasterizer_scanline_aa.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rasterizer_scanline_aa_nogamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rasterizer_scanline_aa_nogamma.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rasterizer_sl_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rasterizer_sl_clip.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_renderer_base.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_renderer_markers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_renderer_markers.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_renderer_mclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_renderer_mclip.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_renderer_outline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_renderer_outline_aa.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_renderer_outline_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_renderer_outline_image.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_renderer_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_renderer_primitives.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_renderer_raster_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_renderer_raster_text.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_renderer_scanline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_renderer_scanline.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rendering_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rendering_buffer.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rendering_buffer_dynarow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rendering_buffer_dynarow.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_rounded_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_rounded_rect.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_scanline_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_scanline_bin.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_scanline_boolean_algebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_scanline_boolean_algebra.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_scanline_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_scanline_p.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_scanline_storage_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_scanline_storage_aa.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_scanline_storage_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_scanline_storage_bin.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_scanline_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_scanline_u.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_shorten_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_shorten_path.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_simul_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_simul_eq.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_allocator.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_converter.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_gouraud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_gouraud.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_gouraud_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_gouraud_gray.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_gouraud_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_gouraud_rgba.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_gradient.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_gradient_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_gradient_alpha.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_gradient_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_gradient_contour.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_gradient_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_gradient_image.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_image_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_image_filter.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_image_filter_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_image_filter_gray.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_image_filter_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_image_filter_rgb.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_image_filter_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_image_filter_rgba.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_interpolator_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_interpolator_adaptor.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_interpolator_linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_interpolator_linear.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_interpolator_persp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_interpolator_persp.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_interpolator_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_interpolator_trans.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_pattern_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_pattern_gray.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_pattern_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_pattern_rgb.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_pattern_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_pattern_rgba.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_solid.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_span_subdiv_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_span_subdiv_adaptor.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_trans_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_trans_affine.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_trans_bilinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_trans_bilinear.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_trans_double_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_trans_double_path.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_trans_perspective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_trans_perspective.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_trans_single_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_trans_single_path.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_trans_viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_trans_viewport.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_trans_warp_magnifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_trans_warp_magnifier.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vcgen_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vcgen_bspline.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vcgen_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vcgen_contour.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vcgen_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vcgen_dash.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vcgen_markers_term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vcgen_markers_term.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vcgen_smooth_poly1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vcgen_smooth_poly1.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vcgen_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vcgen_stroke.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vcgen_vertex_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vcgen_vertex_sequence.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vertex_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vertex_sequence.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vpgen_clip_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vpgen_clip_polygon.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vpgen_clip_polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vpgen_clip_polyline.h -------------------------------------------------------------------------------- /Sources/AGG/include/agg_vpgen_segmentator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/agg_vpgen_segmentator.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/Makefile.am -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_bezier_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_bezier_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_cbox_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_cbox_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_gamma_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_gamma_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_gamma_spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_gamma_spline.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_polygon_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_polygon_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_rbox_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_rbox_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_scale_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_scale_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_slider_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_slider_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/ctrl/agg_spline_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/ctrl/agg_spline_ctrl.h -------------------------------------------------------------------------------- /Sources/AGG/include/gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/gpc.h -------------------------------------------------------------------------------- /Sources/AGG/include/platform/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/platform/Makefile.am -------------------------------------------------------------------------------- /Sources/AGG/include/platform/agg_platform_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/platform/agg_platform_support.h -------------------------------------------------------------------------------- /Sources/AGG/include/util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/util/Makefile.am -------------------------------------------------------------------------------- /Sources/AGG/include/util/agg_color_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/util/agg_color_conv.h -------------------------------------------------------------------------------- /Sources/AGG/include/util/agg_color_conv_rgb16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/util/agg_color_conv_rgb16.h -------------------------------------------------------------------------------- /Sources/AGG/include/util/agg_color_conv_rgb8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGG/include/util/agg_color_conv_rgb8.h -------------------------------------------------------------------------------- /Sources/AGGRenderer/AGGRenderer/AGGRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGGRenderer/AGGRenderer/AGGRenderer.swift -------------------------------------------------------------------------------- /Sources/AGGRenderer/CAGGRenderer/CAGGRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGGRenderer/CAGGRenderer/CAGGRenderer.cpp -------------------------------------------------------------------------------- /Sources/AGGRenderer/CAGGRenderer/include/CAGGRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGGRenderer/CAGGRenderer/include/CAGGRenderer.h -------------------------------------------------------------------------------- /Sources/AGGRenderer/CPPAGGRenderer/CPPAGGRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGGRenderer/CPPAGGRenderer/CPPAGGRenderer.cpp -------------------------------------------------------------------------------- /Sources/AGGRenderer/CPPAGGRenderer/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGGRenderer/CPPAGGRenderer/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Sources/AGGRenderer/CPPAGGRenderer/include/CPPAGGRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGGRenderer/CPPAGGRenderer/include/CPPAGGRenderer.h -------------------------------------------------------------------------------- /Sources/AGGRenderer/CPPAGGRenderer/include/pixel_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGGRenderer/CPPAGGRenderer/include/pixel_formats.h -------------------------------------------------------------------------------- /Sources/AGGRenderer/CPPAGGRenderer/include/savebmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/AGGRenderer/CPPAGGRenderer/include/savebmp.h -------------------------------------------------------------------------------- /Sources/CFreeType/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/CFreeType/module.modulemap -------------------------------------------------------------------------------- /Sources/CFreeType/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/CFreeType/shim.h -------------------------------------------------------------------------------- /Sources/QuartzRenderer/QuartzRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/QuartzRenderer/QuartzRenderer.swift -------------------------------------------------------------------------------- /Sources/SVGRenderer/SVGRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SVGRenderer/SVGRenderer.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/AdaptersNamespace.swift: -------------------------------------------------------------------------------- 1 | 2 | public enum Mapping {} 3 | -------------------------------------------------------------------------------- /Sources/SwiftPlot/Axis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Axis.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/BarChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/BarChart.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/BarGraphSeriesOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/BarGraphSeriesOptions.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Color/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Color/Color.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Color/ColorMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Color/ColorMap.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Color/ColorMapData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Color/ColorMapData.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/FloatConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/FloatConvertible.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Geometry/EdgeComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Geometry/EdgeComponents.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Geometry/Rect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Geometry/Rect.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Geometry/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Geometry/Size.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/GraphLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/GraphLayout.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Heatmap-adapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Heatmap-adapter.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Heatmap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Heatmap.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/HelperFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/HelperFunction.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Histogram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Histogram.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/HistogramSeries.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/HistogramSeries.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/HistogramSeriesOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/HistogramSeriesOptions.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/LayoutComponents/Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/LayoutComponents/Label.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/LayoutComponents/LayoutComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/LayoutComponents/LayoutComponent.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/LayoutComponents/Spacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/LayoutComponents/Spacing.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/LineChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/LineChart.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Pair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Pair.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Plot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Plot.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/PlotDimensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/PlotDimensions.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/PlotMarkers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/PlotMarkers.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/PlotStyleHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/PlotStyleHelpers.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Renderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Renderer.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/ScatterChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/ScatterChart.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/ScatterPlotSeriesOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/ScatterPlotSeriesOptions.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/SequencePlots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/SequencePlots.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/Series.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/Series.swift -------------------------------------------------------------------------------- /Sources/SwiftPlot/SubPlot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/SwiftPlot/SubPlot.swift -------------------------------------------------------------------------------- /Sources/lodepng/include/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/lodepng/include/lodepng.h -------------------------------------------------------------------------------- /Sources/lodepng/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Sources/lodepng/lodepng.cpp -------------------------------------------------------------------------------- /Swiftplot_Docker_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Swiftplot_Docker_setup.md -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/AGGRenderer/agg-png-output.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/AGGRenderer/agg-png-output.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/AGGRenderer/aggTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/AGGRenderer/aggTests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Annotation/annotation-arrow-dart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Annotation/annotation-arrow-dart.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Annotation/annotation-arrow-double-headed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Annotation/annotation-arrow-double-headed.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Annotation/annotation-arrow-wedge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Annotation/annotation-arrow-wedge.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Annotation/annotation-arrow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Annotation/annotation-arrow.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Annotation/annotation-bracket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Annotation/annotation-bracket.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Annotation/annotation-text-bounding-box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Annotation/annotation-text-bounding-box.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Annotation/annotation-text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Annotation/annotation-text.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Annotation/annotationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Annotation/annotationTests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-hatched-backwardslash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-hatched-backwardslash.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-hatched-cross.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-hatched-cross.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-hatched-filledcircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-hatched-filledcircle.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-hatched-forwardsslash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-hatched-forwardsslash.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-hatched-grid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-hatched-grid.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-hatched-hollowcircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-hatched-hollowcircle.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-hatched-horizontal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-hatched-horizontal.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-hatched-vertical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-hatched-vertical.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-orientation-horizontal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-orientation-horizontal.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-stacked-horizontal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-stacked-horizontal.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart-stacked-vertical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart-stacked-vertical.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchart.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/BarChart/barchartTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/BarChart/barchartTests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Heatmap/heatmap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Heatmap/heatmap.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram-arrayValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram-arrayValues.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram-regression-tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram-regression-tests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram-stacked-arrayValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram-stacked-arrayValues.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram-stacked-step-arrayValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram-stacked-step-arrayValues.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram-stacked-step.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram-stacked-step.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram-stacked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram-stacked.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram-step-arrayValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram-step-arrayValues.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram-step.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram-step.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogram.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Histogram/histogramTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Histogram/histogramTests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechart-functionplot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechart-functionplot.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechart-multiple-series.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechart-multiple-series.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechart-regressiontests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechart-regressiontests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechart-secondary-axis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechart-secondary-axis.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechart-single-series.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechart-single-series.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechart-subplot-gridstacked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechart-subplot-gridstacked.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechart-subplot-h-stacked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechart-subplot-h-stacked.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechart-subplot-v-stacked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechart-subplot-v-stacked.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/LineChart/linechartTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/LineChart/linechartTests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/PerformanceTests/performance-histogram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/PerformanceTests/performance-histogram.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/PerformanceTests/performanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/PerformanceTests/performanceTests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_01_single_series_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_01_single_series_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_02_multiple_series_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_02_multiple_series_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_03_sub_plot_horizontally_stacked_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_03_sub_plot_horizontally_stacked_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_04_sub_plot_vertically_stacked_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_04_sub_plot_vertically_stacked_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_05_sub_plot_grid_stacked_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_05_sub_plot_grid_stacked_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_06_function_plot_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_06_function_plot_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_07_secondary_axis_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_07_secondary_axis_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_08_bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_08_bar_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_09_bar_chart_orientation_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_09_bar_chart_orientation_horizontal.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_10_bar_chart_forward_slash_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_10_bar_chart_forward_slash_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_11_bar_chart_backward_slash_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_11_bar_chart_backward_slash_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_12_bar_chart_vertical_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_12_bar_chart_vertical_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_13_bar_chart_horizontal_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_13_bar_chart_horizontal_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_14_bar_chart_grid_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_14_bar_chart_grid_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_15_bar_chart_cross_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_15_bar_chart_cross_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_16_bar_chart_hollow_circle_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_16_bar_chart_hollow_circle_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_17_bar_chart_filled_circle_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_17_bar_chart_filled_circle_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_18_bar_chart_vertical_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_18_bar_chart_vertical_stacked.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_19_bar_chart_horizontal_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_19_bar_chart_horizontal_stacked.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_20_scatter_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_20_scatter_plot.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_21_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_21_histogram.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_22_histogram_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_22_histogram_step.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_23_histogram_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_23_histogram_stacked.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_24_histogram_stacked_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_24_histogram_stacked_step.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_25_histogram_multi_stacked_color_bleed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_25_histogram_multi_stacked_color_bleed.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_26_histogram_multi_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_26_histogram_multi_stacked.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_27_histogram_multi_stacked_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_27_histogram_multi_stacked_step.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_28_histogram_stacked_step_line_joins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_28_histogram_stacked_step_line_joins.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_29_nested_subplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_29_nested_subplots.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_29_text_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_29_text_annotation.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_30_text_bounding_box_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_30_text_bounding_box_annotation.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_31_arrow_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_31_arrow_annotation.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_32_arrow_annotation_dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_32_arrow_annotation_dart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_33_arrow_annotation_wedge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_33_arrow_annotation_wedge.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_34_arrow_annotation_double_headed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_34_arrow_annotation_double_headed.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_35_bracket_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_35_bracket_annotation.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/_reg_57_histogram_stacked_step_offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/_reg_57_histogram_stacked_step_offset.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testHeatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testHeatmap.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testHeatmap_invertedMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testHeatmap_invertedMapping.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_crossBothAxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_crossBothAxes.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_crossX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_crossX.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_crossY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_crossY.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_negativeXOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_negativeXOrigin.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_negativeXOrigin_unsorted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_negativeXOrigin_unsorted.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_negativeYOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_negativeYOrigin.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_positiveXOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_positiveXOrigin.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_positiveXOrigin_secondary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_positiveXOrigin_secondary.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_positiveYOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_positiveYOrigin.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_positiveYOrigin_secondary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_positiveYOrigin_secondary.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/agg/testLineChart_smallXRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/agg/testLineChart_smallXRange.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_01_single_series_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_01_single_series_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_02_multiple_series_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_02_multiple_series_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_03_sub_plot_horizontally_stacked_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_03_sub_plot_horizontally_stacked_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_04_sub_plot_vertically_stacked_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_04_sub_plot_vertically_stacked_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_05_sub_plot_grid_stacked_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_05_sub_plot_grid_stacked_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_06_function_plot_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_06_function_plot_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_07_secondary_axis_line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_07_secondary_axis_line_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_08_bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_08_bar_chart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_09_bar_chart_orientation_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_09_bar_chart_orientation_horizontal.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_10_bar_chart_forward_slash_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_10_bar_chart_forward_slash_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_11_bar_chart_backward_slash_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_11_bar_chart_backward_slash_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_12_bar_chart_vertical_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_12_bar_chart_vertical_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_13_bar_chart_horizontal_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_13_bar_chart_horizontal_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_14_bar_chart_grid_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_14_bar_chart_grid_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_15_bar_chart_cross_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_15_bar_chart_cross_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_16_bar_chart_hollow_circle_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_16_bar_chart_hollow_circle_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_17_bar_chart_filled_circle_hatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_17_bar_chart_filled_circle_hatched.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_18_bar_chart_vertical_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_18_bar_chart_vertical_stacked.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_19_bar_chart_horizontal_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_19_bar_chart_horizontal_stacked.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_20_scatter_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_20_scatter_plot.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_21_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_21_histogram.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_22_histogram_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_22_histogram_step.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_23_histogram_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_23_histogram_stacked.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_24_histogram_stacked_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_24_histogram_stacked_step.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_25_histogram_multi_stacked_color_bleed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_25_histogram_multi_stacked_color_bleed.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_26_histogram_multi_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_26_histogram_multi_stacked.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_27_histogram_multi_stacked_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_27_histogram_multi_stacked_step.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_28_histogram_stacked_step_line_joins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_28_histogram_stacked_step_line_joins.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_29_nested_subplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_29_nested_subplots.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_29_text_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_29_text_annotation.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_30_text_bounding_box_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_30_text_bounding_box_annotation.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_31_arrow_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_31_arrow_annotation.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_32_arrow_annotation_dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_32_arrow_annotation_dart.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_33_arrow_annotation_wedge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_33_arrow_annotation_wedge.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_34_arrow_annotation_double_headed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_34_arrow_annotation_double_headed.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/_reg_57_histogram_stacked_step_offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/_reg_57_histogram_stacked_step_offset.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testHeatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testHeatmap.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testHeatmap_invertedMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testHeatmap_invertedMapping.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_crossBothAxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_crossBothAxes.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_crossX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_crossX.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_crossY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_crossY.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_negativeXOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_negativeXOrigin.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_negativeXOrigin_unsorted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_negativeXOrigin_unsorted.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_negativeYOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_negativeYOrigin.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_positiveXOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_positiveXOrigin.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_positiveXOrigin_secondary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_positiveXOrigin_secondary.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_positiveYOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_positiveYOrigin.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_positiveYOrigin_secondary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_positiveYOrigin_secondary.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/quartz/testLineChart_smallXRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/quartz/testLineChart_smallXRange.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_01_single_series_line_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_01_single_series_line_chart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_02_multiple_series_line_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_02_multiple_series_line_chart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_03_sub_plot_horizontally_stacked_line_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_03_sub_plot_horizontally_stacked_line_chart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_04_sub_plot_vertically_stacked_line_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_04_sub_plot_vertically_stacked_line_chart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_05_sub_plot_grid_stacked_line_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_05_sub_plot_grid_stacked_line_chart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_06_function_plot_line_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_06_function_plot_line_chart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_07_secondary_axis_line_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_07_secondary_axis_line_chart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_08_bar_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_08_bar_chart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_09_bar_chart_orientation_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_09_bar_chart_orientation_horizontal.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_10_bar_chart_forward_slash_hatched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_10_bar_chart_forward_slash_hatched.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_11_bar_chart_backward_slash_hatched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_11_bar_chart_backward_slash_hatched.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_12_bar_chart_vertical_hatched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_12_bar_chart_vertical_hatched.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_13_bar_chart_horizontal_hatched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_13_bar_chart_horizontal_hatched.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_14_bar_chart_grid_hatched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_14_bar_chart_grid_hatched.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_15_bar_chart_cross_hatched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_15_bar_chart_cross_hatched.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_16_bar_chart_hollow_circle_hatched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_16_bar_chart_hollow_circle_hatched.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_17_bar_chart_filled_circle_hatched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_17_bar_chart_filled_circle_hatched.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_18_bar_chart_vertical_stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_18_bar_chart_vertical_stacked.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_19_bar_chart_horizontal_stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_19_bar_chart_horizontal_stacked.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_20_scatter_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_20_scatter_plot.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_21_histogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_21_histogram.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_22_histogram_step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_22_histogram_step.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_23_histogram_stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_23_histogram_stacked.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_24_histogram_stacked_step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_24_histogram_stacked_step.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_25_histogram_multi_stacked_color_bleed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_25_histogram_multi_stacked_color_bleed.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_26_histogram_multi_stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_26_histogram_multi_stacked.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_27_histogram_multi_stacked_step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_27_histogram_multi_stacked_step.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_28_histogram_stacked_step_line_joins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_28_histogram_stacked_step_line_joins.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_29_nested_subplots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_29_nested_subplots.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_29_text_annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_29_text_annotation.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_30_text_bounding_box_annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_30_text_bounding_box_annotation.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_31_arrow_annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_31_arrow_annotation.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_32_arrow_annotation_dart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_32_arrow_annotation_dart.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_33_arrow_annotation_wedge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_33_arrow_annotation_wedge.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_34_arrow_annotation_double_headed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_34_arrow_annotation_double_headed.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_35_bracket_annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_35_bracket_annotation.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/_reg_57_histogram_stacked_step_offset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/_reg_57_histogram_stacked_step_offset.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testHeatmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testHeatmap.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testHeatmap_invertedMapping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testHeatmap_invertedMapping.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_crossBothAxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_crossBothAxes.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_crossX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_crossX.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_crossY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_crossY.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_negativeXOrigin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_negativeXOrigin.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_negativeXOrigin_unsorted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_negativeXOrigin_unsorted.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_negativeYOrigin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_negativeYOrigin.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_positiveXOrigin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_positiveXOrigin.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_positiveXOrigin_secondary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_positiveXOrigin_secondary.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_positiveYOrigin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_positiveYOrigin.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_positiveYOrigin_secondary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_positiveYOrigin_secondary.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/svg/testLineChart_smallXRange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/svg/testLineChart_smallXRange.svg -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/Reference/testLineChart_crossBothAxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/Reference/testLineChart_crossBothAxes.png -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/ScatterPlot/scatterplot-arrayValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/ScatterPlot/scatterplot-arrayValues.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/ScatterPlot/scatterplot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/ScatterPlot/scatterplot.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/ScatterPlot/scatterplotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/ScatterPlot/scatterplotTests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/SubPlots/subplotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/SubPlots/subplotTests.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/SubPlots/subplots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/SubPlots/subplots.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/SwiftPlotTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/SwiftPlotTestCase.swift -------------------------------------------------------------------------------- /Tests/SwiftPlotTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/Tests/SwiftPlotTests/XCTestManifests.swift -------------------------------------------------------------------------------- /run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/run_examples.sh -------------------------------------------------------------------------------- /swiftplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarthikRIyer/swiftplot/HEAD/swiftplot.png --------------------------------------------------------------------------------