|
Sets the line join style.
type
TLineJoinStyle = ( ljMiterJoin, ljRoundJoin, ljBevelJoin );
Sintassi Delphi:
procedure SetLineJoin ( LineJoin: TLineJoinStyle );
Sintassi C++:
void __fastcall SetLineJoin ( TLineJoinStyle LineJoin);
Descrizione:
Lo stile line join specifica la forma da usare agli angoli dei path sottoposti a stroke
Significato del valore
|
ljMiterJoin
|
Miter join. I bordi esterni degli strokes dei due segmenti vengono estesi
until they meet at an angle, as in a picture frame.
|

|
|
ljRoundJoin
|
Round join. A circle with a diameter equal to the line width is drawn around
fino al punto in cui i due segmenti si incontrano e l'area viene riempita, producendo un angolo arrotondato
corner.
|

|
|
ljBevelJoin
|
Bevel join. I due segmenti terminano con butt caps e viene riempita la tacca risultante oltre le estremità dei segmenti
is filled with a triangle.
|

|
|