Searched refs:smooth (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkCanvUtil.c26 Tk_SmoothMethod smooth; /* Name and functions associated with this member in struct:SmoothAssocData
595 * "-smooth" methods. It should only be called when the list installed
599 * Pointer to the start of the list of default smooth methods.
602 * A linked list of smooth methods is created and attached to the
615 methods->smooth.name = tkRawSmoothMethod.name;
616 methods->smooth.coordProc = tkRawSmoothMethod.coordProc;
617 methods->smooth.postscriptProc = tkRawSmoothMethod.postscriptProc;
622 ptr->smooth.name = tkBezierSmoothMethod.name;
623 ptr->smooth.coordProc = tkBezierSmoothMethod.coordProc;
624 ptr->smooth
639 Tk_CreateSmoothMethod( Tcl_Interp *interp, Tk_SmoothMethod *smooth) argument
739 Tk_SmoothMethod *smooth = NULL; local
[all...]
H A DtkCanvPoly.c49 Tk_SmoothMethod *smooth; /* Non-zero means draw shape smoothed (i.e. member in struct:PolygonItem
138 {TK_CONFIG_CUSTOM, "-smooth", NULL, NULL,
139 "0", Tk_Offset(PolygonItem, smooth),
286 polyPtr->smooth = NULL;
966 } else if (!polyPtr->smooth || polyPtr->numPoints < 4) {
979 numPoints = polyPtr->smooth->coordProc(canvas, NULL,
987 numPoints = polyPtr->smooth->coordProc(canvas, polyPtr->coordPtr,
1121 if (polyPtr->smooth) {
1295 if ((polyPtr->smooth) && (polyPtr->numPoints>2)) {
1296 numPoints = polyPtr->smooth
[all...]
H A DtkCanvLine.c64 Tk_SmoothMethod *smooth; /* Non-zero means draw line smoothed (i.e. member in struct:LineItem
209 {TK_CONFIG_CUSTOM, "-smooth", NULL, NULL,
210 "0", Tk_Offset(LineItem, smooth),
316 linePtr->smooth = NULL;
881 if ((linePtr->smooth) && (linePtr->numPoints > 2)) {
882 numPoints = linePtr->smooth->coordProc(canvas, NULL,
894 if ((linePtr->smooth) && (linePtr->numPoints > 2)) {
895 numPoints = linePtr->smooth->coordProc(canvas, linePtr->coordPtr,
1036 if (linePtr->smooth) {
1194 if (linePtr->smooth) {
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkCanvUtil.c575 * for the "-smooth" option to the list.
581 * In the future "-smooth <name>" will be accepted as
582 * smooth method for the line and polygon.
600 Tk_SmoothMethod smooth; /* name and functions associated with this
605 Tk_CreateSmoothMethod(interp, smooth)
607 Tk_SmoothMethod *smooth;
614 * If there's already a smooth method with the given name, remove it.
619 if (!strcmp(typePtr2->smooth.name, smooth->name)) {
630 ptr->smooth
588 Tk_SmoothMethod smooth; /* name and functions associated with this member in struct:SmoothAssocData
684 Tk_SmoothMethod *smooth = NULL; local
[all...]
H A DtkCanvPoly.c46 Tk_SmoothMethod *smooth; /* Non-zero means draw shape smoothed (i.e. member in struct:PolygonItem
142 {TK_CONFIG_CUSTOM, "-smooth", (char *) NULL, (char *) NULL,
143 "0", Tk_Offset(PolygonItem, smooth),
294 polyPtr->smooth = (Tk_SmoothMethod *) NULL;
977 } else if (!polyPtr->smooth || polyPtr->numPoints < 4) {
990 numPoints = polyPtr->smooth->coordProc(canvas, (double *) NULL,
999 numPoints = polyPtr->smooth->coordProc(canvas, polyPtr->coordPtr,
1126 if(polyPtr->smooth) {
1282 if ((polyPtr->smooth) && (polyPtr->numPoints>2)) {
1283 numPoints = polyPtr->smooth
[all...]
H A DtkCanvLine.c65 Tk_SmoothMethod *smooth; /* Non-zero means draw line smoothed (i.e. member in struct:LineItem
217 {TK_CONFIG_CUSTOM, "-smooth", (char *) NULL, (char *) NULL,
218 "0", Tk_Offset(LineItem, smooth),
329 linePtr->smooth = (Tk_SmoothMethod *) NULL;
907 if ((linePtr->smooth) && (linePtr->numPoints > 2)) {
908 numPoints = linePtr->smooth->coordProc(canvas, (double *) NULL,
921 if ((linePtr->smooth) && (linePtr->numPoints > 2)) {
922 numPoints = linePtr->smooth->coordProc(canvas, linePtr->coordPtr,
1060 if (linePtr->smooth) {
1200 if (linePtr->smooth) {
[all...]
/macosx-10.10.1/tcl-105/tk/tk/tests/
H A DcanvPsGrph.tcl63 $c create poly 100 200 200 50 300 200 -smooth yes -stipple gray25 \
66 -fill red -smooth yes
76 $c create line 20 80 150 80 20 200 150 200 -smooth yes
77 $c create line 150 20 150 150 250 150 -width .5c -smooth yes \
/macosx-10.10.1/tcl-105/tk84/tk/tests/
H A DcanvPsGrph.tcl63 $c create poly 100 200 200 50 300 200 -smooth yes -stipple gray25 \
66 -fill red -smooth yes
76 $c create line 20 80 150 80 20 200 150 200 -smooth yes
77 $c create line 150 20 150 150 250 150 -width .5c -smooth yes \
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dgoldberg.rb555 TkcPolygon.new(@canvas, [], :tag=>'I2', :smooth=>true, :fill=>@C['2'])
577 :width=>3, :fill=>@C['fg'], :smooth=>true)
581 :width=>3, :fill=>@C['fg'], :smooth=>true)
583 :width=>3, :fill=>@C['fg'], :smooth=>true)
609 :smooth=>true, :tag=>'I3_', :fill=>color2, :outline=>color2)
691 :tag=>['I5', 'I5_1'], :fill=>color, :smooth=>true, :width=>3)
696 :outline=>'', :smooth=>true)
738 TkcPolygon.new(@canvas, xy, :smooth=>true,
921 TkcPolygon.new(@canvas, xy, :fill=>color, :smooth=>true)
1083 :smooth
[all...]
H A Daniwave.rb71 :width=>1, :fill=>'green', :smooth=>true)
H A Dpendulum.rb88 @graph[i] = TkcLine.new(@k, 0, 0, 1, 1, :smooth=>true, :fill=>"grey#{i}")
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dgoldberg.rb559 TkcPolygon.new(@canvas, [], :tag=>'I2', :smooth=>true, :fill=>@C['2'])
581 :width=>3, :fill=>@C['fg'], :smooth=>true)
585 :width=>3, :fill=>@C['fg'], :smooth=>true)
587 :width=>3, :fill=>@C['fg'], :smooth=>true)
613 :smooth=>true, :tag=>'I3_', :fill=>color2, :outline=>color2)
695 :tag=>['I5', 'I5_1'], :fill=>color, :smooth=>true, :width=>3)
700 :outline=>'', :smooth=>true)
742 TkcPolygon.new(@canvas, xy, :smooth=>true,
925 TkcPolygon.new(@canvas, xy, :fill=>color, :smooth=>true)
1087 :smooth
[all...]
H A Daniwave.rb73 :width=>1, :fill=>'green', :smooth=>true)
H A Dpendulum.rb90 @graph[i] = TkcLine.new(@k, 0, 0, 1, 1, :smooth=>true, :fill=>"grey#{i}")
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebKitGraphics.cpp138 void WebKitSetShouldUseFontSmoothing(bool smooth) argument
140 WebCoreSetShouldUseFontSmoothing(smooth);
/macosx-10.10.1/curl-83.1.2/curl/docs/examples/
H A DMakefile.inc19 smooth-gtk-thread.c version-check.pl href_extractor.c asiohiper.cpp \
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/canvas/
H A Dcanvas_mvg.tcl141 # smooth can be any boolean value, plus the name of a
281 # Force smooth to canonical values we can then switch on.
282 set smooth [$canvas itemcget $item -smooth]
283 if {[string is boolean $smooth]} {
284 if {$smooth} {
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Daniwave.tcl46 $w.c create line $waveCoords -tags wave -width 1 -fill green -smooth 1
H A Dgoldberg.tcl456 $w.c create poly -tag I2 -smooth 1 -fill $::C(2) ;# For the flame
476 $w.c create line $xy -tag I3_s -width 3 -fill $::C(fg) -smooth 1
503 $w.c create poly $xy -smooth 1 -tag I3_ -fill $color2 -outline $color2
575 $w.c create line $xy -tag {I5 I5_1} -fill $color -smooth 1 -width 3
579 $w.c create poly $xy -tag {I5 I5_2} -fill $::C(bg) -outline {} -smooth 1
634 $w.c create poly $xy -smooth 1 -outline $::C(fg) -width 3 -fill $color
803 $w.c create poly $xy -fill $color -smooth 1
954 $w.c create poly $xy -fill $::C(12) -outline $::C(fg) -smooth 1 -tag I12 \
997 $w.c create line $xy -smooth 1 -fill $::C(fg) -width 3
999 $w.c create line $xy -smooth
[all...]
H A Ditems.tcl88 $c create line 11c 4c 11.5c 1c 13.5c 1c 14c 4c -smooth on \
90 $c create line 15.5c 1c 19.5c 1.5c 15.5c 4.5c 19.5c 4c -smooth on \
93 16.5c 4.5c 13.5c 7.5c 12c 6c -smooth on -width 3m -cap round \
102 29c 1c 29c 4c 29c 4c -fill $red -smooth on -tags item
H A Dpendulum.tcl52 $w.k create line 0 0 1 1 -smooth true -tags graph$i -fill grey$i
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Ditems.tcl87 $c create line 11c 4c 11.5c 1c 13.5c 1c 14c 4c -smooth on \
89 $c create line 15.5c 1c 19.5c 1.5c 15.5c 4.5c 19.5c 4c -smooth on \
92 16.5c 4.5c 13.5c 7.5c 12c 6c -smooth on -width 3m -cap round \
101 29c 1c 29c 4c 29c 4c -fill $red -smooth on -tags item
/macosx-10.10.1/tcl-105/tcl_ext/tktable/tktable/
H A DTODO.txt26 * support smooth scrolling of rows/cols
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/diagrams/
H A Dbasic.tcl43 DefE $core line {textcolor textfont anchor justify stroke style color fillcolor from to then smooth arrowhead noturn}
106 $core new attribute smooth type snit::boolean linked {smooth 0} \
126 $core new alias spline {line /shape spline smooth}
875 -smooth $a(smooth) \
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/jpeg/
H A Djpeg.c23 * -smooth N: Perform smoothing (10-30 is enough for most GIF's)
803 "-progressive", "-quality", "-smooth", NULL};
874 int smooth = 0; local
880 if (Tcl_GetIntFromObj(interp, objv[i], &smooth) != TCL_OK) {
883 cinfo->smoothing_factor = smooth;

Completed in 158 milliseconds

12