From da9d89d94406855953ab9470aa16a5354eba0e6a Mon Sep 17 00:00:00 2001 From: MalikIdreesHasa <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 08:09:57 +0000 Subject: [PATCH 01/13] Fixed Typos --- .replit | 2 ++ .../include/platform/agg_platform_support.h | 14 +++++----- .../include/util/agg_color_conv_rgb16.h | 2 +- .../include/util/agg_color_conv_rgb8.h | 2 +- extern/agg24-svn/src/agg_image_filters.cpp | 2 +- .../agg24-svn/src/agg_vcgen_markers_term.cpp | 2 +- .../platform/BeOS/agg_platform_support.cpp | 2 +- .../src/platform/X11/agg_platform_support.cpp | 2 +- .../src/platform/mac/agg_mac_pmap.cpp | 4 +-- extern/ttconv/pprdrv_tt.cpp | 26 +++++++++---------- extern/ttconv/pprdrv_tt2.cpp | 6 ++--- lib/{matplotlib => }/axes/__init__.py | 0 lib/{matplotlib => }/axes/_axes.py | 0 lib/{matplotlib => }/axes/_base.py | 0 lib/{matplotlib => }/axes/_secondary_axes.py | 0 lib/{matplotlib => }/axes/_subplots.py | 0 lib/mpl_toolkits/{mplot3d => }/art3d.py | 0 17 files changed, 33 insertions(+), 31 deletions(-) create mode 100644 .replit rename lib/{matplotlib => }/axes/__init__.py (100%) rename lib/{matplotlib => }/axes/_axes.py (100%) rename lib/{matplotlib => }/axes/_base.py (100%) rename lib/{matplotlib => }/axes/_secondary_axes.py (100%) rename lib/{matplotlib => }/axes/_subplots.py (100%) rename lib/mpl_toolkits/{mplot3d => }/art3d.py (100%) diff --git a/.replit b/.replit new file mode 100644 index 000000000000..2aff877bf2f9 --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "bash" +run = "" \ No newline at end of file diff --git a/extern/agg24-svn/include/platform/agg_platform_support.h b/extern/agg24-svn/include/platform/agg_platform_support.h index 9a63411e5084..7c365c0a85ac 100644 --- a/extern/agg24-svn/include/platform/agg_platform_support.h +++ b/extern/agg24-svn/include/platform/agg_platform_support.h @@ -81,7 +81,7 @@ namespace agg // Possible formats of the rendering buffer. Initially I thought that it's // reasonable to create the buffer and the rendering functions in // accordance with the native pixel format of the system because it - // would have no overhead for pixel format conersion. + // would have no overhead for pixel format conversion. // But eventually I came to a conclusion that having a possibility to // convert pixel formats on demand is a good idea. First, it was X11 where // there lots of different formats and visuals and it would be great to @@ -153,7 +153,7 @@ namespace agg // In the method on_mouse_button_up() the mouse flags have different // meaning. They mean that the respective button is being released, but // the meaning of the keyboard flags remains the same. - // There's absolut minimal set of flags is used because they'll be most + // There's absolute minimal set of flags is used because they'll be most // probably supported on different platforms. Even the mouse_right flag // is restricted because Mac's mice have only one button, but AFAIK // it can be simulated with holding a special key on the keydoard. @@ -369,7 +369,7 @@ namespace agg //---------------------------------------------------------platform_support - // This class is a base one to the apllication classes. It can be used + // This class is a base one to the application classes. It can be used // as follows: // // class the_application : public agg::platform_support @@ -467,7 +467,7 @@ namespace agg unsigned bpp() const { return m_bpp; } //-------------------------------------------------------------------- - // The following provides a very simple mechanism of doing someting + // The following provides a very simple mechanism of doing something // in background. It's not multithreading. When wait_mode is true // the class waits for the events and it does not ever call on_idle(). // When it's false it calls on_idle() when the event queue is empty. @@ -489,7 +489,7 @@ namespace agg void update_window(); //-------------------------------------------------------------------- - // So, finally, how to draw anythig with AGG? Very simple. + // So, finally, how to draw anything with AGG? Very simple. // rbuf_window() returns a reference to the main rendering // buffer which can be attached to any rendering class. // rbuf_img() returns a reference to the previously created @@ -544,9 +544,9 @@ namespace agg // to override them all. // In my demo applications these functions are defined inside // the the_application class (implicit inlining) which is in general - // very bad practice, I mean vitual inline methods. At least it does + // very bad practice, I mean virtual inline methods. At least it does // not make sense. - // But in this case it's quite appropriate bacause we have the only + // But in this case it's quite appropriate because we have the only // instance of the the_application class and it is in the same file // where this class is defined. virtual void on_init(); diff --git a/extern/agg24-svn/include/util/agg_color_conv_rgb16.h b/extern/agg24-svn/include/util/agg_color_conv_rgb16.h index aaa41322c5b3..455274ede609 100644 --- a/extern/agg24-svn/include/util/agg_color_conv_rgb16.h +++ b/extern/agg24-svn/include/util/agg_color_conv_rgb16.h @@ -23,7 +23,7 @@ // // A set of functors used with color_conv(). See file agg_color_conv.h // These functors can convert images with up to 8 bits per component. -// Use convertors in the following way: +// Use converters in the following way: // // agg::color_conv(dst, src, agg::color_conv_XXXX_to_YYYY()); //---------------------------------------------------------------------------- diff --git a/extern/agg24-svn/include/util/agg_color_conv_rgb8.h b/extern/agg24-svn/include/util/agg_color_conv_rgb8.h index 609460dba413..76125936f2d9 100644 --- a/extern/agg24-svn/include/util/agg_color_conv_rgb8.h +++ b/extern/agg24-svn/include/util/agg_color_conv_rgb8.h @@ -15,7 +15,7 @@ // // A set of functors used with color_conv(). See file agg_color_conv.h // These functors can convert images with up to 8 bits per component. -// Use convertors in the following way: +// Use converters in the following way: // // agg::color_conv(dst, src, agg::color_conv_XXXX_to_YYYY()); // whare XXXX and YYYY can be any of: diff --git a/extern/agg24-svn/src/agg_image_filters.cpp b/extern/agg24-svn/src/agg_image_filters.cpp index 549d9adbf5af..10ce60d8a299 100644 --- a/extern/agg24-svn/src/agg_image_filters.cpp +++ b/extern/agg24-svn/src/agg_image_filters.cpp @@ -13,7 +13,7 @@ // http://www.antigrain.com //---------------------------------------------------------------------------- // -// Filtering class image_filter_lut implemantation +// Filtering class image_filter_lut implementation // //---------------------------------------------------------------------------- diff --git a/extern/agg24-svn/src/agg_vcgen_markers_term.cpp b/extern/agg24-svn/src/agg_vcgen_markers_term.cpp index 3374ab5e82a2..2c77a5684918 100644 --- a/extern/agg24-svn/src/agg_vcgen_markers_term.cpp +++ b/extern/agg24-svn/src/agg_vcgen_markers_term.cpp @@ -37,7 +37,7 @@ namespace agg if(m_markers.size() & 1) { // Initial state, the first coordinate was added. - // If two of more calls of start_vertex() occures + // If two of more calls of start_vertex() occurs // we just modify the last one. m_markers.modify_last(coord_type(x, y)); } diff --git a/extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp b/extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp index 078e141ccb0a..cca37de613c0 100644 --- a/extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp +++ b/extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp @@ -414,7 +414,7 @@ AGGView::MouseDown(BPoint where) void AGGView::MouseMoved(BPoint where, uint32 transit, const BMessage* dragMesage) { - // workarround missed mouse up events + // workaround missed mouse up events // (if we react too slowly, app_server might have dropped events) BMessage* currentMessage = Window()->CurrentMessage(); int32 buttons = 0; diff --git a/extern/agg24-svn/src/platform/X11/agg_platform_support.cpp b/extern/agg24-svn/src/platform/X11/agg_platform_support.cpp index 46b874d73857..ada4f66bacdb 100644 --- a/extern/agg24-svn/src/platform/X11/agg_platform_support.cpp +++ b/extern/agg24-svn/src/platform/X11/agg_platform_support.cpp @@ -560,7 +560,7 @@ namespace agg // { // // // This is an attempt to find an appropriate Visual if -// // the default one doesn't match the minumum requirements +// // the default one doesn't match the minimum requirements // static int depth[] = { 32, 24, 16, 15 }; // int i; // for(int i = 0; i < 4; i++) diff --git a/extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp b/extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp index dc85fd69ffd4..84731267ea0f 100644 --- a/extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp +++ b/extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp @@ -85,9 +85,9 @@ namespace agg //static - //This function is just copied from the Win32 plattform support. + //This function is just copied from the Win32 platform support. //Is also seems to be appropriate for MacOS as well, but it is not - //thouroughly tested so far. + //thoroughly tested so far. //------------------------------------------------------------------------ unsigned pixel_map::calc_row_len(unsigned width, unsigned bits_per_pixel) diff --git a/extern/ttconv/pprdrv_tt.cpp b/extern/ttconv/pprdrv_tt.cpp index a0c724c8aa11..3627fbb12469 100644 --- a/extern/ttconv/pprdrv_tt.cpp +++ b/extern/ttconv/pprdrv_tt.cpp @@ -619,7 +619,7 @@ void sfnts_end_string(TTStreamWriter& stream) /* ** This is called at the start of each new table. -** The argement is the length in bytes of the table +** The argument is the length in bytes of the table ** which will follow. If the new table will not fit ** in the current string, a new one is started. */ @@ -742,7 +742,7 @@ void ttfont_sfnts(TTStreamWriter& stream, struct TTFONT *font) ULONG checksum; } tables[9]; - BYTE *ptr; /* A pointer into the origional table directory. */ + BYTE *ptr; /* A pointer into the origi nal table directory. */ ULONG x,y; /* General use loop countes. */ int c; /* Input character. */ int diff; @@ -821,7 +821,7 @@ void ttfont_sfnts(TTStreamWriter& stream, struct TTFONT *font) debug("only %d tables selected",count); - /* Now, emmit the table directory. */ + /* Now, emit the table directory. */ for (x=0; x < 9; x++) { if ( tables[x].length == 0 ) /* Skip missing tables */ @@ -852,7 +852,7 @@ void ttfont_sfnts(TTStreamWriter& stream, struct TTFONT *font) { continue; } - debug("emmiting table '%s'",table_names[x]); + debug("emitting table '%s'",table_names[x]); /* 'glyf' table gets special treatment */ if ( strcmp(table_names[x],"glyf")==0 ) @@ -910,7 +910,7 @@ void ttfont_sfnts(TTStreamWriter& stream, struct TTFONT *font) ** ** If we are creating a type 3 instead of a type 42 font, ** this array will instead convert PostScript character names -** to executable proceedures. +** to executable procedures. --------------------------------------------------------------*/ const char *Apple_CharStrings[]= { @@ -1022,12 +1022,12 @@ void ttfont_CharStrings(TTStreamWriter& stream, struct TTFONT *font, std::vector /* The 'post' table format number. */ post_format = getFixed( font->post_table ); - /* Emmit the start of the PostScript code to define the dictionary. */ + /* Emit the start of the PostScript code to define the dictionary. */ stream.printf("/CharStrings %d dict dup begin\n", glyph_ids.size()+1); /* Section 5.8.2 table 5.7 of the PS Language Ref says a CharStrings dictionary must contain an entry for .notdef */ stream.printf("/.notdef 0 def\n"); - /* Emmit one key-value pair for each glyph. */ + /* Emit one key-value pair for each glyph. */ for (std::vector::const_iterator i = glyph_ids.begin(); i != glyph_ids.end(); ++i) { @@ -1051,13 +1051,13 @@ void ttfont_CharStrings(TTStreamWriter& stream, struct TTFONT *font, std::vector } /* end of ttfont_CharStrings() */ /*---------------------------------------------------------------- -** Emmit the code to finish up the dictionary and turn +** Emit the code to finish up the dictionary and turn ** it into a font. ----------------------------------------------------------------*/ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font) { /* If we are generating a type 3 font, we need to provide */ - /* a BuildGlyph and BuildChar proceedures. */ + /* a BuildGlyph and BuildChar procedures. */ if (font->target_type == PS_TYPE_3 || font->target_type == PS_TYPE_42_3_HYBRID) { @@ -1072,7 +1072,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font) stream.put_char('\n'); - /* This proceedure is for compatibility with */ + /* This procedure is for compatibility with */ /* level 1 interpreters. */ stream.putline("/BuildChar {"); stream.putline(" 1 index /Encoding get exch get"); @@ -1127,7 +1127,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font) /* is a procedure. If it is, it executes it, otherwise, it */ /* lets the TrueType rasterizer loose on it. */ - /* When this proceedure is executed the stack contains */ + /* When this procedures is executed the stack contains */ /* the font dictionary and the character name. We */ /* exchange arguments and move the dictionary to the */ /* dictionary stack. */ @@ -1151,7 +1151,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font) stream.putline(" get dup xcheck"); /* stack: CharStrings_entry */ - /* If is a proceedure. Execute according to RBIIp 277-278. */ + /* If is a procedure, Execute according to RBIIp 277-278. */ stream.putline(" {currentdict systemdict begin begin exec end end}"); /* Is a TrueType character index, let the rasterizer at it. */ @@ -1294,7 +1294,7 @@ void read_font(const char *filename, font_type_enum target_type, std::vector Date: Sat, 25 Sep 2021 14:09:27 +0530 Subject: [PATCH 02/13] Update agg_platform_support.h --- .../include/platform/agg_platform_support.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/extern/agg24-svn/include/platform/agg_platform_support.h b/extern/agg24-svn/include/platform/agg_platform_support.h index 7c365c0a85ac..adf3f9fbdb26 100644 --- a/extern/agg24-svn/include/platform/agg_platform_support.h +++ b/extern/agg24-svn/include/platform/agg_platform_support.h @@ -81,7 +81,7 @@ namespace agg // Possible formats of the rendering buffer. Initially I thought that it's // reasonable to create the buffer and the rendering functions in // accordance with the native pixel format of the system because it - // would have no overhead for pixel format conversion. + // would have no overhead for pixel format conersion. // But eventually I came to a conclusion that having a possibility to // convert pixel formats on demand is a good idea. First, it was X11 where // there lots of different formats and visuals and it would be great to @@ -153,7 +153,7 @@ namespace agg // In the method on_mouse_button_up() the mouse flags have different // meaning. They mean that the respective button is being released, but // the meaning of the keyboard flags remains the same. - // There's absolute minimal set of flags is used because they'll be most + // There's absolut minimal set of flags is used because they'll be most // probably supported on different platforms. Even the mouse_right flag // is restricted because Mac's mice have only one button, but AFAIK // it can be simulated with holding a special key on the keydoard. @@ -369,7 +369,7 @@ namespace agg //---------------------------------------------------------platform_support - // This class is a base one to the application classes. It can be used + // This class is a base one to the apllication classes. It can be used // as follows: // // class the_application : public agg::platform_support @@ -467,7 +467,7 @@ namespace agg unsigned bpp() const { return m_bpp; } //-------------------------------------------------------------------- - // The following provides a very simple mechanism of doing something + // The following provides a very simple mechanism of doing someting // in background. It's not multithreading. When wait_mode is true // the class waits for the events and it does not ever call on_idle(). // When it's false it calls on_idle() when the event queue is empty. @@ -489,7 +489,7 @@ namespace agg void update_window(); //-------------------------------------------------------------------- - // So, finally, how to draw anything with AGG? Very simple. + // So, finally, how to draw anythig with AGG? Very simple. // rbuf_window() returns a reference to the main rendering // buffer which can be attached to any rendering class. // rbuf_img() returns a reference to the previously created @@ -544,9 +544,9 @@ namespace agg // to override them all. // In my demo applications these functions are defined inside // the the_application class (implicit inlining) which is in general - // very bad practice, I mean virtual inline methods. At least it does + // very bad practice, I mean vitual inline methods. At least it does // not make sense. - // But in this case it's quite appropriate because we have the only + // But in this case it's quite appropriate bacause we have the only // instance of the the_application class and it is in the same file // where this class is defined. virtual void on_init(); @@ -683,4 +683,3 @@ namespace agg #endif - From 430f0a827db5274abcd371f24fc06e3396350961 Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:12:01 +0530 Subject: [PATCH 03/13] Update agg_platform_support.h --- extern/agg24-svn/include/platform/agg_platform_support.h | 1 + 1 file changed, 1 insertion(+) diff --git a/extern/agg24-svn/include/platform/agg_platform_support.h b/extern/agg24-svn/include/platform/agg_platform_support.h index adf3f9fbdb26..9a63411e5084 100644 --- a/extern/agg24-svn/include/platform/agg_platform_support.h +++ b/extern/agg24-svn/include/platform/agg_platform_support.h @@ -683,3 +683,4 @@ namespace agg #endif + From 9740ef11abfaf6ddb50d50b791cbcabf0d93de47 Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:13:14 +0530 Subject: [PATCH 04/13] Update agg_color_conv_rgb16.h --- extern/agg24-svn/include/util/agg_color_conv_rgb16.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extern/agg24-svn/include/util/agg_color_conv_rgb16.h b/extern/agg24-svn/include/util/agg_color_conv_rgb16.h index 455274ede609..90ab7b8c0345 100644 --- a/extern/agg24-svn/include/util/agg_color_conv_rgb16.h +++ b/extern/agg24-svn/include/util/agg_color_conv_rgb16.h @@ -23,10 +23,10 @@ // // A set of functors used with color_conv(). See file agg_color_conv.h // These functors can convert images with up to 8 bits per component. -// Use converters in the following way: +// Use convertors in the following way: // // agg::color_conv(dst, src, agg::color_conv_XXXX_to_YYYY()); -//---------------------------------------------------------------------------- +//------------------------------------------------------------------------------------------------------------------------------------ #ifndef AGG_COLOR_CONV_RGB16_INCLUDED #define AGG_COLOR_CONV_RGB16_INCLUDED From 4e69d7e1eac2adc465c41cc1708740396a02627e Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:14:16 +0530 Subject: [PATCH 05/13] Update agg_color_conv_rgb16.h --- extern/agg24-svn/include/util/agg_color_conv_rgb16.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/agg24-svn/include/util/agg_color_conv_rgb16.h b/extern/agg24-svn/include/util/agg_color_conv_rgb16.h index 90ab7b8c0345..aaa41322c5b3 100644 --- a/extern/agg24-svn/include/util/agg_color_conv_rgb16.h +++ b/extern/agg24-svn/include/util/agg_color_conv_rgb16.h @@ -26,7 +26,7 @@ // Use convertors in the following way: // // agg::color_conv(dst, src, agg::color_conv_XXXX_to_YYYY()); -//------------------------------------------------------------------------------------------------------------------------------------ +//---------------------------------------------------------------------------- #ifndef AGG_COLOR_CONV_RGB16_INCLUDED #define AGG_COLOR_CONV_RGB16_INCLUDED From b44307168d127fc99819a7bc4c4d8424eb0a1686 Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:14:42 +0530 Subject: [PATCH 06/13] Update agg_color_conv_rgb8.h --- extern/agg24-svn/include/util/agg_color_conv_rgb8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/agg24-svn/include/util/agg_color_conv_rgb8.h b/extern/agg24-svn/include/util/agg_color_conv_rgb8.h index 76125936f2d9..609460dba413 100644 --- a/extern/agg24-svn/include/util/agg_color_conv_rgb8.h +++ b/extern/agg24-svn/include/util/agg_color_conv_rgb8.h @@ -15,7 +15,7 @@ // // A set of functors used with color_conv(). See file agg_color_conv.h // These functors can convert images with up to 8 bits per component. -// Use converters in the following way: +// Use convertors in the following way: // // agg::color_conv(dst, src, agg::color_conv_XXXX_to_YYYY()); // whare XXXX and YYYY can be any of: From 821957de69e9bc4dfb801c391f69389bdd1a4a6a Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:15:18 +0530 Subject: [PATCH 07/13] Update agg_image_filters.cpp --- extern/agg24-svn/src/agg_image_filters.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/agg24-svn/src/agg_image_filters.cpp b/extern/agg24-svn/src/agg_image_filters.cpp index 10ce60d8a299..a23821a4d3d2 100644 --- a/extern/agg24-svn/src/agg_image_filters.cpp +++ b/extern/agg24-svn/src/agg_image_filters.cpp @@ -13,7 +13,7 @@ // http://www.antigrain.com //---------------------------------------------------------------------------- // -// Filtering class image_filter_lut implementation +// // Filtering class image_filter_lut implemantation // //---------------------------------------------------------------------------- From e52ccae80b0e1ff912e30902f7722c6cf5e99eb1 Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:15:35 +0530 Subject: [PATCH 08/13] Update agg_image_filters.cpp --- extern/agg24-svn/src/agg_image_filters.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/agg24-svn/src/agg_image_filters.cpp b/extern/agg24-svn/src/agg_image_filters.cpp index a23821a4d3d2..549d9adbf5af 100644 --- a/extern/agg24-svn/src/agg_image_filters.cpp +++ b/extern/agg24-svn/src/agg_image_filters.cpp @@ -13,7 +13,7 @@ // http://www.antigrain.com //---------------------------------------------------------------------------- // -// // Filtering class image_filter_lut implemantation +// Filtering class image_filter_lut implemantation // //---------------------------------------------------------------------------- From 3ee576f2c8388dc463dc5a7e3cf2c7d38673488a Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:16:06 +0530 Subject: [PATCH 09/13] Update agg_vcgen_markers_term.cpp --- extern/agg24-svn/src/agg_vcgen_markers_term.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/agg24-svn/src/agg_vcgen_markers_term.cpp b/extern/agg24-svn/src/agg_vcgen_markers_term.cpp index 2c77a5684918..3374ab5e82a2 100644 --- a/extern/agg24-svn/src/agg_vcgen_markers_term.cpp +++ b/extern/agg24-svn/src/agg_vcgen_markers_term.cpp @@ -37,7 +37,7 @@ namespace agg if(m_markers.size() & 1) { // Initial state, the first coordinate was added. - // If two of more calls of start_vertex() occurs + // If two of more calls of start_vertex() occures // we just modify the last one. m_markers.modify_last(coord_type(x, y)); } From f8a1269685695edcb8aa2c11c72e6ac27eb61e77 Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:16:58 +0530 Subject: [PATCH 10/13] Update agg_platform_support.cpp --- extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp b/extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp index cca37de613c0..078e141ccb0a 100644 --- a/extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp +++ b/extern/agg24-svn/src/platform/BeOS/agg_platform_support.cpp @@ -414,7 +414,7 @@ AGGView::MouseDown(BPoint where) void AGGView::MouseMoved(BPoint where, uint32 transit, const BMessage* dragMesage) { - // workaround missed mouse up events + // workarround missed mouse up events // (if we react too slowly, app_server might have dropped events) BMessage* currentMessage = Window()->CurrentMessage(); int32 buttons = 0; From 99d6f97c05f561e66dfc5f46a29eca8b658ca0c0 Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:17:27 +0530 Subject: [PATCH 11/13] Update agg_mac_pmap.cpp --- extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp b/extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp index 84731267ea0f..dc85fd69ffd4 100644 --- a/extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp +++ b/extern/agg24-svn/src/platform/mac/agg_mac_pmap.cpp @@ -85,9 +85,9 @@ namespace agg //static - //This function is just copied from the Win32 platform support. + //This function is just copied from the Win32 plattform support. //Is also seems to be appropriate for MacOS as well, but it is not - //thoroughly tested so far. + //thouroughly tested so far. //------------------------------------------------------------------------ unsigned pixel_map::calc_row_len(unsigned width, unsigned bits_per_pixel) From 4de1fa7760e207bea00a47123e1f119c8f55b2f1 Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:18:29 +0530 Subject: [PATCH 12/13] Update agg_platform_support.cpp --- extern/agg24-svn/src/platform/X11/agg_platform_support.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/agg24-svn/src/platform/X11/agg_platform_support.cpp b/extern/agg24-svn/src/platform/X11/agg_platform_support.cpp index ada4f66bacdb..46b874d73857 100644 --- a/extern/agg24-svn/src/platform/X11/agg_platform_support.cpp +++ b/extern/agg24-svn/src/platform/X11/agg_platform_support.cpp @@ -560,7 +560,7 @@ namespace agg // { // // // This is an attempt to find an appropriate Visual if -// // the default one doesn't match the minimum requirements +// // the default one doesn't match the minumum requirements // static int depth[] = { 32, 24, 16, 15 }; // int i; // for(int i = 0; i < 4; i++) From 5498cf1eb524014a5b39559e8feb588abeb0d167 Mon Sep 17 00:00:00 2001 From: MalikIdreesHasanKhan <77000356+MalikIdreesHasanKhan@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:18:54 +0530 Subject: [PATCH 13/13] Update pprdrv_tt.cpp --- extern/ttconv/pprdrv_tt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/ttconv/pprdrv_tt.cpp b/extern/ttconv/pprdrv_tt.cpp index 3627fbb12469..d439af51d1f6 100644 --- a/extern/ttconv/pprdrv_tt.cpp +++ b/extern/ttconv/pprdrv_tt.cpp @@ -742,7 +742,7 @@ void ttfont_sfnts(TTStreamWriter& stream, struct TTFONT *font) ULONG checksum; } tables[9]; - BYTE *ptr; /* A pointer into the origi nal table directory. */ + BYTE *ptr; /* A pointer into the original table directory. */ ULONG x,y; /* General use loop countes. */ int c; /* Input character. */ int diff;