|
- Coordinates
- Using the drawing functions
- Drawing in PHP
- Drawing in Browser code
dCircle (Function) In french: dCercle
// Draw a circle whose background is light yellow and // whose border is light blue in an Image control dStartDrawing(IMG_Drawing) dCircle(10, 10, 50, 50, LightYellow, LightBlue)
Versions 24 and later New in version 24 Syntax
dCircle([<Image>, ] <X1> , <Y1> , <X2> , <Y2> [, <Background color> [, <Line color>]])
<Image>: Optional control name or optional Image, WDPic or picLayer variable Versions 24 and later New in version 24
<X1>: Integer X coordinate of top left corner of the rectangle containing the circle. These coordinates are expressed in pixels. <Y1>: Integer Y coordinate of top left corner of the rectangle containing the circle. These coordinates are expressed in pixels. <X2>: Integer X coordinate of bottom right corner of the rectangle containing the circle. These coordinates are expressed in pixels. <Y2>: Integer Y coordinate of bottom right corner of the rectangle containing the circle. These coordinates are expressed in pixels. <Background color>: Integer or constant (optional) Background color of circle. This color can correspond to:If this parameter is not specified, the background color:- is Transparent if dBackground was not used beforehand,
- corresponds to the color specified during the last call to dBackground.
<Line color>: Integer or constant (optional) Color of circle line. This color can correspond to:If this parameter is not specified, the line color:- corresponds to the color specified in the last call to dPen,
- is identical to the background color if dPen was not used.
Remarks Coordinates
The coordinates are specified in relation to the top left corner of the Image control (coordinates set to (0,0)). Versions 16 and later New in version 16
Related Examples:
|
Unit examples (WINDEV): The drawing functions
[ + ] Using the main drawing functions of WINDEV to: - Initialize an Image control for drawing - Draw simple shapes - Write a text into a drawing - Change the color in a drawing
|
Business / GUI classification : Neutral code
This page is also available for…
|
|
|
| |
| Click [Add] to post a comment |
|
| |
|
| |
| |
| |
| |
| |
| |
| | |
| |