2.2 Basic Pict Constructors
(dc draw w h) → pict? |
draw : ((is-a?/c dc<%>) real? real? . -> . any) |
w : real? |
h : real? |
(dc draw w h a d) → pict? |
draw : ((is-a?/c dc<%>) real? real? . -> . any) |
w : real? |
h : real? |
a : real? |
d : real? |
When the rendering procedure is called, the current pen and brush will be solid and in the pict’s color (and linewidth), and the scale and offset of the dc will be set. The text mode will be transparent, but the font and text colors are not guaranteed to be anything in particular.
(blank [size]) → pict? |
size : real? = 0 |
(blank w h) → pict? |
w : real? |
h : real? |
(blank w a d) → pict? |
w : real? |
a : real? |
d : real? |
(blank w h a d) → pict? |
w : real? |
h : real? |
a : real? |
d : real? |
(text content [style size angle]) → pict? |
content : string? |
style : text-style/c = null |
size : (integer-in 1 255) = 12 |
angle : real? = 0 |
The style argument must be one of the following:
null —
the default, same as 'default a font% object
a font family symbol, such a 'roman (see font%)
a font face string, such as "Helvetica" (see font%)
(cons str sym) combining a face string and a font family (in case the face is unavailable; see font%)
(cons 'bold style) for a valid style
(cons 'italic style)
(cons 'subscript style)
(cons 'superscript style)
(cons 'caps style)
(cons 'combine style) —
allows kerning and ligatures (the default, unless the 'modern family is specified) (cons 'no-combine style) —
renders characters individually
If both 'combine and 'no-combine are specified, the first one takes precedence. If caps is specified, the angle must be zero.
The given size is in pixels, but it is ignored if a font% object is provided in the text-style.
The angle is in radians, and positive values rotate counter-clockwise. For a non-zero angle, the resulting pict’s bounding box covers the rotated text, and the descent is zero and the ascent is the height.
(hline w h [#:segment seg-length]) → pict? |
w : real? |
h : real? |
seg-length : (or/c #f real?) = #f |
(vline w h [#:segment seg-length]) → pict? |
w : real? |
h : real? |
seg-length : (or/c #f real?) = #f |
| ||||||||||||||||||||||||||||
pict : pict? | ||||||||||||||||||||||||||||
seg-length : (or/c #f real?) = #f | ||||||||||||||||||||||||||||
color : (or/c #f string? (is-a?/c color<%>)) = #f | ||||||||||||||||||||||||||||
width : (or/c #f real?) = #f |
(ellipse w h) → pict? |
w : real? |
h : real? |
(circle diameter) → pict? |
diameter : real? |
(filled-ellipse w h) → pict? |
w : real? |
h : real? |
(disk diameter) → pict? |
diameter : real? |
(rectangle w h) → pict? | |||||||||||||||||||||
w : real? | |||||||||||||||||||||
h : real? | |||||||||||||||||||||
| |||||||||||||||||||||
w : real? | |||||||||||||||||||||
h : real? | |||||||||||||||||||||
draw-border? : any/c = #t |
If draw-border? is #f, then the pen is set to be transparent before drawing the rectangle.
| ||||||||||||||||||||||||||||
w : real? | ||||||||||||||||||||||||||||
h : real? | ||||||||||||||||||||||||||||
corner-radius : real? = -0.25 | ||||||||||||||||||||||||||||
angle : real? = 0 | ||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
w : real? | ||||||||||||||||||||||||||||
h : real? | ||||||||||||||||||||||||||||
corner-radius : real? = -0.25 | ||||||||||||||||||||||||||||
angle : real? = 0 |
The angle determines how much the rectangle is rotated, in radians.
If the bitmap cannot be loaded, if the given bitmap% object is not valid, or if the bitmap-draft-mode parameter is set to #t, the result pict draws the word “bitmap failed”.
(arrow size radians) → pict? |
size : real? |
radians : real? |
(arrowhead size radians) → pict? |
size : real? |
radians : real? |
(pip-line dx dy size) → pict? |
dx : real? |
dy : real? |
size : real? |
(pip-arrow-line dx dy size) → pict? |
dx : real? |
dy : real? |
size : real? |
(pip-arrows-line dx dy size) → pict? |
dx : real? |
dy : real? |
size : real? |
The size is used for the arrowhead size. Even though pip-line creates no arrowheads, it accepts the size argument for consistency with the other functions.
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pict : pict? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
src : pict-path? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
find-src : (pict? pict-path? . -> . (values real? real?)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dest : pict-path? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
find-dest : (pict? pict-path? . -> . (values real? real?)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start-angle : (or/c real? #f) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end-angle : (or/c real? #f) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start-pull : real? = 1/4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end-pull : real? = 1/4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
line-width : (or/c #f real?) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
color : (or/c #f string? (is-a?/c color%)) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
under? : any/c = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arrow-size : real? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pict : pict? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
src : pict-path? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
find-src : (pict? pict-path? . -> . (values real? real?)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dest : pict-path? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
find-dest : (pict? pict-path? . -> . (values real? real?)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start-angle : (or/c real? #f) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end-angle : (or/c real? #f) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start-pull : real? = 1/4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end-pull : real? = 1/4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
line-width : (or/c #f real?) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
color : (or/c #f string? (is-a?/c color%)) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
under? : any/c = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
solid? : any/c = #t | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
any/c : #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arrow-size : real? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pict : pict? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
src : pict-path? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
find-src : (pict? pict-path? . -> . (values real? real?)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dest : pict-path? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
find-dest : (pict? pict-path? . -> . (values real? real?)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start-angle : (or/c real? #f) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end-angle : (or/c real? #f) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start-pull : real? = 1/4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end-pull : real? = 1/4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
line-width : (or/c #f real?) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
color : (or/c #f string? (is-a?/c color%)) = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
under? : any/c = #f | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
solid? : any/c = #t | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
any/c : #f |
If under? is true, then the line and arrows are added under the existing pict drawing, instead of on top. If solid? is false, then the arrowheads are hollow instead of filled.
The start-angle, end-angle, start-pull, and end-pull arguments control the curve of the line:
The start-angle and end-angle arguments specify the direction of curve at its start and end positions; if either is #f, it defaults to the angle of a straight line from the start position to end position.
The start-pull and end-pull arguments specify a kind of momentum for the starting and ending angles; larger values preserve the angle longer.
When the hide-arrowhead? argument is a true value, then space for the arrowhead is left behind, but the arrowhead itself is not drawn.
The defaults produce a straight line.
(bitmap-draft-mode) → boolean? |
(bitmap-draft-mode on?) → void? |
on? : any/c |