1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of various wxGraphics* classes
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
12 A wxGraphicsPath is a native representation of a geometric path. The
13 contents are specific an private to the respective renderer. Instances are
14 reference counted and can therefore be assigned as usual. The only way to
15 get a valid instance is by using wxGraphicsContext::CreatePath() or
16 wxGraphicsRenderer::CreatePath().
21 class wxGraphicsPath
: public wxGraphicsObject
25 Adds an arc of a circle centering at (@a x,@a y) with radius (@a r)
26 from @a startAngle to @a endAngle.
28 virtual void AddArc(wxDouble x
, wxDouble y
, wxDouble r
,
29 wxDouble startAngle
, wxDouble endAngle
,
32 Adds an arc of a circle centering at @a c with radius (@a r)
33 from @a startAngle to @a endAngle.
35 void AddArc(const wxPoint2DDouble
& c
, wxDouble r
,
36 wxDouble startAngle
, wxDouble endAngle
, bool clockwise
);
39 Appends a an arc to two tangents connecting (current) to (@a x1,@a y1)
40 and (@a x1,@a y1) to (@a x2,@a y2), also a straight line from (current)
43 virtual void AddArcToPoint(wxDouble x1
, wxDouble y1
, wxDouble x2
,
44 wxDouble y2
, wxDouble r
);
47 Appends a circle around (@a x,@a y) with radius @a r as a new closed
50 virtual void AddCircle(wxDouble x
, wxDouble y
, wxDouble r
);
53 Adds a cubic bezier curve from the current point, using two control
54 points and an end point.
56 virtual void AddCurveToPoint(wxDouble cx1
, wxDouble cy1
,
57 wxDouble cx2
, wxDouble cy2
,
58 wxDouble x
, wxDouble y
);
60 Adds a cubic bezier curve from the current point, using two control
61 points and an end point.
63 void AddCurveToPoint(const wxPoint2DDouble
& c1
,
64 const wxPoint2DDouble
& c2
,
65 const wxPoint2DDouble
& e
);
68 Appends an ellipse fitting into the passed in rectangle.
70 virtual void AddEllipse(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
73 Adds a straight line from the current point to (@a x,@a y).
75 virtual void AddLineToPoint(wxDouble x
, wxDouble y
);
77 Adds a straight line from the current point to @a p.
79 void AddLineToPoint(const wxPoint2DDouble
& p
);
84 virtual void AddPath(const wxGraphicsPath
& path
);
87 Adds a quadratic bezier curve from the current point, using a control
88 point and an end point.
90 virtual void AddQuadCurveToPoint(wxDouble cx
, wxDouble cy
,
91 wxDouble x
, wxDouble y
);
94 Appends a rectangle as a new closed subpath.
96 virtual void AddRectangle(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
99 Appends a rounded rectangle as a new closed subpath.
101 virtual void AddRoundedRectangle(wxDouble x
, wxDouble y
, wxDouble w
,
102 wxDouble h
, wxDouble radius
);
105 Closes the current sub-path.
107 virtual void CloseSubpath();
110 @return @true if the point is within the path.
112 bool Contains(const wxPoint2DDouble
& c
,
113 int fillStyle
= wxODDEVEN_RULE
) const;
115 @return @true if the point is within the path.
117 virtual bool Contains(wxDouble x
, wxDouble y
,
118 int fillStyle
= wxODDEVEN_RULE
) const;
121 Gets the bounding box enclosing all points (possibly including control
124 wxRect2DDouble
GetBox() const;
126 Gets the bounding box enclosing all points (possibly including control
129 virtual void GetBox(wxDouble
* x
, wxDouble
* y
,
130 wxDouble
* w
, wxDouble
* h
) const;
133 Gets the last point of the current path, (0,0) if not yet set.
135 virtual void GetCurrentPoint(wxDouble
* x
, wxDouble
* y
) const;
137 Gets the last point of the current path, (0,0) if not yet set.
139 wxPoint2DDouble
GetCurrentPoint() const;
142 Returns the native path (CGPathRef for Core Graphics, Path pointer for
143 GDIPlus and a cairo_path_t pointer for cairo).
145 virtual void* GetNativePath() const;
148 Begins a new subpath at (@a x,@a y).
150 virtual void MoveToPoint(wxDouble x
, wxDouble y
);
152 Begins a new subpath at @a p.
154 void MoveToPoint(const wxPoint2DDouble
& p
);
157 Transforms each point of this path by the matrix.
159 virtual void Transform(const wxGraphicsMatrix
& matrix
);
162 Gives back the native path returned by GetNativePath() because there
163 might be some deallocations necessary (e.g. on cairo the native path
164 returned by GetNativePath() is newly allocated each time).
166 virtual void UnGetNativePath(void* p
) const;
172 @class wxGraphicsObject
174 This class is the superclass of native graphics objects like pens etc. It
175 allows reference counting. Not instantiated by user code.
180 @see wxGraphicsBrush, wxGraphicsPen, wxGraphicsMatrix, wxGraphicsPath
182 class wxGraphicsObject
: public wxObject
186 Returns the renderer that was used to create this instance, or @NULL
187 if it has not been initialized yet.
189 wxGraphicsRenderer
* GetRenderer() const;
192 @return @false if this object is valid, otherwise returns @true.
198 Anti-aliasing modes used by wxGraphicsContext::SetAntialisingMode
202 /** No anti-aliasing */
205 /** The default anti-aliasing */
210 Compositing is done using Porter-Duff compositions
211 (see http://keithp.com/~keithp/porterduff/p253-porter.pdf) with
212 wxGraphicsContext::SetCompositionMode
214 The description give a short equation on how the values of a resulting
215 pixel are calculated.
216 @e R = Result, @e S = Source, @e D = Destination, colors premultiplied with alpha
217 @e Ra, @e Sa, @e Da their alpha components
219 enum wxCompositionMode
221 wxCOMPOSITION_CLEAR
, /**< @e R = 0 */
222 wxCOMPOSITION_SOURCE
, /**< @e R = S */
223 wxCOMPOSITION_OVER
, /**< @e R = @e S + @e D*(1 - @e Sa) */
224 wxCOMPOSITION_IN
, /**< @e R = @e S*@e Da */
225 wxCOMPOSITION_OUT
, /**< @e R = @e S*(1 - @e Da) */
226 wxCOMPOSITION_ATOP
, /**< @e R = @e S*@e Da + @e D*(1 - @e Sa) */
228 wxCOMPOSITION_DEST
, /**< @e R = @e D, essentially a noop */
229 wxCOMPOSITION_DEST_OVER
, /**< @e R = @e S*(1 - @e Da) + @e D */
230 wxCOMPOSITION_DEST_IN
, /**< @e R = @e D*@e Sa */
231 wxCOMPOSITION_DEST_OUT
, /**< @e R = @e D*(1 - @e Sa) */
232 wxCOMPOSITION_DEST_ATOP
, /**< @e R = @e S*(1 - @e Da) + @e D*@e Sa */
233 wxCOMPOSITION_XOR
, /**< @e R = @e S*(1 - @e Da) + @e D*(1 - @e Sa) */
234 wxCOMPOSITION_ADD
, /**< @e R = @e S + @e D */
239 @class wxGraphicsContext
241 A wxGraphicsContext instance is the object that is drawn upon. It is
242 created by a renderer using wxGraphicsRenderer::CreateContext(). This can
243 be either directly using a renderer instance, or indirectly using the
244 static convenience Create() functions of wxGraphicsContext that always
245 delegate the task to the default renderer.
248 void MyCanvas::OnPaint(wxPaintEvent &event)
253 // Create graphics context from it
254 wxGraphicsContext *gc = wxGraphicsContext::Create( dc );
258 // make a path that contains a circle and some lines
259 gc->SetPen( *wxRED_PEN );
260 wxGraphicsPath path = gc->CreatePath();
261 path.AddCircle( 50.0, 50.0, 50.0 );
262 path.MoveToPoint(0.0, 50.0);
263 path.AddLineToPoint(100.0, 50.0);
264 path.MoveToPoint(50.0, 0.0);
265 path.AddLineToPoint(50.0, 100.0 );
267 path.AddRectangle(25.0, 25.0, 50.0, 50.0);
269 gc->StrokePath(path);
279 @see wxGraphicsRenderer::CreateContext(), wxGCDC, wxDC
281 class wxGraphicsContext
: public wxGraphicsObject
285 Creates a wxGraphicsContext from a wxWindow.
287 @see wxGraphicsRenderer::CreateContext()
289 static wxGraphicsContext
* Create(wxWindow
* window
);
292 Creates a wxGraphicsContext from a wxWindowDC
294 @see wxGraphicsRenderer::CreateContext()
296 static wxGraphicsContext
* Create(const wxWindowDC
& dc
);
299 Creates a wxGraphicsContext from a wxMemoryDC
301 @see wxGraphicsRenderer::CreateContext()
303 static wxGraphicsContext
* Create(const wxMemoryDC
& dc
);
306 Creates a wxGraphicsContext from a wxPrinterDC. Under GTK+, this will
307 only work when using the GtkPrint printing backend which is available
310 @see wxGraphicsRenderer::CreateContext(), @ref overview_unixprinting
312 static wxGraphicsContext
* Create(const wxPrinterDC
& dc
);
315 Clips drawings to the specified region.
317 virtual void Clip(const wxRegion
& region
) = 0;
320 Clips drawings to the specified rectangle.
322 virtual void Clip(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
) = 0;
325 Concatenates the passed in transform with the current transform of this
328 virtual void ConcatTransform(const wxGraphicsMatrix
& matrix
) = 0;
331 Creates a native brush from a wxBrush.
333 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) const;
336 Creates a native graphics font from a wxFont and a text colour.
338 virtual wxGraphicsFont
CreateFont(const wxFont
& font
,
339 const wxColour
& col
= *wxBLACK
) const;
342 Creates a wxGraphicsContext from a native context. This native context
343 must be a CGContextRef for Core Graphics, a Graphics pointer for
344 GDIPlus, or a cairo_t pointer for cairo.
346 @see wxGraphicsRenderer::CreateContextFromNativeContext()
348 static wxGraphicsContext
* CreateFromNative(void* context
);
351 Creates a wxGraphicsContext from a native window.
353 @see wxGraphicsRenderer::CreateContextFromNativeWindow()
355 static wxGraphicsContext
* CreateFromNativeWindow(void* window
);
358 Creates a native brush, having a linear gradient, starting at
359 (@a x1, @a y1) with color @a c1 to (@a x2, @a y2) with color @a c2.
361 virtual wxGraphicsBrush
CreateLinearGradientBrush(wxDouble x1
,
366 const wxColour
& c2
) const;
369 Creates a native affine transformation matrix from the passed in
370 values. The default parameters result in an identity matrix.
372 virtual wxGraphicsMatrix
CreateMatrix(wxDouble a
= 1.0, wxDouble b
= 0.0,
373 wxDouble c
= 0.0, wxDouble d
= 1.0,
375 wxDouble ty
= 0.0) const;
378 Creates a native graphics path which is initially empty.
380 wxGraphicsPath
CreatePath() const;
383 Creates a native pen from a wxPen.
385 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) const;
388 Creates a native brush, having a radial gradient originating at
389 (@a xo, @a yc) with color @a oColour and ends on a circle around
390 (@a xc, @a yc) with the given @a radius and color @a cColour.
392 virtual wxGraphicsBrush
CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
393 wxDouble xc
, wxDouble yc
,
395 const wxColour
& oColor
,
396 const wxColour
& cColor
) const;
399 Draws the bitmap. In case of a mono bitmap, this is treated as a mask
400 and the current brushed is used for filling.
402 virtual void DrawBitmap(const wxBitmap
& bmp
, wxDouble x
, wxDouble y
,
403 wxDouble w
, wxDouble h
) = 0;
408 virtual void DrawEllipse(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
413 virtual void DrawIcon(const wxIcon
& icon
, wxDouble x
, wxDouble y
,
414 wxDouble w
, wxDouble h
) = 0;
419 virtual void DrawLines(size_t n
, const wxPoint2DDouble
* points
,
420 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
);
423 Draws the path by first filling and then stroking.
425 virtual void DrawPath(const wxGraphicsPath
& path
,
426 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
);
431 virtual void DrawRectangle(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
434 Draws a rounded rectangle.
436 virtual void DrawRoundedRectangle(wxDouble x
, wxDouble y
, wxDouble w
,
437 wxDouble h
, wxDouble radius
);
440 Draws text at the defined position.
442 void DrawText(const wxString
& str
, wxDouble x
, wxDouble y
);
444 Draws text at the defined position.
449 The x coordinate position to draw the text at.
451 The y coordinate position to draw the text at.
453 The angle relative to the (default) horizontal direction to draw
456 void DrawText(const wxString
& str
, wxDouble x
, wxDouble y
, wxDouble angle
);
458 Draws text at the defined position.
463 The x coordinate position to draw the text at.
465 The y coordinate position to draw the text at.
466 @param backgroundBrush
467 Brush to fill the text with.
469 void DrawText(const wxString
& str
, wxDouble x
, wxDouble y
,
470 const wxGraphicsBrush
& backgroundBrush
);
472 Draws text at the defined position.
477 The x coordinate position to draw the text at.
479 The y coordinate position to draw the text at.
481 The angle relative to the (default) horizontal direction to draw
483 @param backgroundBrush
484 Brush to fill the text with.
486 void DrawText(const wxString
& str
, wxDouble x
, wxDouble y
,
487 wxDouble angle
, const wxGraphicsBrush
& backgroundBrush
);
490 Fills the path with the current brush.
492 virtual void FillPath(const wxGraphicsPath
& path
,
493 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
) = 0;
496 Returns the native context (CGContextRef for Core Graphics, Graphics
497 pointer for GDIPlus and cairo_t pointer for cairo).
499 virtual void* GetNativeContext() = 0;
502 Fills the @a widths array with the widths from the beginning of
503 @a text to the corresponding character of @a text.
505 virtual void GetPartialTextExtents(const wxString
& text
,
506 wxArrayDouble
& widths
) const = 0;
509 Gets the dimensions of the string using the currently selected font.
512 The text string to measure.
514 Variable to store the total calculated width of the text.
516 Variable to store the total calculated height of the text.
518 Variable to store the dimension from the baseline of the font to
519 the bottom of the descender.
520 @param externalLeading
521 Any extra vertical space added to the font by the font designer
524 virtual void GetTextExtent(const wxString
& text
, wxDouble
* width
,
525 wxDouble
* height
, wxDouble
* descent
,
526 wxDouble
* externalLeading
) const = 0;
529 Gets the current transformation matrix of this context.
531 virtual wxGraphicsMatrix
GetTransform() const = 0;
534 Resets the clipping to original shape.
536 virtual void ResetClip() = 0;
539 Rotates the current transformation matrix (in radians).
541 virtual void Rotate(wxDouble angle
) = 0;
544 Scales the current transformation matrix.
546 virtual void Scale(wxDouble xScale
, wxDouble yScale
) = 0;
549 Sets the brush for filling paths.
551 void SetBrush(const wxBrush
& brush
);
553 Sets the brush for filling paths.
555 virtual void SetBrush(const wxGraphicsBrush
& brush
);
558 Sets the font for drawing text.
560 void SetFont(const wxFont
& font
, const wxColour
& colour
);
562 Sets the font for drawing text.
564 virtual void SetFont(const wxGraphicsFont
& font
);
567 Sets the pen used for stroking.
569 void SetPen(const wxPen
& pen
);
571 Sets the pen used for stroking.
573 virtual void SetPen(const wxGraphicsPen
& pen
);
576 Sets the current transformation matrix of this context
578 virtual void SetTransform(const wxGraphicsMatrix
& matrix
) = 0;
581 Strokes a single line.
583 virtual void StrokeLine(wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
);
586 Stroke disconnected lines from begin to end points, fastest method
587 available for this purpose.
589 virtual void StrokeLines(size_t n
, const wxPoint2DDouble
* beginPoints
,
590 const wxPoint2DDouble
* endPoints
);
592 Stroke disconnected lines from begin to end points, fastest method
593 available for this purpose.
595 virtual void StrokeLines(size_t n
, const wxPoint2DDouble
* points
);
598 Strokes along a path with the current pen.
600 virtual void StrokePath(const wxGraphicsPath
& path
) = 0;
603 Translates the current transformation matrix.
605 virtual void Translate(wxDouble dx
, wxDouble dy
) = 0;
608 Redirects all rendering is done into a fully transparent temporary context
610 virtual void BeginLayer(wxDouble opacity
) = 0;
613 Composites back the drawings into the context with the opacity given at
616 virtual void EndLayer() = 0;
619 Sets the antialiasing mode, returns true if it supported
621 virtual bool SetAntialiasMode(wxAntialiasMode antialias
) = 0;
624 Returns the current shape antialiasing mode
626 virtual wxAntialiasMode
GetAntialiasMode() const ;
629 Sets the compositing operator, returns true if it supported
631 virtual bool SetCompositionMode(wxCompositionMode op
) = 0;
634 Returns the current compositing operator
636 virtual wxCompositionMode
GetCompositionMode() const;
643 @class wxGraphicsRenderer
645 A wxGraphicsRenderer is the instance corresponding to the rendering engine
646 used. There may be multiple instances on a system, if there are different
647 rendering engines present, but there is always only one instance per
648 engine. This instance is pointed back to by all objects created by it
649 (wxGraphicsContext, wxGraphicsPath etc) and can be retrieved through their
650 wxGraphicsObject::GetRenderer() method. Therefore you can create an
651 additional instance of a path etc. by calling
652 wxGraphicsObject::GetRenderer() and then using the appropriate CreateXXX()
653 function of that renderer.
656 wxGraphicsPath *path = // from somewhere
657 wxGraphicsBrush *brush = path->GetRenderer()->CreateBrush( *wxBLACK_BRUSH );
663 class wxGraphicsRenderer
: public wxObject
667 Creates a wxGraphicsContext from a wxWindow.
669 virtual wxGraphicsContext
* CreateContext(wxWindow
* window
) = 0;
672 Creates a wxGraphicsContext from a wxWindowDC
674 virtual wxGraphicsContext
* CreateContext(const wxWindowDC
& dc
) = 0 ;
677 Creates a wxGraphicsContext from a wxMemoryDC
679 virtual wxGraphicsContext
* CreateContext(const wxMemoryDC
& dc
) = 0 ;
682 Creates a wxGraphicsContext from a wxPrinterDC
684 virtual wxGraphicsContext
* CreateContext(const wxPrinterDC
& dc
) = 0 ;
687 Creates a native brush from a wxBrush.
689 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) = 0;
692 Creates a wxGraphicsContext from a native context. This native context
693 must be a CGContextRef for Core Graphics, a Graphics pointer for
694 GDIPlus, or a cairo_t pointer for cairo.
696 virtual wxGraphicsContext
* CreateContextFromNativeContext(void* context
) = 0;
699 Creates a wxGraphicsContext from a native window.
701 virtual wxGraphicsContext
* CreateContextFromNativeWindow(void* window
) = 0;
704 Creates a wxGraphicsContext that can be used for measuring texts only.
705 No drawing commands are allowed.
707 virtual wxGraphicsContext
* CreateMeasuringContext() = 0;
710 Creates a native graphics font from a wxFont and a text colour.
712 virtual wxGraphicsFont
CreateFont(const wxFont
& font
,
713 const wxColour
& col
= *wxBLACK
) = 0;
716 Creates a native brush, having a linear gradient, starting at
717 (@a x1, @a y1) with color @a c1 to (@a x2, @a y2) with color @a c2.
719 virtual wxGraphicsBrush
CreateLinearGradientBrush(wxDouble x1
,
724 const wxColour
& c2
) = 0;
727 Creates a native affine transformation matrix from the passed in
728 values. The defaults result in an identity matrix.
730 virtual wxGraphicsMatrix
CreateMatrix(wxDouble a
= 1.0, wxDouble b
= 0.0,
731 wxDouble c
= 0.0, wxDouble d
= 1.0,
733 wxDouble ty
= 0.0) = 0;
736 Creates a native graphics path which is initially empty.
738 virtual wxGraphicsPath
CreatePath() = 0;
741 Creates a native pen from a wxPen.
743 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) = 0;
746 Creates a native brush, having a radial gradient originating at
747 (@a xo, @a yc) with color @a oColour and ends on a circle around
748 (@a xc, @a yc) with the given @a radius and color @a cColour.
750 virtual wxGraphicsBrush
CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
751 wxDouble xc
, wxDouble yc
,
753 const wxColour
& oColour
,
754 const wxColour
& cColour
) = 0;
757 Returns the default renderer on this platform. On OS X this is the Core
758 Graphics (a.k.a. Quartz 2D) renderer, on MSW the GDIPlus renderer, and
759 on GTK we currently default to the cairo renderer.
761 static wxGraphicsRenderer
* GetDefaultRenderer();
767 @class wxGraphicsBrush
769 A wxGraphicsBrush is a native representation of a brush. The contents are
770 specific and private to the respective renderer. Instances are ref counted
771 and can therefore be assigned as usual. The only way to get a valid
772 instance is via wxGraphicsContext::CreateBrush() or
773 wxGraphicsRenderer::CreateBrush().
778 class wxGraphicsBrush
: public wxGraphicsObject
787 @class wxGraphicsFont
789 A wxGraphicsFont is a native representation of a font. The contents are
790 specific and private to the respective renderer. Instances are ref counted
791 and can therefore be assigned as usual. The only way to get a valid
792 instance is via wxGraphicsContext::CreateFont() or
793 wxGraphicsRenderer::CreateFont().
798 class wxGraphicsFont
: public wxGraphicsObject
809 A wxGraphicsPen is a native representation of a pen. The contents are
810 specific and private to the respective renderer. Instances are ref counted
811 and can therefore be assigned as usual. The only way to get a valid
812 instance is via wxGraphicsContext::CreatePen() or
813 wxGraphicsRenderer::CreatePen().
818 class wxGraphicsPen
: public wxGraphicsObject
827 @class wxGraphicsMatrix
829 A wxGraphicsMatrix is a native representation of an affine matrix. The
830 contents are specific and private to the respective renderer. Instances are
831 ref counted and can therefore be assigned as usual. The only way to get a
832 valid instance is via wxGraphicsContext::CreateMatrix() or
833 wxGraphicsRenderer::CreateMatrix().
838 class wxGraphicsMatrix
: public wxGraphicsObject
842 Concatenates the matrix passed with the current matrix.
844 virtual void Concat(const wxGraphicsMatrix
* t
);
846 Concatenates the matrix passed with the current matrix.
848 void Concat(const wxGraphicsMatrix
& t
);
851 Returns the component values of the matrix via the argument pointers.
853 virtual void Get(wxDouble
* a
= NULL
, wxDouble
* b
= NULL
,
854 wxDouble
* c
= NULL
, wxDouble
* d
= NULL
,
855 wxDouble
* tx
= NULL
, wxDouble
* ty
= NULL
) const;
858 Returns the native representation of the matrix. For CoreGraphics this
859 is a CFAffineMatrix pointer, for GDIPlus a Matrix Pointer, and for
860 Cairo a cairo_matrix_t pointer.
862 virtual void* GetNativeMatrix() const;
867 virtual void Invert();
870 Returns @true if the elements of the transformation matrix are equal.
872 virtual bool IsEqual(const wxGraphicsMatrix
* t
) const;
874 Returns @true if the elements of the transformation matrix are equal.
876 bool IsEqual(const wxGraphicsMatrix
& t
) const;
879 Return @true if this is the identity matrix.
881 virtual bool IsIdentity() const;
884 Rotates this matrix (in radians).
886 virtual void Rotate(wxDouble angle
);
891 virtual void Scale(wxDouble xScale
, wxDouble yScale
);
894 Sets the matrix to the respective values (default values are the
897 virtual void Set(wxDouble a
= 1.0, wxDouble b
= 0.0, wxDouble c
= 0.0,
898 wxDouble d
= 1.0, wxDouble tx
= 0.0, wxDouble ty
= 0.0);
901 Applies this matrix to a distance (ie. performs all transforms except
904 virtual void TransformDistance(wxDouble
* dx
, wxDouble
* dy
) const;
907 Applies this matrix to a point.
909 virtual void TransformPoint(wxDouble
* x
, wxDouble
* y
) const;
912 Translates this matrix.
914 virtual void Translate(wxDouble dx
, wxDouble dy
);