├── .gitignore ├── 3D.png ├── COPYING ├── DumpLog.nsh ├── README.md ├── TechnicalDescription.md ├── cross_mingw64.txt ├── images ├── pomelo_logo.png └── pomelo_logo.svg ├── meson.build ├── pomelo-non-smooth-geometry.png ├── pomelo-screenshot-color.png ├── pomelo-screenshot-curve.png ├── pomelo-screenshot-simple.png ├── pomelo-screenshot.png ├── pomelo-screenshot2.png ├── pomelo-screenshot3.png ├── pomelo-screenshot4.png ├── pomelo-smooth-geometry.png ├── pomelo.nsi ├── pomelo_logo.ico ├── profile-editor-example.png ├── src ├── add-layer-icon.svg ├── add-node-icon.svg ├── bezier-intersect.cc ├── bezier-intersect.h ├── cairo-flatten-by-bitmap.cc ├── cairo-flatten-by-bitmap.h ├── corner-icon.svg ├── dov-mm-macros.h ├── fragment-edge-matcap.glsl ├── fragment-edge.glsl ├── fragment-matcap.glsl ├── fragment.glsl ├── giv-debug-utils.cc ├── giv-debug-utils.h ├── giv-widget │ ├── GivPainter.h │ ├── GivPainterAgg.cc │ ├── GivPainterAgg.h │ ├── GivPainterCairo.cc │ ├── GivPainterCairo.h │ ├── GivPainterCairoPixbuf.cc │ ├── GivPainterCairoPixbuf.h │ ├── GivRenderer.cc │ ├── GivRenderer.h │ ├── GivStringArray.c │ ├── GivStringArray.h │ ├── WordBoundaries.cc │ ├── WordBoundaries.h │ ├── agg │ │ ├── agg_allocator.h │ │ ├── agg_alpha_mask_u8.h │ │ ├── agg_arc.cpp │ │ ├── agg_arc.h │ │ ├── agg_array.h │ │ ├── agg_arrowhead.cpp │ │ ├── agg_arrowhead.h │ │ ├── agg_basics.h │ │ ├── agg_bezier_arc.cpp │ │ ├── agg_bezier_arc.h │ │ ├── agg_bitset_iterator.h │ │ ├── agg_blur.h │ │ ├── agg_bounding_rect.h │ │ ├── agg_bspline.cpp │ │ ├── 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.cpp │ │ ├── agg_curves.h │ │ ├── agg_dda_line.h │ │ ├── agg_ellipse.h │ │ ├── agg_ellipse_bresenham.h │ │ ├── agg_embedded_raster_fonts.cpp │ │ ├── agg_embedded_raster_fonts.h │ │ ├── agg_font_cache_manager.h │ │ ├── agg_gamma_functions.h │ │ ├── agg_gamma_lut.h │ │ ├── agg_glyph_raster_bin.h │ │ ├── agg_gradient_lut.h │ │ ├── agg_gsv_text.cpp │ │ ├── agg_gsv_text.h │ │ ├── agg_image_accessors.h │ │ ├── agg_image_filters.cpp │ │ ├── agg_image_filters.h │ │ ├── agg_line_aa_basics.cpp │ │ ├── agg_line_aa_basics.h │ │ ├── agg_line_profile_aa.cpp │ │ ├── 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_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_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.cpp │ │ ├── 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_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_sqrt_tables.cpp │ │ ├── agg_svg_exception.h │ │ ├── agg_svg_gradient.cpp │ │ ├── agg_svg_gradient.h │ │ ├── agg_svg_parser.cpp │ │ ├── agg_svg_parser.h │ │ ├── agg_svg_path_renderer.cpp │ │ ├── agg_svg_path_renderer.h │ │ ├── agg_svg_path_tokenizer.cpp │ │ ├── agg_svg_path_tokenizer.h │ │ ├── agg_trans_affine.cpp │ │ ├── agg_trans_affine.h │ │ ├── agg_trans_bilinear.h │ │ ├── agg_trans_double_path.cpp │ │ ├── agg_trans_double_path.h │ │ ├── agg_trans_perspective.h │ │ ├── agg_trans_single_path.cpp │ │ ├── agg_trans_single_path.h │ │ ├── agg_trans_viewport.h │ │ ├── agg_trans_warp_magnifier.cpp │ │ ├── agg_trans_warp_magnifier.h │ │ ├── agg_vcgen_bspline.cpp │ │ ├── agg_vcgen_bspline.h │ │ ├── agg_vcgen_contour.cpp │ │ ├── agg_vcgen_contour.h │ │ ├── agg_vcgen_dash.cpp │ │ ├── agg_vcgen_dash.h │ │ ├── agg_vcgen_markers_term.cpp │ │ ├── agg_vcgen_markers_term.h │ │ ├── agg_vcgen_smooth_poly1.cpp │ │ ├── agg_vcgen_smooth_poly1.h │ │ ├── agg_vcgen_stroke.cpp │ │ ├── agg_vcgen_stroke.h │ │ ├── agg_vcgen_vertex_sequence.h │ │ ├── agg_vertex_sequence.h │ │ ├── agg_vpgen_clip_polygon.cpp │ │ ├── agg_vpgen_clip_polygon.h │ │ ├── agg_vpgen_clip_polyline.cpp │ │ ├── agg_vpgen_clip_polyline.h │ │ ├── agg_vpgen_segmentator.cpp │ │ ├── agg_vpgen_segmentator.h │ │ └── meson.build │ ├── agg_conv_clipper.h │ ├── clipper.cpp │ ├── clipper.hpp │ ├── colormaps.cc │ ├── colormaps.h │ ├── giv-data.cc │ ├── giv-data.h │ ├── giv-markup.cc │ ├── giv-markup.h │ ├── giv-parser.cc │ ├── giv-parser.h │ ├── giv-settings-editor.cc │ ├── giv-settings-editor.h │ ├── giv-settings.cc │ ├── giv-settings.h │ ├── giv-widget.gob │ ├── giv_agg_arrowhead.cc │ ├── giv_agg_arrowhead.h │ ├── gtk-image-viewer │ │ ├── gtk-image-viewer.gob │ │ ├── meson.build │ │ └── patch_src.py │ ├── meson.build │ └── plis │ │ ├── meson.build │ │ ├── plis.cc │ │ ├── plis.h │ │ └── plis_regexp.h ├── hello-gtkmm.ico ├── image-tracer-bw.cc ├── image-tracer-bw.h ├── main-input.cc ├── main-input.h ├── mesh-utils-save.cc ├── mesh-utils.cc ├── mesh-utils.h ├── mesh-viewer.cc ├── mesh-viewer.h ├── mesh.cc ├── mesh.h ├── meson.build ├── pango-to-cairo.cc ├── pango-to-cairo.h ├── path-extractor.cc ├── path-extractor.h ├── pomelo-cli.cc ├── pomelo-main.cc ├── pomelo-settings.cc ├── pomelo-settings.h ├── pomelo-widget-utils.cc ├── pomelo-widget-utils.h ├── pomelo.cc ├── pomelo.h ├── pomelo.rc ├── profile-editor-window.cc ├── profile-editor-window.h ├── profile-editor.cc ├── profile-editor.h ├── profile.cc ├── profile.h ├── progress-dialog.cc ├── progress-dialog.h ├── remove-layer-icon.svg ├── remove-node-icon.svg ├── resources.xml ├── round-icon.svg ├── round-symmetric-icon.svg ├── settings-dialog.cc ├── settings-dialog.h ├── skeleton-viewer.cc ├── skeleton-viewer.h ├── smooth-sharp-angles.cc ├── smooth-sharp-angles.h ├── split-icon.svg ├── svgpath-to-cairo.cc ├── svgpath-to-cairo.h ├── test-pango-to-cairo.cc ├── test-path-extractor.cc ├── test-profile-editor.cc ├── test-svg-to-skeleton.cc ├── test-svgpath-to-cairo.cc ├── textrusion.cc ├── textrusion.h ├── trackball.cc ├── trackball.h ├── utils.cc ├── utils.h ├── vertex-matcap.glsl ├── vertex.glsl ├── worker-skeleton.cc └── worker-skeleton.h └── subprojects ├── fmt.wrap ├── glm.wrap ├── gob2.wrap ├── nanosvg.wrap ├── nlohmann_json.wrap ├── spdlog.wrap └── tinygltf.wrap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/.gitignore -------------------------------------------------------------------------------- /3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/3D.png -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/COPYING -------------------------------------------------------------------------------- /DumpLog.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/DumpLog.nsh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/README.md -------------------------------------------------------------------------------- /TechnicalDescription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/TechnicalDescription.md -------------------------------------------------------------------------------- /cross_mingw64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/cross_mingw64.txt -------------------------------------------------------------------------------- /images/pomelo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/images/pomelo_logo.png -------------------------------------------------------------------------------- /images/pomelo_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/images/pomelo_logo.svg -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/meson.build -------------------------------------------------------------------------------- /pomelo-non-smooth-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-non-smooth-geometry.png -------------------------------------------------------------------------------- /pomelo-screenshot-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-screenshot-color.png -------------------------------------------------------------------------------- /pomelo-screenshot-curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-screenshot-curve.png -------------------------------------------------------------------------------- /pomelo-screenshot-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-screenshot-simple.png -------------------------------------------------------------------------------- /pomelo-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-screenshot.png -------------------------------------------------------------------------------- /pomelo-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-screenshot2.png -------------------------------------------------------------------------------- /pomelo-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-screenshot3.png -------------------------------------------------------------------------------- /pomelo-screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-screenshot4.png -------------------------------------------------------------------------------- /pomelo-smooth-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo-smooth-geometry.png -------------------------------------------------------------------------------- /pomelo.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo.nsi -------------------------------------------------------------------------------- /pomelo_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/pomelo_logo.ico -------------------------------------------------------------------------------- /profile-editor-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/profile-editor-example.png -------------------------------------------------------------------------------- /src/add-layer-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/add-layer-icon.svg -------------------------------------------------------------------------------- /src/add-node-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/add-node-icon.svg -------------------------------------------------------------------------------- /src/bezier-intersect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/bezier-intersect.cc -------------------------------------------------------------------------------- /src/bezier-intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/bezier-intersect.h -------------------------------------------------------------------------------- /src/cairo-flatten-by-bitmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/cairo-flatten-by-bitmap.cc -------------------------------------------------------------------------------- /src/cairo-flatten-by-bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/cairo-flatten-by-bitmap.h -------------------------------------------------------------------------------- /src/corner-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/corner-icon.svg -------------------------------------------------------------------------------- /src/dov-mm-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/dov-mm-macros.h -------------------------------------------------------------------------------- /src/fragment-edge-matcap.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/fragment-edge-matcap.glsl -------------------------------------------------------------------------------- /src/fragment-edge.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/fragment-edge.glsl -------------------------------------------------------------------------------- /src/fragment-matcap.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/fragment-matcap.glsl -------------------------------------------------------------------------------- /src/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/fragment.glsl -------------------------------------------------------------------------------- /src/giv-debug-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-debug-utils.cc -------------------------------------------------------------------------------- /src/giv-debug-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-debug-utils.h -------------------------------------------------------------------------------- /src/giv-widget/GivPainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivPainter.h -------------------------------------------------------------------------------- /src/giv-widget/GivPainterAgg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivPainterAgg.cc -------------------------------------------------------------------------------- /src/giv-widget/GivPainterAgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivPainterAgg.h -------------------------------------------------------------------------------- /src/giv-widget/GivPainterCairo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivPainterCairo.cc -------------------------------------------------------------------------------- /src/giv-widget/GivPainterCairo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivPainterCairo.h -------------------------------------------------------------------------------- /src/giv-widget/GivPainterCairoPixbuf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivPainterCairoPixbuf.cc -------------------------------------------------------------------------------- /src/giv-widget/GivPainterCairoPixbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivPainterCairoPixbuf.h -------------------------------------------------------------------------------- /src/giv-widget/GivRenderer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivRenderer.cc -------------------------------------------------------------------------------- /src/giv-widget/GivRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivRenderer.h -------------------------------------------------------------------------------- /src/giv-widget/GivStringArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivStringArray.c -------------------------------------------------------------------------------- /src/giv-widget/GivStringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/GivStringArray.h -------------------------------------------------------------------------------- /src/giv-widget/WordBoundaries.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/WordBoundaries.cc -------------------------------------------------------------------------------- /src/giv-widget/WordBoundaries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/WordBoundaries.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_allocator.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_alpha_mask_u8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_alpha_mask_u8.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_arc.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_arc.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_array.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_arrowhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_arrowhead.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_arrowhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_arrowhead.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_basics.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_bezier_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_bezier_arc.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_bezier_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_bezier_arc.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_bitset_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_bitset_iterator.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_blur.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_bounding_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_bounding_rect.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_bspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_bspline.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_bspline.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_clip_liang_barsky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_clip_liang_barsky.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_color_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_color_gray.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_color_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_color_rgba.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_config.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_adaptor_vcgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_adaptor_vcgen.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_adaptor_vpgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_adaptor_vpgen.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_bspline.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_clip_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_clip_polygon.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_clip_polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_clip_polyline.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_close_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_close_polygon.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_concat.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_contour.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_curve.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_dash.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_gpc.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_marker.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_marker_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_marker_adaptor.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_segmentator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_segmentator.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_shorten_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_shorten_path.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_smooth_poly1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_smooth_poly1.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_stroke.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_transform.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_conv_unclose_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_conv_unclose_polygon.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_curves.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_curves.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_dda_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_dda_line.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_ellipse.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_ellipse_bresenham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_ellipse_bresenham.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_embedded_raster_fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_embedded_raster_fonts.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_embedded_raster_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_embedded_raster_fonts.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_font_cache_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_font_cache_manager.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_gamma_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_gamma_functions.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_gamma_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_gamma_lut.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_glyph_raster_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_glyph_raster_bin.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_gradient_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_gradient_lut.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_gsv_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_gsv_text.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_gsv_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_gsv_text.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_image_accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_image_accessors.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_image_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_image_filters.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_image_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_image_filters.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_line_aa_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_line_aa_basics.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_line_aa_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_line_aa_basics.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_line_profile_aa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_line_profile_aa.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_math.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_math_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_math_stroke.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_path_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_path_length.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_path_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_path_storage.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_path_storage_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_path_storage_integer.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_pattern_filters_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_pattern_filters_rgba.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_pixfmt_amask_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_pixfmt_amask_adaptor.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_pixfmt_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_pixfmt_gray.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_pixfmt_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_pixfmt_rgb.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_pixfmt_rgb_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_pixfmt_rgb_packed.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_pixfmt_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_pixfmt_rgba.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_pixfmt_transposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_pixfmt_transposer.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rasterizer_cells_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rasterizer_cells_aa.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rasterizer_compound_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rasterizer_compound_aa.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rasterizer_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rasterizer_outline.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rasterizer_outline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rasterizer_outline_aa.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rasterizer_scanline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rasterizer_scanline_aa.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rasterizer_sl_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rasterizer_sl_clip.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_renderer_base.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_renderer_markers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_renderer_markers.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_renderer_mclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_renderer_mclip.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_renderer_outline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_renderer_outline_aa.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_renderer_outline_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_renderer_outline_image.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_renderer_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_renderer_primitives.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_renderer_raster_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_renderer_raster_text.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_renderer_scanline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_renderer_scanline.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rendering_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rendering_buffer.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rendering_buffer_dynarow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rendering_buffer_dynarow.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rounded_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rounded_rect.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_rounded_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_rounded_rect.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_scanline_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_scanline_bin.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_scanline_boolean_algebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_scanline_boolean_algebra.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_scanline_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_scanline_p.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_scanline_storage_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_scanline_storage_aa.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_scanline_storage_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_scanline_storage_bin.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_scanline_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_scanline_u.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_shorten_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_shorten_path.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_simul_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_simul_eq.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_allocator.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_converter.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_gouraud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_gouraud.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_gouraud_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_gouraud_gray.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_gouraud_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_gouraud_rgba.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_gradient.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_gradient_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_gradient_alpha.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_image_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_image_filter.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_image_filter_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_image_filter_gray.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_image_filter_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_image_filter_rgb.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_image_filter_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_image_filter_rgba.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_interpolator_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_interpolator_adaptor.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_interpolator_linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_interpolator_linear.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_interpolator_persp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_interpolator_persp.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_interpolator_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_interpolator_trans.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_pattern_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_pattern_gray.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_pattern_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_pattern_rgb.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_pattern_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_pattern_rgba.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_solid.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_span_subdiv_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_span_subdiv_adaptor.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_sqrt_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_sqrt_tables.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_exception.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_gradient.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_gradient.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_parser.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_parser.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_path_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_path_renderer.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_path_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_path_renderer.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_path_tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_path_tokenizer.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_svg_path_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_svg_path_tokenizer.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_affine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_affine.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_affine.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_bilinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_bilinear.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_double_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_double_path.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_double_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_double_path.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_perspective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_perspective.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_single_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_single_path.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_single_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_single_path.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_viewport.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_warp_magnifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_warp_magnifier.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_trans_warp_magnifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_trans_warp_magnifier.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_bspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_bspline.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_bspline.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_contour.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_contour.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_dash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_dash.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_dash.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_markers_term.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_markers_term.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_markers_term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_markers_term.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_smooth_poly1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_smooth_poly1.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_smooth_poly1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_smooth_poly1.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_stroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_stroke.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_stroke.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vcgen_vertex_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vcgen_vertex_sequence.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vertex_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vertex_sequence.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vpgen_clip_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vpgen_clip_polygon.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vpgen_clip_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vpgen_clip_polygon.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vpgen_clip_polyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vpgen_clip_polyline.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vpgen_clip_polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vpgen_clip_polyline.h -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vpgen_segmentator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vpgen_segmentator.cpp -------------------------------------------------------------------------------- /src/giv-widget/agg/agg_vpgen_segmentator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/agg_vpgen_segmentator.h -------------------------------------------------------------------------------- /src/giv-widget/agg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg/meson.build -------------------------------------------------------------------------------- /src/giv-widget/agg_conv_clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/agg_conv_clipper.h -------------------------------------------------------------------------------- /src/giv-widget/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/clipper.cpp -------------------------------------------------------------------------------- /src/giv-widget/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/clipper.hpp -------------------------------------------------------------------------------- /src/giv-widget/colormaps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/colormaps.cc -------------------------------------------------------------------------------- /src/giv-widget/colormaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/colormaps.h -------------------------------------------------------------------------------- /src/giv-widget/giv-data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-data.cc -------------------------------------------------------------------------------- /src/giv-widget/giv-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-data.h -------------------------------------------------------------------------------- /src/giv-widget/giv-markup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-markup.cc -------------------------------------------------------------------------------- /src/giv-widget/giv-markup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-markup.h -------------------------------------------------------------------------------- /src/giv-widget/giv-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-parser.cc -------------------------------------------------------------------------------- /src/giv-widget/giv-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-parser.h -------------------------------------------------------------------------------- /src/giv-widget/giv-settings-editor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-settings-editor.cc -------------------------------------------------------------------------------- /src/giv-widget/giv-settings-editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-settings-editor.h -------------------------------------------------------------------------------- /src/giv-widget/giv-settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-settings.cc -------------------------------------------------------------------------------- /src/giv-widget/giv-settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-settings.h -------------------------------------------------------------------------------- /src/giv-widget/giv-widget.gob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv-widget.gob -------------------------------------------------------------------------------- /src/giv-widget/giv_agg_arrowhead.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv_agg_arrowhead.cc -------------------------------------------------------------------------------- /src/giv-widget/giv_agg_arrowhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/giv_agg_arrowhead.h -------------------------------------------------------------------------------- /src/giv-widget/gtk-image-viewer/gtk-image-viewer.gob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/gtk-image-viewer/gtk-image-viewer.gob -------------------------------------------------------------------------------- /src/giv-widget/gtk-image-viewer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/gtk-image-viewer/meson.build -------------------------------------------------------------------------------- /src/giv-widget/gtk-image-viewer/patch_src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/gtk-image-viewer/patch_src.py -------------------------------------------------------------------------------- /src/giv-widget/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/meson.build -------------------------------------------------------------------------------- /src/giv-widget/plis/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/plis/meson.build -------------------------------------------------------------------------------- /src/giv-widget/plis/plis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/plis/plis.cc -------------------------------------------------------------------------------- /src/giv-widget/plis/plis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/plis/plis.h -------------------------------------------------------------------------------- /src/giv-widget/plis/plis_regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/giv-widget/plis/plis_regexp.h -------------------------------------------------------------------------------- /src/hello-gtkmm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/hello-gtkmm.ico -------------------------------------------------------------------------------- /src/image-tracer-bw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/image-tracer-bw.cc -------------------------------------------------------------------------------- /src/image-tracer-bw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/image-tracer-bw.h -------------------------------------------------------------------------------- /src/main-input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/main-input.cc -------------------------------------------------------------------------------- /src/main-input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/main-input.h -------------------------------------------------------------------------------- /src/mesh-utils-save.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/mesh-utils-save.cc -------------------------------------------------------------------------------- /src/mesh-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/mesh-utils.cc -------------------------------------------------------------------------------- /src/mesh-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/mesh-utils.h -------------------------------------------------------------------------------- /src/mesh-viewer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/mesh-viewer.cc -------------------------------------------------------------------------------- /src/mesh-viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/mesh-viewer.h -------------------------------------------------------------------------------- /src/mesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/mesh.cc -------------------------------------------------------------------------------- /src/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/mesh.h -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/pango-to-cairo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pango-to-cairo.cc -------------------------------------------------------------------------------- /src/pango-to-cairo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pango-to-cairo.h -------------------------------------------------------------------------------- /src/path-extractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/path-extractor.cc -------------------------------------------------------------------------------- /src/path-extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/path-extractor.h -------------------------------------------------------------------------------- /src/pomelo-cli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pomelo-cli.cc -------------------------------------------------------------------------------- /src/pomelo-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pomelo-main.cc -------------------------------------------------------------------------------- /src/pomelo-settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pomelo-settings.cc -------------------------------------------------------------------------------- /src/pomelo-settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pomelo-settings.h -------------------------------------------------------------------------------- /src/pomelo-widget-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pomelo-widget-utils.cc -------------------------------------------------------------------------------- /src/pomelo-widget-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pomelo-widget-utils.h -------------------------------------------------------------------------------- /src/pomelo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pomelo.cc -------------------------------------------------------------------------------- /src/pomelo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/pomelo.h -------------------------------------------------------------------------------- /src/pomelo.rc: -------------------------------------------------------------------------------- 1 | id ICON "../pomelo_logo.ico" 2 | -------------------------------------------------------------------------------- /src/profile-editor-window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/profile-editor-window.cc -------------------------------------------------------------------------------- /src/profile-editor-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/profile-editor-window.h -------------------------------------------------------------------------------- /src/profile-editor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/profile-editor.cc -------------------------------------------------------------------------------- /src/profile-editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/profile-editor.h -------------------------------------------------------------------------------- /src/profile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/profile.cc -------------------------------------------------------------------------------- /src/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/profile.h -------------------------------------------------------------------------------- /src/progress-dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/progress-dialog.cc -------------------------------------------------------------------------------- /src/progress-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/progress-dialog.h -------------------------------------------------------------------------------- /src/remove-layer-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/remove-layer-icon.svg -------------------------------------------------------------------------------- /src/remove-node-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/remove-node-icon.svg -------------------------------------------------------------------------------- /src/resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/resources.xml -------------------------------------------------------------------------------- /src/round-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/round-icon.svg -------------------------------------------------------------------------------- /src/round-symmetric-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/round-symmetric-icon.svg -------------------------------------------------------------------------------- /src/settings-dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/settings-dialog.cc -------------------------------------------------------------------------------- /src/settings-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/settings-dialog.h -------------------------------------------------------------------------------- /src/skeleton-viewer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/skeleton-viewer.cc -------------------------------------------------------------------------------- /src/skeleton-viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/skeleton-viewer.h -------------------------------------------------------------------------------- /src/smooth-sharp-angles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/smooth-sharp-angles.cc -------------------------------------------------------------------------------- /src/smooth-sharp-angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/smooth-sharp-angles.h -------------------------------------------------------------------------------- /src/split-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/split-icon.svg -------------------------------------------------------------------------------- /src/svgpath-to-cairo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/svgpath-to-cairo.cc -------------------------------------------------------------------------------- /src/svgpath-to-cairo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/svgpath-to-cairo.h -------------------------------------------------------------------------------- /src/test-pango-to-cairo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/test-pango-to-cairo.cc -------------------------------------------------------------------------------- /src/test-path-extractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/test-path-extractor.cc -------------------------------------------------------------------------------- /src/test-profile-editor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/test-profile-editor.cc -------------------------------------------------------------------------------- /src/test-svg-to-skeleton.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/test-svg-to-skeleton.cc -------------------------------------------------------------------------------- /src/test-svgpath-to-cairo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/test-svgpath-to-cairo.cc -------------------------------------------------------------------------------- /src/textrusion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/textrusion.cc -------------------------------------------------------------------------------- /src/textrusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/textrusion.h -------------------------------------------------------------------------------- /src/trackball.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/trackball.cc -------------------------------------------------------------------------------- /src/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/trackball.h -------------------------------------------------------------------------------- /src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/utils.cc -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/vertex-matcap.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/vertex-matcap.glsl -------------------------------------------------------------------------------- /src/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/vertex.glsl -------------------------------------------------------------------------------- /src/worker-skeleton.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/worker-skeleton.cc -------------------------------------------------------------------------------- /src/worker-skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/src/worker-skeleton.h -------------------------------------------------------------------------------- /subprojects/fmt.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/subprojects/fmt.wrap -------------------------------------------------------------------------------- /subprojects/glm.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/subprojects/glm.wrap -------------------------------------------------------------------------------- /subprojects/gob2.wrap: -------------------------------------------------------------------------------- 1 | [wrap-git] 2 | url = http://github.com/dov/gob2 3 | revision = cpp-new 4 | -------------------------------------------------------------------------------- /subprojects/nanosvg.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/subprojects/nanosvg.wrap -------------------------------------------------------------------------------- /subprojects/nlohmann_json.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/subprojects/nlohmann_json.wrap -------------------------------------------------------------------------------- /subprojects/spdlog.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/subprojects/spdlog.wrap -------------------------------------------------------------------------------- /subprojects/tinygltf.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dov/pomelo/HEAD/subprojects/tinygltf.wrap --------------------------------------------------------------------------------