summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/polygon
AgeCommit message (Collapse)AuthorFilesLines
2012-01-27unusedcode.easy: Removed unused code (basegfx::B3DPolygon, ↵Alexander Bergmann2-13/+4
basegfx::B3DPolyPolygon)
2012-01-25Removing unused code (basegfx).Alexander Bergmann3-31/+0
2012-01-18Fix error in handling 'z' for svg:d string parsingThorsten Behrens1-2/+1
Previously 'z' did not update the current point to the start point of the subpath, as required by http://www.w3.org/TR/SVG/paths.html#PathDataClosePathCommand. Fixed now, and adapted all the unit tests.
2012-01-10callcatcher: update listCaolán McNamara1-17/+0
2011-12-22unusedcode: remove various unused classesMatúš Kukan1-145/+0
2011-12-13More efficient insertion of B3DPolygonsThorsten Behrens2-6/+6
* some cleanup - removed ugly-as-hell exposure of only parts of the internal data struct on B2DPolygon (and reworked the only client of that code) * added stl-style begin/end to B3DPolyPolygon as well, mirroring B2DPolyPolygon, plus adapting the insert() func to make use of that (avoiding loads of temporaries)
2011-12-01typo fix: explicitely -> explicitlyLior Kaplan2-2/+2
2011-06-19Merge branch 'master' into feature/gnumake4Bjoern Michaelsen17-3/+51
Conflicts: basebmp/prj/d.lst basebmp/test/basictest.cxx basebmp/test/makefile.mk basegfx/inc/basegfx/basegfxdllapi.h basegfx/inc/basegfx/tools/debugplotter.hxx basegfx/inc/basegfx/tuple/b2ituple.hxx basegfx/prj/d.lst basegfx/source/numeric/makefile.mk basegfx/source/polygon/makefile.mk basegfx/source/range/makefile.mk basegfx/source/raster/makefile.mk basegfx/source/tuple/makefile.mk basegfx/source/vector/makefile.mk basegfx/test/basegfx1d.cxx basegfx/test/makefile.mk basegfx/util/makefile.mk canvas/Library_canvasfactory.mk canvas/Module_canvas.mk canvas/prj/build.lst canvas/prj/d.lst canvas/source/cairo/cairo_canvashelper_texturefill.cxx canvas/source/cairo/makefile.mk canvas/source/tools/makefile.mk comphelper/qa/string/makefile.mk cppcanvas/Module_cppcanvas.mk cppcanvas/inc/cppcanvas/cppcanvasdllapi.h cppcanvas/prj/build.lst cppcanvas/prj/d.lst cppcanvas/source/mtfrenderer/makefile.mk cppcanvas/util/makefile.mk i18npool/source/search/makefile.mk regexp/Library_regexp.mk regexp/prj/d.lst sax/CppunitTest_sax.mk sax/Library_sax.mk sax/prj/d.lst sax/qa/cppunit/test_converter.cxx sax/source/expatwrap/attrlistimpl.hxx sax/util/makefile.mk svtools/Library_svt.mk tools/Executable_sspretty.mk ucbhelper/prj/d.lst ucbhelper/source/provider/configureucb.cxx ucbhelper/source/provider/provconf.cxx ucbhelper/util/makefile.mk unotools/Library_utl.mk unotools/Module_unotools.mk unotools/Package_inc.mk unotools/prj/build.lst vcl/Library_desktop_detector.mk vcl/Library_vcl.mk vcl/Library_vclplug_gtk.mk vcl/aqua/source/gdi/salprn.cxx vcl/inc/aqua/saldata.hxx vcl/unx/generic/gdi/salgdi3.cxx
2011-06-16CWS gnumake4: convert basegfx to new build system [hg:e8f9d107b59a]Mathias Bauer16-202/+218
2011-01-21Remove old RCS lines.Thomas Arnhold1-3/+0
2010-10-14Add vim/emacs modelines to all source filesSebastian Spaeth17-0/+51
Fixes #fdo30794 Based on bin/add-modelines script (originally posted in mail 1286706307.1871.1399280959@webmail.messagingengine.com) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-04-12Merged DEV300_m76thb3-0/+144
2010-03-31Merge DEV300_m75thb16-64/+16
* resolved two conflicts caused by lineend changes in canvashelper_texturefill.cxx and implrenderer.cxx. Took the cws version, which uses new texture fill semantics, and fixes clipping bug * binned file header changes from head for deleted files
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien17-69/+17
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2010-01-18thbfixes10: merge with DEV300 m69thb2-63/+3
2010-01-18#i52325# #i108250# removed B3DGeometry, fixed gradient/fill bitmapthb1-74/+0
* removed unused & broken B3DGeometry class * fixed bug in basegfx::tools::isRectangle for polygons with curves * fixed cairocanvas gradient and bitmap fill rendering * fixed vclcanvas bitmap fill rendering (not clipping properly) * added TextureMode::NONE, adapted all client code * fixed snafu in XGraphicDevice.idl, with missing include
2009-12-21aw078: resync to DEV300m68for integrationArmin Le Grand1-2/+3
2010-03-18aw079: rebase to m75Armin Le Grand17-69/+17
2010-02-10aw079: changes after resync (linux)Armin Le Grand1-1/+1
2010-01-27aw079: #i99147# attribute rework and othersArmin Le Grand1-0/+4
2010-01-07aw079: changes for resyncArmin Le Grand2-0/+140
2010-01-06aw079: #i107360# Added functionality for edges, polygons and polypolygonsArmin Le Grand1-3/+41
2009-12-08aw079: #i107360# numerical precisionArmin Le Grand2-0/+102
2009-10-22#i106127# perf: using vector.push_back() instead of the generic ↵hdu1-2/+2
vector.insertAtWithCount() is worth it when it gets called a gazillion times
2009-10-21#i106127# perf: add and use B2DPolygon::reserve() to prevent many reallocationshdu1-0/+1
2009-10-16#i105939# Decided returning by const ref was a bad idea, coupling-thb2-4/+4
and in terms of unwanted side effects (think vector re-allocating the mem). Fixed iterator-to-ptr conversion for obvious oversights.
2009-10-16#i105939# Adds special box clipping support to basegfxthb2-2/+14
2009-10-08#i105459# enhanced circles/ellipes for more mathematical correctnessArmin Le Grand1-61/+0
2009-07-27CWS-TOOLING: integrate CWS aw073Jens-Heiner Rechtien2-0/+23
2009-07-16 11:21:19 +0200 aw r274036 : corrections after resync 2009-07-15 13:34:18 +0200 aw r274009 : CWS-TOOLING: rebase CWS aw073 to trunk@273858 (milestone: DEV300:m52) 2009-07-01 20:04:27 +0200 aw r273613 : CWS-TOOLING: rebase CWS aw073 to trunk@273468 (milestone: DEV300:m51) 2009-06-24 11:51:03 +0200 aw r273324 : #i102062# added using statement for solaris compiler 2009-06-23 12:53:50 +0200 aw r273278 : #i100158# force filled polygons to closed state 2009-06-23 12:28:33 +0200 aw r273276 : #i100158#, #i102371# corrected all (mnAntialiasing & ANTIALIASING_ENABLE_B2DDRAW) shortcuts to support line/fill and to be not used when FillMode is not overpaint 2009-06-23 12:15:14 +0200 aw r273274 : #i100158# added PolyPolygon support for snapPointsOfHorizontalOrVerticalEdges helper 2009-06-22 17:28:33 +0200 aw r273244 : #i101508# added taking care of cell's distance-to-border values for cell text primitive creation 2009-06-22 12:59:10 +0200 aw r273218 : #i102253# applied patch from OD (see task) 2009-06-18 17:00:52 +0200 aw r273125 : #i102251# added EE_CNTRL_ONLINESPELLING switch off at DrawOutliner during GraphicExporter::GetGraphic 2009-06-18 14:35:57 +0200 aw r273120 : #i102241# added mergeToSinglePolyPolygon usage to SdrObject::ImpConvertToContourObj 2009-06-18 14:35:20 +0200 aw r273119 : #i102241# improved PolygonStrokePrimitive2D::createLocalDecomposition 2009-06-18 14:34:49 +0200 aw r273118 : #i102241# Made B2DCubicBezier::testAndSolveTrivialBezier() numerically more stable 2009-06-17 16:11:21 +0200 aw r273078 : #i102062# added compare support for OutlireParaObject's WrongList in an extra method; using in primitive comparators 2009-06-16 19:10:18 +0200 aw r273037 : #i101957# corrected: offset needs to be added before rotation and shear 2009-06-16 18:58:43 +0200 aw r273035 : #i101957# added needed offset by object width to SdrTextObj::impDecomposeStretchTextPrimitive for vertical texts 2009-06-16 18:35:55 +0200 aw r273034 : #i101941# corrected object initialisation for 3D Scenes on Clone operator 2009-06-16 16:07:30 +0200 aw r273024 : #i101811# extended renderChartPrimitive2D to create a correct embedding in a new MapMode 2009-06-12 19:38:07 +0200 aw r272940 : #i101734# added test code to experiment on demand with more complex transformations for virtual objects than only translations 2009-06-12 19:37:07 +0200 aw r272939 : #i101734# corrected SvtGraphicStroke preparation in MetaFile renderer (AFAP) 2009-06-12 16:31:55 +0200 aw r272931 : #i101648# re-enabled object creation with objecttype OBJ_NONE for SW Frame creation 2009-06-12 13:59:05 +0200 aw r272917 : #i101598# supported AAed single line paint in VCL 2009-06-12 11:34:25 +0200 aw r272907 : #i101598# adapted Graphic::GetBitmap() usage 2009-06-10 16:34:19 +0200 aw r272830 : #i101598# added VCL_DLLPUBLIC to parameter class 2009-06-10 16:30:27 +0200 aw r272829 : #i101598# extended calls to Graphic::GetBitmap/Ex where conversions to Bitmap objects is needed to user defined parameters like AntiAlisasing 2009-06-10 16:28:44 +0200 aw r272828 : #i101598# extended Graphic::GetBitmap/Ex interfaces to transport raster conversion parameters since these calls potentially need to rasterconvert a contained MetaFile 2009-06-09 16:26:40 +0200 aw r272781 : #i100945# checked in proposed patch for now 2009-06-08 18:01:42 +0200 aw r272742 : #i101239# teached BinTextObject to register at EditEngineItemPool sub-pool, not on given pool directly
2009-04-01CWS-TOOLING: integrate CWS aw066_DEV300Ivo Hinkelmann1-0/+14
2009-03-19 17:20:55 +0100 aw r269762 : #i99662# enhanced MetaFile paint by avoiding single pixel scalings due to MapMode errors 2009-03-19 17:20:18 +0100 aw r269761 : #i99662# enhanced 3D AA by using the SnapHorVerLinesToDiscrete options flag to unify the hor/ver hairlines
2009-03-04CWS-TOOLING: integrate CWS aw063Oliver Bolte1-0/+14
2009-02-12 13:10:24 +0100 aw r267649 : #i99123# when a primitive is invisible, it is not sufficient to produce no output when decomposing, but to add invisible data using HitTestPrimitive2D. This is needed for the slideshow which relies on geometry data in MetaFiles when painting invisible objects 2009-02-12 13:08:39 +0100 aw r267648 : #i99123# do not ignore HitTestPrimitive2D, but draw empty rectangles instead. This is needed since Slideshow is based on getting MetaFile content when painting invisible objects 2009-02-11 16:04:28 +0100 aw r267620 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:04:10 +0100 aw r267619 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:03:56 +0100 aw r267618 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:03:39 +0100 aw r267617 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:03:21 +0100 aw r267615 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:02:48 +0100 aw r267614 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:02:24 +0100 aw r267613 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:02:01 +0100 aw r267612 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:01:32 +0100 aw r267611 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:01:05 +0100 aw r267610 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:00:15 +0100 aw r267608 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 11:27:33 +0100 aw r267585 : #i98788# added missing include for STL 2009-02-10 17:46:50 +0100 aw r267570 : #i98788# added reaction on pool destruction 2009-02-10 17:11:58 +0100 aw r267562 : #i98788# added messaging mechanism to register for pool destruction 2009-02-10 13:35:35 +0100 aw r267549 : #i98788# removing changes, too complicated and risky for 3.1 2009-02-10 12:13:48 +0100 aw r267546 : #i98788# 4th round 2009-02-10 12:13:37 +0100 aw r267545 : #i98788# 4th round 2009-02-10 12:13:26 +0100 aw r267544 : #i98788# 4th round 2009-02-10 12:13:14 +0100 aw r267543 : #i98788# 4th round 2009-02-10 12:13:03 +0100 aw r267542 : #i98788# 4th round 2009-02-10 12:12:50 +0100 aw r267541 : #i98788# 4th round 2009-02-10 12:12:37 +0100 aw r267540 : #i98788# 4th round 2009-02-08 14:38:22 +0100 aw r267495 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:38:06 +0100 aw r267494 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:37:48 +0100 aw r267493 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:37:17 +0100 aw r267492 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:56 +0100 aw r267491 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:44 +0100 aw r267490 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:29 +0100 aw r267489 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:16 +0100 aw r267488 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:02 +0100 aw r267487 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:35:46 +0100 aw r267486 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-05 12:20:39 +0100 aw r267415 : #i98788# 2nd batch of adaptions for SfxItemPoolHolder addition 2009-02-04 15:12:54 +0100 aw r267385 : #i98788# added newline at EOF 2009-02-04 13:26:04 +0100 aw r267379 : #i98788# make SfxItemPool holdable 2009-02-04 13:25:40 +0100 aw r267378 : #i98788# make SfxItemPool holdable 2009-02-04 13:25:08 +0100 aw r267377 : #i98788# make SfxItemPool holdable 2009-02-04 13:24:42 +0100 aw r267376 : #i98788# make SfxItemPool holdable 2009-02-04 13:23:14 +0100 aw r267375 : #i98788# make SfxItemPool holdable 2009-02-04 13:23:02 +0100 aw r267374 : #i98788# make SfxItemPool holdable 2009-01-29 17:08:31 +0100 aw r267159 : #i97628# completed the fix 2009-01-29 17:08:15 +0100 aw r267158 : #i97628# completed the fix 2009-01-29 14:09:07 +0100 aw r267132 : #i97628# Corrected usage of ParagraphData in headers 2009-01-29 14:06:58 +0100 iha r267131 : #i98344# incorrect font size in charts 2009-01-29 12:13:46 +0100 aw r267115 : #i97628# back to old state; triggers too many errors in other modules 2009-01-29 12:03:51 +0100 aw r267114 : #i97628# enabled exceptions due to STL vector include 2009-01-29 11:21:37 +0100 aw r267107 : #i97628# added needed include 2009-01-28 17:58:29 +0100 aw r267077 : #i97628# first version of newly implemented OutlinerParaObject and adaptions 2009-01-28 17:58:12 +0100 aw r267076 : #i97628# first version of newly implemented OutlinerParaObject and adaptions 2009-01-28 17:57:51 +0100 aw r267074 : #i97628# first version of newly implemented OutlinerParaObject and adaptions 2009-01-28 17:57:21 +0100 aw r267073 : #i97628# first version of newly implemented OutlinerParaObject and adaptions 2009-01-27 17:07:33 +0100 aw r267011 : #i98402# added support for ViewRange when exporting MetaFiles in ObjectContactOfPageView::DoProcessDisplay to avoid to paint too much 2009-01-27 11:45:48 +0100 aw r266973 : #i98404# Added a warning to a place where a conversion to rectangle should not be copied from 2009-01-26 21:44:36 +0100 iha r266949 : #i98497# 3D charts are rendered with wrong size 2009-01-26 20:47:07 +0100 aw r266947 : #i98404# handle BackgroundColorPrimitive2D directly in PixelRenderers and avoid AA under all circumstances 2009-01-26 14:50:36 +0100 aw r266926 : #i98386# secured cloning of SdrObject in IMapUserData by boost::shared_prt usage 2009-01-26 12:51:30 +0100 aw r266916 : #i96581# added separated FontStretching and fallback for small X!=Y scale differences 2009-01-23 16:14:55 +0100 aw r266834 : #i96475# added missing implementation of TextDecoratedPortionPrimitive2D::getB2DRange 2009-01-23 15:24:34 +0100 aw r266826 : #i98405# fixed fallback to DrawAlphaRect to use the correctly sized rectangle 2009-01-23 13:34:43 +0100 aw r266813 : #i96474# fixed impSplitSingleWords for an unexpected case 2009-01-23 10:47:31 +0100 aw r266786 : #i98289#,#i96474# tooling and new flags for tasks 2009-01-23 10:47:20 +0100 aw r266785 : #i98289#,#i96474# tooling and new flags for tasks 2009-01-23 10:47:09 +0100 aw r266783 : #i98289#,#i96474# tooling and new flags for tasks 2009-01-23 10:46:58 +0100 aw r266782 : #i98289#,#i96474# tooling and new flags for tasks 2009-01-23 10:46:48 +0100 aw r266781 : #i98289#,#i96474# tooling and new flags for tasks
2008-10-17CWS-TOOLING: integrate CWS aw057Oliver Bolte3-9/+42
2008-08-19INTEGRATION: CWS aw033 (1.5.2); FILE MERGEDVladimir Glazounov1-8/+93
2008/05/27 14:08:43 aw 1.5.2.4: #i39532# changes DEV300 m12 resync corrections 2008/05/14 14:42:46 aw 1.5.2.3: RESYNC: (1.5-1.7); FILE MERGED 2007/11/07 14:24:28 aw 1.5.2.2: #i39532# committing to have a base for HDU 2006/05/12 11:38:01 aw 1.5.2.1: code changes for primitive support
2008-08-19INTEGRATION: CWS aw033 (1.5.2); FILE MERGEDVladimir Glazounov1-1/+17
2008/05/14 14:42:10 aw 1.5.2.4: RESYNC: (1.7-1.9); FILE MERGED 2006/09/26 14:46:07 aw 1.5.2.3: RESYNC: (1.6-1.7); FILE MERGED 2006/05/12 11:38:01 aw 1.5.2.2: code changes for primitive support 2005/10/28 11:21:57 aw 1.5.2.1: #i39532#
2008-08-19INTEGRATION: CWS aw033 (1.6.2); FILE MERGEDVladimir Glazounov1-15/+59
2008/05/27 14:08:43 aw 1.6.2.6: #i39532# changes DEV300 m12 resync corrections 2008/05/14 14:42:20 aw 1.6.2.5: RESYNC: (1.7-1.9); FILE MERGED 2007/11/07 14:24:28 aw 1.6.2.4: #i39532# committing to have a base for HDU 2006/05/12 14:32:36 aw 1.6.2.3: RESYNC: (1.6-1.7); FILE MERGED 2006/05/12 11:38:01 aw 1.6.2.2: code changes for primitive support 2005/10/28 11:21:56 aw 1.6.2.1: #i39532#
2008-08-19INTEGRATION: CWS aw033 (1.1.2); FILE ADDEDVladimir Glazounov1-0/+90
2008/08/19 16:43:44 cl 1.1.2.3: fixed license files 2008/05/27 14:08:43 aw 1.1.2.2: #i39532# changes DEV300 m12 resync corrections 2006/05/12 11:37:39 aw 1.1.2.1: code for primitive support
2008-08-19INTEGRATION: CWS aw033 (1.5.2); FILE MERGEDVladimir Glazounov1-6/+31
2008/05/14 14:42:14 aw 1.5.2.4: RESYNC: (1.6-1.8); FILE MERGED 2007/11/01 16:43:10 thb 1.5.2.3: #i10000# gcc 4.2.1 build fixes 2006/09/26 14:45:59 aw 1.5.2.2: RESYNC: (1.5-1.6); FILE MERGED 2006/05/12 11:38:00 aw 1.5.2.1: code changes for primitive support
2008-08-19INTEGRATION: CWS aw033 (1.1.2); FILE ADDEDVladimir Glazounov1-0/+74
2008/08/19 16:43:44 cl 1.1.2.2: fixed license files 2006/05/12 11:37:28 aw 1.1.2.1: code for primitive support
2008-08-19INTEGRATION: CWS aw033 (1.13.2); FILE MERGEDVladimir Glazounov1-25/+69
2008/07/11 11:38:06 aw 1.13.2.14: RESYNC: (1.18-1.19); FILE MERGED 2008/05/27 14:08:43 aw 1.13.2.13: #i39532# changes DEV300 m12 resync corrections 2008/05/14 14:42:23 aw 1.13.2.12: RESYNC: (1.16-1.18); FILE MERGED 2007/12/12 13:13:23 aw 1.13.2.11: #i39532# clipping changes 2007/11/26 11:18:22 aw 1.13.2.10: #i39532# reworked B2DPolygon default decomposition 2007/11/22 14:56:49 aw 1.13.2.9: #i39532# polygon bezier changes 2007/11/19 10:16:48 aw 1.13.2.8: #i39532# Lot of changes to make polygon stuff bezier-able 2007/11/07 14:24:28 aw 1.13.2.7: #i39532# committing to have a base for HDU 2007/10/17 10:41:19 aw 1.13.2.6: #i39532# support for reSegmentPolygonEdges 2007/08/09 22:02:46 aw 1.13.2.5: RESYNC: (1.15-1.16); FILE MERGED 2007/01/19 11:15:25 aw 1.13.2.4: RESYNC: (1.14-1.15); FILE MERGED 2006/05/12 14:32:28 aw 1.13.2.3: RESYNC: (1.13-1.14); FILE MERGED 2006/05/12 11:38:00 aw 1.13.2.2: code changes for primitive support 2005/10/28 11:21:56 aw 1.13.2.1: #i39532#
2008-08-19INTEGRATION: CWS aw033 (1.4.6); FILE MERGEDVladimir Glazounov2-4/+2
2008/05/27 14:08:43 aw 1.4.6.1: #i39532# changes DEV300 m12 resync corrections
2008-08-19INTEGRATION: CWS aw033 (1.7.2); FILE MERGEDVladimir Glazounov1-24/+44
2008/05/14 14:42:30 aw 1.7.2.4: RESYNC: (1.8-1.9); FILE MERGED 2007/12/12 13:13:23 aw 1.7.2.3: #i39532# clipping changes 2007/12/03 13:53:13 aw 1.7.2.2: #i39532# checkin for resync 2005/10/28 11:21:56 aw 1.7.2.1: #i39532#
2008-08-19INTEGRATION: CWS aw033 (1.13.12); FILE MERGEDVladimir Glazounov1-1/+20
2008/05/27 14:08:43 aw 1.13.12.4: #i39532# changes DEV300 m12 resync corrections 2008/05/14 14:42:17 aw 1.13.12.3: RESYNC: (1.13-1.15); FILE MERGED 2007/12/03 13:53:13 aw 1.13.12.2: #i39532# checkin for resync 2007/11/26 11:18:22 aw 1.13.12.1: #i39532# reworked B2DPolygon default decomposition
2008-08-19INTEGRATION: CWS aw033 (1.18.2); FILE MERGEDVladimir Glazounov1-22/+198
2008/06/24 15:26:17 aw 1.18.2.18: #i39532# corrections 2008/05/27 14:08:43 aw 1.18.2.17: #i39532# changes DEV300 m12 resync corrections 2008/05/14 14:42:43 aw 1.18.2.16: RESYNC: (1.21-1.23); FILE MERGED 2007/12/18 15:06:24 aw 1.18.2.15: #i39532# cleanup 2007/12/12 13:13:23 aw 1.18.2.14: #i39532# clipping changes 2007/11/27 11:56:54 aw 1.18.2.13: #i39532# added GetRange() to B2DPolygon 2007/11/26 11:18:22 aw 1.18.2.12: #i39532# reworked B2DPolygon default decomposition 2007/11/22 14:56:49 aw 1.18.2.11: #i39532# polygon bezier changes 2007/11/19 10:16:47 aw 1.18.2.10: #i39532# Lot of changes to make polygon stuff bezier-able 2007/11/07 14:24:28 aw 1.18.2.9: #i39532# committing to have a base for HDU 2007/10/17 10:41:19 aw 1.18.2.8: #i39532# support for reSegmentPolygonEdges 2007/09/20 09:48:16 aw 1.18.2.7: #i39532# added Waveline support and tiled polygon 2007/08/09 22:02:26 aw 1.18.2.6: RESYNC: (1.20-1.21); FILE MERGED 2007/04/23 07:09:52 hdu 1.18.2.5: add basegfx::tools::createSimplifiedPolygon() method 2006/11/28 16:12:21 aw 1.18.2.4: RESYNC: (1.19-1.20); FILE MERGED 2006/05/12 14:32:16 aw 1.18.2.3: RESYNC: (1.18-1.19); FILE MERGED 2006/05/12 11:38:00 aw 1.18.2.2: code changes for primitive support 2005/10/28 11:21:55 aw 1.18.2.1: #i39532#
2008-08-19INTEGRATION: CWS aw033 (1.3.2); FILE MERGEDVladimir Glazounov1-1/+11
2008/05/14 14:42:35 aw 1.3.2.3: RESYNC: (1.4-1.5); FILE MERGED 2007/12/03 13:53:13 aw 1.3.2.2: #i39532# checkin for resync 2005/10/28 11:21:55 aw 1.3.2.1: #i39532#
2008-08-19INTEGRATION: CWS aw033 (1.1.8); FILE MERGEDVladimir Glazounov1-15/+8
2008/05/14 14:42:26 aw 1.1.8.4: RESYNC: (1.2-1.3); FILE MERGED 2007/12/03 13:53:13 aw 1.1.8.3: #i39532# checkin for resync 2006/05/16 14:09:24 aw 1.1.8.2: handish adaptions after resync 2005/10/28 11:21:19 aw 1.1.8.1: #i39532#
2008-08-19INTEGRATION: CWS aw033 (1.12.12); FILE MERGEDVladimir Glazounov1-19/+145
2008/05/27 14:08:43 aw 1.12.12.6: #i39532# changes DEV300 m12 resync corrections 2008/05/14 14:42:58 aw 1.12.12.5: RESYNC: (1.12-1.13); FILE MERGED 2007/12/03 13:53:13 aw 1.12.12.4: #i39532# checkin for resync 2007/11/27 11:56:54 aw 1.12.12.3: #i39532# added GetRange() to B2DPolygon 2007/11/26 11:18:22 aw 1.12.12.2: #i39532# reworked B2DPolygon default decomposition 2007/11/22 14:56:49 aw 1.12.12.1: #i39532# polygon bezier changes
2008-08-19INTEGRATION: CWS aw033 (1.3.2); FILE MERGEDVladimir Glazounov1-37/+88
2008/05/14 14:42:38 aw 1.3.2.5: RESYNC: (1.3-1.4); FILE MERGED 2007/11/22 14:56:49 aw 1.3.2.4: #i39532# polygon bezier changes 2007/11/19 10:16:47 aw 1.3.2.3: #i39532# Lot of changes to make polygon stuff bezier-able 2007/11/07 14:24:28 aw 1.3.2.2: #i39532# committing to have a base for HDU 2007/04/26 14:30:25 hdu 1.3.2.1: #i75669# added method createAreaGeometryForSimplePolygon()
2008-06-24INTEGRATION: CWS canvas05 (1.18.2); FILE MERGEDKurt Zenker1-6/+24
2008/06/03 15:54:00 thb 1.18.2.1: Upstreaming elliptical arc import for svg:d parser
2008-04-24INTEGRATION: CWS aw055 (1.5.86); FILE MERGEDIvo Hinkelmann1-1/+6
2008/02/29 04:31:27 aw 1.5.86.1: removed op equal at polygons, added to tooling. Done for 2D and 3D
2008-04-24INTEGRATION: CWS aw055 (1.7.64); FILE MERGEDIvo Hinkelmann1-2/+2
2008/02/29 04:31:27 aw 1.7.64.2: removed op equal at polygons, added to tooling. Done for 2D and 3D 2008/02/28 08:04:30 aw 1.7.64.1: finetuning for SVG im/export