Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/keystoplerp.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/keystoplerp.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/keystoplerp.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/keystoplerp.hxx Sun Mar 6 18:42:24 2016 @@ -26,6 +26,7 @@ #include <basegfx/numeric/ftools.hxx> #include <vector> +#include <basegfx/basegfxdllapi.h> namespace com{ namespace sun{ namespace star{ namespace uno { template<typename T> class Sequence; @@ -46,7 +47,7 @@ namespace basegfx then calculate the relative alpha between the two buckets found. */ - class KeyStopLerp + class BASEGFX_DLLPUBLIC KeyStopLerp { public: typedef std::pair<std::ptrdiff_t,double> ResultType;
Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/tools.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/tools.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/tools.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/tools.hxx Sun Mar 6 18:42:24 2016 @@ -25,6 +25,7 @@ #define _BGFX_TOOLS_TOOLS_HXX #include <sal/types.h> +#include <basegfx/basegfxdllapi.h> namespace basegfx { @@ -53,7 +54,7 @@ namespace basegfx @return true, when at least part of the line is visible after the clip, false otherwise */ - bool liangBarskyClip2D( ::basegfx::B2DPoint& io_rStart, + BASEGFX_DLLPUBLIC bool liangBarskyClip2D( ::basegfx::B2DPoint& io_rStart, ::basegfx::B2DPoint& io_rEnd, const ::basegfx::B2DRange& rClipRect ); @@ -115,7 +116,7 @@ namespace basegfx @param rFitTarget The rectangle to fit the parallelogram into. */ - void infiniteLineFromParallelogram( ::basegfx::B2DPoint& io_rLeftTop, + BASEGFX_DLLPUBLIC void infiniteLineFromParallelogram( ::basegfx::B2DPoint& io_rLeftTop, ::basegfx::B2DPoint& io_rLeftBottom, ::basegfx::B2DPoint& io_rRightTop, ::basegfx::B2DPoint& io_rRightBottom, Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/unopolypolygon.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/unopolypolygon.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/unopolypolygon.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tools/unopolypolygon.hxx Sun Mar 6 18:42:24 2016 @@ -31,6 +31,7 @@ #include <com/sun/star/rendering/XLinePolyPolygon2D.hpp> #include <com/sun/star/rendering/XBezierPolyPolygon2D.hpp> #include <basegfx/polygon/b2dpolypolygon.hxx> +#include <basegfx/basegfxdllapi.h> namespace basegfx @@ -42,7 +43,7 @@ namespace unotools ::com::sun::star::rendering::XBezierPolyPolygon2D, ::com::sun::star::lang::XServiceInfo > UnoPolyPolygonBase; - class UnoPolyPolygon : private cppu::BaseMutex, + class BASEGFX_DLLPUBLIC UnoPolyPolygon : private cppu::BaseMutex, public UnoPolyPolygonBase { public: Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx Sun Mar 6 18:42:24 2016 @@ -43,7 +43,7 @@ namespace basegfx @derive Use this class to implement Points or Vectors which are based on two double values */ - class B2DTuple + class BASEGFX_DLLPUBLIC B2DTuple { protected: double mfX; @@ -362,7 +362,7 @@ namespace basegfx @return the nearest integer for this tuple */ - B2ITuple fround(const B2DTuple& rTup); + BASEGFX_DLLPUBLIC B2ITuple fround(const B2DTuple& rTup); } // end of namespace basegfx #endif /* _BGFX_TUPLE_B2DTUPLE_HXX */ Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2i64tuple.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2i64tuple.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2i64tuple.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2i64tuple.hxx Sun Mar 6 18:42:24 2016 @@ -26,6 +26,7 @@ #include <sal/types.h> #include <basegfx/tuple/b2dtuple.hxx> +#include <basegfx/basegfxdllapi.h> namespace basegfx @@ -38,7 +39,7 @@ namespace basegfx @derive Use this class to implement Points or Vectors which are based on two sal_Int64 values */ - class B2I64Tuple + class BASEGFX_DLLPUBLIC B2I64Tuple { protected: sal_Int64 mnX; Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2ituple.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2ituple.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2ituple.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b2ituple.hxx Sun Mar 6 18:42:24 2016 @@ -40,7 +40,7 @@ namespace basegfx @derive Use this class to implement Points or Vectors which are based on two sal_Int32 values */ - class B2ITuple + class BASEGFX_DLLPUBLIC B2ITuple { protected: sal_Int32 mnX; Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3dtuple.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3dtuple.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3dtuple.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3dtuple.hxx Sun Mar 6 18:42:24 2016 @@ -43,7 +43,7 @@ namespace basegfx @derive Use this class to implement Points or Vectors which are based on three double values */ - class B3DTuple + class BASEGFX_DLLPUBLIC B3DTuple { protected: double mfX; @@ -436,7 +436,7 @@ namespace basegfx @return the nearest integer for this tuple */ - B3ITuple fround(const B3DTuple& rTup); + BASEGFX_DLLPUBLIC B3ITuple fround(const B3DTuple& rTup); } // end of namespace basegfx #endif /* _BGFX_TUPLE_B3DTUPLE_HXX */ Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3i64tuple.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3i64tuple.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3i64tuple.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3i64tuple.hxx Sun Mar 6 18:42:24 2016 @@ -26,6 +26,7 @@ #include <sal/types.h> #include <basegfx/tuple/b3dtuple.hxx> +#include <basegfx/basegfxdllapi.h> namespace basegfx @@ -38,7 +39,7 @@ namespace basegfx @derive Use this class to implement Points or Vectors which are based on three sal_Int64 values */ - class B3I64Tuple + class BASEGFX_DLLPUBLIC B3I64Tuple { protected: sal_Int64 mnX; Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3ituple.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3ituple.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3ituple.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/tuple/b3ituple.hxx Sun Mar 6 18:42:24 2016 @@ -26,7 +26,7 @@ #include <sal/types.h> #include <basegfx/tuple/b3dtuple.hxx> - +#include <basegfx/basegfxdllapi.h> namespace basegfx { @@ -38,7 +38,7 @@ namespace basegfx @derive Use this class to implement Points or Vectors which are based on three sal_Int32 values */ - class B3ITuple + class BASEGFX_DLLPUBLIC B3ITuple { protected: sal_Int32 mnX; Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b2dvector.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b2dvector.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b2dvector.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b2dvector.hxx Sun Mar 6 18:42:24 2016 @@ -27,6 +27,7 @@ #include <basegfx/tuple/b2dtuple.hxx> #include <basegfx/vector/b2ivector.hxx> #include <basegfx/vector/b2enums.hxx> +#include <basegfx/basegfxdllapi.h> namespace basegfx { @@ -41,7 +42,7 @@ namespace basegfx @see B2DTuple */ - class B2DVector : public ::basegfx::B2DTuple + class BASEGFX_DLLPUBLIC B2DVector : public ::basegfx::B2DTuple { public: /** Create a 2D Vector @@ -205,7 +206,7 @@ namespace basegfx @return The mathematical Orientation of the two involved 2D Vectors */ - B2VectorOrientation getOrientation( const B2DVector& rVecA, const B2DVector& rVecB ); + BASEGFX_DLLPUBLIC B2VectorOrientation getOrientation( const B2DVector& rVecA, const B2DVector& rVecB ); /** Calculate a perpendicular 2D Vector to the given one @@ -217,7 +218,7 @@ namespace basegfx @return A 2D Vector perpendicular to the one given in parameter rVec */ - B2DVector getPerpendicular( const B2DVector& rNormalizedVec ); + BASEGFX_DLLPUBLIC B2DVector getPerpendicular( const B2DVector& rNormalizedVec ); /** Calculate a perpendicular 2D Vector to the given one, normalize the given one as preparation @@ -228,7 +229,7 @@ namespace basegfx @return A normalized 2D Vector perpendicular to the one given in parameter rVec */ - B2DVector getNormalizedPerpendicular( const B2DVector& rVec ); + BASEGFX_DLLPUBLIC B2DVector getNormalizedPerpendicular( const B2DVector& rVec ); /** Test two vectors which need not to be normalized for parallelism @@ -242,21 +243,21 @@ namespace basegfx bool if the two values are parallel. Also true if one of the vectors is empty. */ - bool areParallel( const B2DVector& rVecA, const B2DVector& rVecB ); + BASEGFX_DLLPUBLIC bool areParallel( const B2DVector& rVecA, const B2DVector& rVecB ); /** Transform vector by given transformation matrix. Since this is a vector, translational components of the matrix are disregarded. */ - B2DVector operator*( const B2DHomMatrix& rMat, const B2DVector& rVec ); + BASEGFX_DLLPUBLIC B2DVector operator*( const B2DHomMatrix& rMat, const B2DVector& rVec ); /** Test continuity between given vectors. The two given vectors are assumed to describe control points on a common point. Calculate if there is a continuity between them. */ - B2VectorContinuity getContinuity( const B2DVector& rBackVector, const B2DVector& rForwardVector ); + BASEGFX_DLLPUBLIC B2VectorContinuity getContinuity( const B2DVector& rBackVector, const B2DVector& rForwardVector ); } // end of namespace basegfx Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b2ivector.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b2ivector.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b2ivector.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b2ivector.hxx Sun Mar 6 18:42:24 2016 @@ -26,6 +26,7 @@ #include <basegfx/tuple/b2ituple.hxx> #include <basegfx/vector/b2enums.hxx> +#include <basegfx/basegfxdllapi.h> namespace basegfx { @@ -40,7 +41,7 @@ namespace basegfx @see B2ITuple */ - class B2IVector : public ::basegfx::B2ITuple + class BASEGFX_DLLPUBLIC B2IVector : public ::basegfx::B2ITuple { public: /** Create a 2D Vector @@ -181,7 +182,7 @@ namespace basegfx @return The mathematical Orientation of the two involved 2D Vectors */ - B2VectorOrientation getOrientation( const B2IVector& rVecA, const B2IVector& rVecB ); + BASEGFX_DLLPUBLIC B2VectorOrientation getOrientation( const B2IVector& rVecA, const B2IVector& rVecB ); /** Calculate a perpendicular 2D Vector to the given one @@ -191,7 +192,7 @@ namespace basegfx @return A 2D Vector perpendicular to the one given in parameter rVec */ - B2IVector getPerpendicular( const B2IVector& rVec ); + BASEGFX_DLLPUBLIC B2IVector getPerpendicular( const B2IVector& rVec ); /** Test two vectors which need not to be normalized for parallelism @@ -205,21 +206,21 @@ namespace basegfx bool if the two values are parallel. Also true if one of the vectors is empty. */ - bool areParallel( const B2IVector& rVecA, const B2IVector& rVecB ); + BASEGFX_DLLPUBLIC bool areParallel( const B2IVector& rVecA, const B2IVector& rVecB ); /** Transform vector by given transformation matrix. Since this is a vector, translational components of the matrix are disregarded. */ - B2IVector operator*( const B2DHomMatrix& rMat, const B2IVector& rVec ); + BASEGFX_DLLPUBLIC B2IVector operator*( const B2DHomMatrix& rMat, const B2IVector& rVec ); /** Test continuity between given vectors. The two given vectors are assumed to describe control points on a common point. Calculate if there is a continuity between them. */ - B2VectorContinuity getContinuity( const B2IVector& rBackVector, const B2IVector& rForwardVector ); + BASEGFX_DLLPUBLIC B2VectorContinuity getContinuity( const B2IVector& rBackVector, const B2IVector& rForwardVector ); } // end of namespace basegfx Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b3dvector.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b3dvector.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b3dvector.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b3dvector.hxx Sun Mar 6 18:42:24 2016 @@ -25,6 +25,7 @@ #define _BGFX_VECTOR_B3DVECTOR_HXX #include <basegfx/tuple/b3dtuple.hxx> +#include <basegfx/basegfxdllapi.h> ////////////////////////////////////////////////////////////////////////////// @@ -41,7 +42,7 @@ namespace basegfx @see B3DTuple */ - class B3DVector : public ::basegfx::B3DTuple + class BASEGFX_DLLPUBLIC B3DVector : public ::basegfx::B3DTuple { public: /** Create a 3D Vector @@ -301,14 +302,14 @@ namespace basegfx bool if the two values are parallel. Also true if one of the vectors is empty. */ - bool areParallel( const B3DVector& rVecA, const B3DVector& rVecB ); + BASEGFX_DLLPUBLIC bool areParallel( const B3DVector& rVecA, const B3DVector& rVecB ); /** Transform vector by given transformation matrix. Since this is a vector, translational components of the matrix are disregarded. */ - B3DVector operator*( const B3DHomMatrix& rMat, const B3DVector& rVec ); + BASEGFX_DLLPUBLIC B3DVector operator*( const B3DHomMatrix& rMat, const B3DVector& rVec ); /** Calculate the Cross Product of two 3D Vectors Modified: openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b3ivector.hxx URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b3ivector.hxx?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b3ivector.hxx (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/inc/basegfx/vector/b3ivector.hxx Sun Mar 6 18:42:24 2016 @@ -25,6 +25,7 @@ #define _BGFX_VECTOR_B3IVECTOR_HXX #include <basegfx/tuple/b3ituple.hxx> +#include <basegfx/basegfxdllapi.h> namespace basegfx { @@ -39,7 +40,7 @@ namespace basegfx @see B3ITuple */ - class B3IVector : public ::basegfx::B3ITuple + class BASEGFX_DLLPUBLIC B3IVector : public ::basegfx::B3ITuple { public: /** Create a 3D Vector @@ -229,7 +230,7 @@ namespace basegfx Since this is a vector, translational components of the matrix are disregarded. */ - B3IVector operator*( const B3DHomMatrix& rMat, const B3IVector& rVec ); + BASEGFX_DLLPUBLIC B3IVector operator*( const B3DHomMatrix& rMat, const B3IVector& rVec ); /** Calculate the Cross Product of two 3D Vectors Modified: openoffice/branches/gbuild-reintegration/main/basegfx/prj/build.lst URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/prj/build.lst?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/prj/build.lst (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/prj/build.lst Sun Mar 6 18:42:24 2016 @@ -1,18 +1,2 @@ fx basegfx : o3tl sal offapi cppuhelper cppu NULL -fx basegfx usr1 - all fx_mkout NULL -fx basegfx\inc nmake - all fx_inc NULL -fx basegfx\prj get - all fx_prj NULL -fx basegfx\source\curve nmake - all fx_curve fx_inc NULL -fx basegfx\source\matrix nmake - all fx_matrix fx_inc NULL -fx basegfx\source\numeric nmake - all fx_numeric fx_inc NULL -fx basegfx\source\point nmake - all fx_point fx_inc NULL -fx basegfx\source\polygon nmake - all fx_polygon fx_inc NULL -fx basegfx\source\range nmake - all fx_range fx_inc NULL -fx basegfx\source\tuple nmake - all fx_tuple fx_inc NULL -fx basegfx\source\tools nmake - all fx_tools fx_inc NULL -fx basegfx\source\vector nmake - all fx_vector fx_inc NULL -fx basegfx\source\color nmake - all fx_color fx_inc NULL -fx basegfx\source\pixel nmake - all fx_pixel fx_inc NULL -fx basegfx\source\raster nmake - all fx_raster fx_inc NULL -fx basegfx\util nmake - all fx_util fx_curve fx_matrix fx_numeric fx_point fx_polygon fx_range fx_tuple fx_tools fx_vector fx_color fx_pixel fx_raster NULL -fx basegfx\test nmake - all fx_tests fx_util NULL +fx basegfx\prj nmake - all fx_prj NULL Modified: openoffice/branches/gbuild-reintegration/main/basegfx/prj/d.lst URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/basegfx/prj/d.lst?rev=1733821&r1=1733820&r2=1733821&view=diff ============================================================================== --- openoffice/branches/gbuild-reintegration/main/basegfx/prj/d.lst (original) +++ openoffice/branches/gbuild-reintegration/main/basegfx/prj/d.lst Sun Mar 6 18:42:24 2016 @@ -1,114 +0,0 @@ -..\%__SRC%\lib\ibasegfx.lib %_DEST%\lib%_EXT%\ibasegfx.lib -..\%__SRC%\lib\basegfx.lib %_DEST%\lib%_EXT%\basegfx.lib -..\%__SRC%\lib\basegfx_s.lib %_DEST%\lib%_EXT%\basegfx_s.lib - -..\%__SRC%\bin\basegfx?????.dll %_DEST%\bin%_EXT%\basegfx?????.dll -..\%__SRC%\bin\bgfx*.dll %_DEST%\bin%_EXT%\bgfx*.dll - -..\%__SRC%\lib\libbasegfx*.* %_DEST%\lib%_EXT%\libbasegfx*.* -..\%__SRC%\lib\*.a %_DEST%\lib%_EXT%\*.a - -mkdir: %_DEST%\inc%_EXT%\basegfx - -mkdir: %_DEST%\inc%_EXT%\basegfx\matrix -..\inc\basegfx\matrix\b2dhommatrix.hxx %_DEST%\inc%_EXT%\basegfx\matrix\b2dhommatrix.hxx -..\inc\basegfx\matrix\b2dhommatrixtools.hxx %_DEST%\inc%_EXT%\basegfx\matrix\b2dhommatrixtools.hxx -..\inc\basegfx\matrix\b3dhommatrix.hxx %_DEST%\inc%_EXT%\basegfx\matrix\b3dhommatrix.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\point -..\inc\basegfx\point\b2dpoint.hxx %_DEST%\inc%_EXT%\basegfx\point\b2dpoint.hxx -..\inc\basegfx\point\b3dpoint.hxx %_DEST%\inc%_EXT%\basegfx\point\b3dpoint.hxx -..\inc\basegfx\point\b2ipoint.hxx %_DEST%\inc%_EXT%\basegfx\point\b2ipoint.hxx -..\inc\basegfx\point\b3ipoint.hxx %_DEST%\inc%_EXT%\basegfx\point\b3ipoint.hxx -..\inc\basegfx\point\b2dhompoint.hxx %_DEST%\inc%_EXT%\basegfx\point\b2dhompoint.hxx -..\inc\basegfx\point\b3dhompoint.hxx %_DEST%\inc%_EXT%\basegfx\point\b3dhompoint.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\range -..\inc\basegfx\range\rangeexpander.hxx %_DEST%\inc%_EXT%\basegfx\range\rangeexpander.hxx -..\inc\basegfx\range\basicrange.hxx %_DEST%\inc%_EXT%\basegfx\range\basicrange.hxx -..\inc\basegfx\range\basicbox.hxx %_DEST%\inc%_EXT%\basegfx\range\basicbox.hxx -..\inc\basegfx\range\b1drange.hxx %_DEST%\inc%_EXT%\basegfx\range\b1drange.hxx -..\inc\basegfx\range\b2dpolyrange.hxx %_DEST%\inc%_EXT%\basegfx\range\b2dpolyrange.hxx -..\inc\basegfx\range\b2drange.hxx %_DEST%\inc%_EXT%\basegfx\range\b2drange.hxx -..\inc\basegfx\range\b2drectangle.hxx %_DEST%\inc%_EXT%\basegfx\range\b2drectangle.hxx -..\inc\basegfx\range\b2dconnectedranges.hxx %_DEST%\inc%_EXT%\basegfx\range\b2dconnectedranges.hxx -..\inc\basegfx\range\b3drange.hxx %_DEST%\inc%_EXT%\basegfx\range\b3drange.hxx -..\inc\basegfx\range\b3dvolume.hxx %_DEST%\inc%_EXT%\basegfx\range\b3dvolume.hxx -..\inc\basegfx\range\b1irange.hxx %_DEST%\inc%_EXT%\basegfx\range\b1irange.hxx -..\inc\basegfx\range\b2irange.hxx %_DEST%\inc%_EXT%\basegfx\range\b2irange.hxx -..\inc\basegfx\range\b2irectangle.hxx %_DEST%\inc%_EXT%\basegfx\range\b2irectangle.hxx -..\inc\basegfx\range\b3irange.hxx %_DEST%\inc%_EXT%\basegfx\range\b3irange.hxx -..\inc\basegfx\range\b3ivolume.hxx %_DEST%\inc%_EXT%\basegfx\range\b3ivolume.hxx -..\inc\basegfx\range\b1ibox.hxx %_DEST%\inc%_EXT%\basegfx\range\b1ibox.hxx -..\inc\basegfx\range\b2ibox.hxx %_DEST%\inc%_EXT%\basegfx\range\b2ibox.hxx -..\inc\basegfx\range\b3ibox.hxx %_DEST%\inc%_EXT%\basegfx\range\b3ibox.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\vector -..\inc\basegfx\vector\b2dvector.hxx %_DEST%\inc%_EXT%\basegfx\vector\b2dvector.hxx -..\inc\basegfx\vector\b2enums.hxx %_DEST%\inc%_EXT%\basegfx\vector\b2enums.hxx -..\inc\basegfx\vector\b2dsize.hxx %_DEST%\inc%_EXT%\basegfx\vector\b2dsize.hxx -..\inc\basegfx\vector\b3dvector.hxx %_DEST%\inc%_EXT%\basegfx\vector\b3dvector.hxx -..\inc\basegfx\vector\b3dsize.hxx %_DEST%\inc%_EXT%\basegfx\vector\b3dsize.hxx -..\inc\basegfx\vector\b2ivector.hxx %_DEST%\inc%_EXT%\basegfx\vector\b2ivector.hxx -..\inc\basegfx\vector\b2isize.hxx %_DEST%\inc%_EXT%\basegfx\vector\b2isize.hxx -..\inc\basegfx\vector\b3ivector.hxx %_DEST%\inc%_EXT%\basegfx\vector\b3ivector.hxx -..\inc\basegfx\vector\b3isize.hxx %_DEST%\inc%_EXT%\basegfx\vector\b3isize.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\curve -..\inc\basegfx\curve\b2dcubicbezier.hxx %_DEST%\inc%_EXT%\basegfx\curve\b2dcubicbezier.hxx -..\inc\basegfx\curve\b2dquadraticbezier.hxx %_DEST%\inc%_EXT%\basegfx\curve\b2dquadraticbezier.hxx -..\inc\basegfx\curve\b2dbeziertools.hxx %_DEST%\inc%_EXT%\basegfx\curve\b2dbeziertools.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\numeric -..\inc\basegfx\numeric\ftools.hxx %_DEST%\inc%_EXT%\basegfx\numeric\ftools.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\polygon -..\inc\basegfx\polygon\b2dpolygon.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolygon.hxx -..\inc\basegfx\polygon\b2dpolypolygon.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolypolygon.hxx -..\inc\basegfx\polygon\b2dpolypolygonfillrule.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolypolygonfillrule.hxx -..\inc\basegfx\polygon\b2dpolygontools.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolygontools.hxx -..\inc\basegfx\polygon\b2dpolypolygontools.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolypolygontools.hxx -..\inc\basegfx\polygon\b2dpolypolygonrasterconverter.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolypolygonrasterconverter.hxx -..\inc\basegfx\polygon\b2dlinegeometry.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dlinegeometry.hxx -..\inc\basegfx\polygon\b2dpolygonclipper.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolygonclipper.hxx -..\inc\basegfx\polygon\b2dpolygontriangulator.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolygontriangulator.hxx -..\inc\basegfx\polygon\b2dpolygoncutandtouch.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolygoncutandtouch.hxx -..\inc\basegfx\polygon\b2dpolypolygoncutter.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dpolypolygoncutter.hxx -..\inc\basegfx\polygon\b2dtrapezoid.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b2dtrapezoid.hxx -..\inc\basegfx\polygon\b3dpolygon.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b3dpolygon.hxx -..\inc\basegfx\polygon\b3dpolypolygon.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b3dpolypolygon.hxx -..\inc\basegfx\polygon\b3dpolygontools.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b3dpolygontools.hxx -..\inc\basegfx\polygon\b3dpolypolygontools.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b3dpolypolygontools.hxx -..\inc\basegfx\polygon\b3dpolygonclipper.hxx %_DEST%\inc%_EXT%\basegfx\polygon\b3dpolygonclipper.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\tuple -..\inc\basegfx\tuple\b2dtuple.hxx %_DEST%\inc%_EXT%\basegfx\tuple\b2dtuple.hxx -..\inc\basegfx\tuple\b3dtuple.hxx %_DEST%\inc%_EXT%\basegfx\tuple\b3dtuple.hxx -..\inc\basegfx\tuple\b2ituple.hxx %_DEST%\inc%_EXT%\basegfx\tuple\b2ituple.hxx -..\inc\basegfx\tuple\b3ituple.hxx %_DEST%\inc%_EXT%\basegfx\tuple\b3ituple.hxx -..\inc\basegfx\tuple\b2i64tuple.hxx %_DEST%\inc%_EXT%\basegfx\tuple\b2i64tuple.hxx -..\inc\basegfx\tuple\b3i64tuple.hxx %_DEST%\inc%_EXT%\basegfx\tuple\b3i64tuple.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\tools -..\inc\basegfx\tools\canvastools.hxx %_DEST%\inc%_EXT%\basegfx\tools\canvastools.hxx -..\inc\basegfx\tools\keystoplerp.hxx %_DEST%\inc%_EXT%\basegfx\tools\keystoplerp.hxx -..\inc\basegfx\tools\lerp.hxx %_DEST%\inc%_EXT%\basegfx\tools\lerp.hxx -..\inc\basegfx\tools\unopolypolygon.hxx %_DEST%\inc%_EXT%\basegfx\tools\unopolypolygon.hxx -..\inc\basegfx\tools\b2dclipstate.hxx %_DEST%\inc%_EXT%\basegfx\tools\b2dclipstate.hxx -..\inc\basegfx\tools\rectcliptools.hxx %_DEST%\inc%_EXT%\basegfx\tools\rectcliptools.hxx -..\inc\basegfx\tools\tools.hxx %_DEST%\inc%_EXT%\basegfx\tools\tools.hxx -..\inc\basegfx\tools\gradienttools.hxx %_DEST%\inc%_EXT%\basegfx\tools\gradienttools.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\color -..\inc\basegfx\color\bcolor.hxx %_DEST%\inc%_EXT%\basegfx\color\bcolor.hxx -..\inc\basegfx\color\bcolortools.hxx %_DEST%\inc%_EXT%\basegfx\color\bcolortools.hxx -..\inc\basegfx\color\bcolormodifier.hxx %_DEST%\inc%_EXT%\basegfx\color\bcolormodifier.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\pixel -..\inc\basegfx\pixel\bpixel.hxx %_DEST%\inc%_EXT%\basegfx\pixel\bpixel.hxx -..\inc\basegfx\pixel\bzpixel.hxx %_DEST%\inc%_EXT%\basegfx\pixel\bzpixel.hxx - -mkdir: %_DEST%\inc%_EXT%\basegfx\raster -..\inc\basegfx\raster\bpixelraster.hxx %_DEST%\inc%_EXT%\basegfx\raster\bpixelraster.hxx -..\inc\basegfx\raster\bzpixelraster.hxx %_DEST%\inc%_EXT%\basegfx\raster\bzpixelraster.hxx -..\inc\basegfx\raster\rasterconvert3d.hxx %_DEST%\inc%_EXT%\basegfx\raster\rasterconvert3d.hxx