Home
last modified time | relevance | path

Searched refs:fill_params (Results 1 – 25 of 52) sorted by relevance

123

/dports/math/timbl/timbl-6.6/demos/
H A Dtse.cxx207 len = fill_params( pars, Buf.substr(4) ); in parse()
211 len = fill_params( pars, Buf.substr(5) ); in parse()
215 len = fill_params( pars, Buf.substr(4) ); in parse()
219 len = fill_params( pars, Buf.substr(5) ); in parse()
223 len = fill_params( pars, Buf.substr(5) ); in parse()
227 len = fill_params( pars, Buf.substr(6) ); in parse()
231 len = fill_params( pars, Buf.substr(6) ); in parse()
235 len = fill_params( pars, Buf.substr(7) ); in parse()
239 len = fill_params( pars, Buf.substr(7) ); in parse()
243 len = fill_params( pars, Buf.substr(5) ); in parse()
[all …]
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/tests/fff_print/
H A Dtest_fill.cpp32 FillParams fill_params; variable
34 fill_params.dont_adjust = true;
36 fill_params.density = float(filler->spacing / 50.0);
40 return filler->fill_surface(&surface, fill_params); in __anona10724e50102()
104 fill_params.dont_adjust = false;
107 fill_params.density = 1;
131 FillParams fill_params; variable
132 fill_params.density = 1.0;
441 FillParams fill_params; in test_if_solid_surface_filled() local
442 fill_params.density = float(density); in test_if_solid_surface_filled()
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgxpaint.c82 gx_fill_params fill_params; in gx_fill_stroke_path() local
86 fill_params.rule = rule; in gx_fill_stroke_path()
87 fill_params.adjust.x = pgs->fill_adjust.x; in gx_fill_stroke_path()
88 fill_params.adjust.y = pgs->fill_adjust.y; in gx_fill_stroke_path()
89 fill_params.flatness = (caching_an_outline_font(pgs) ? 0.0 : pgs->flatness); in gx_fill_stroke_path()
94 &fill_params, gs_currentdevicecolor_inline(pgs), in gx_fill_stroke_path()
H A Dgxclrast.c516 gx_fill_params fill_params; in clist_playback_band() local
1970 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1973 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1975 fill_params.adjust = gs_gstate.fill_adjust; in clist_playback_band()
1976 fill_params.flatness = gs_gstate.flatness; in clist_playback_band()
1978 &fill_params, &fill_color, pcpath); in clist_playback_band()
1981 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1984 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1986 fill_params.adjust = gs_gstate.fill_adjust; in clist_playback_band()
1987 fill_params.flatness = gs_gstate.flatness; in clist_playback_band()
[all …]
H A Dgdevoflt.c228 const gx_fill_params *fill_params, const gx_drawing_color *pdcolor_fill, in obj_filter_fill_stroke_path() argument
233 …return default_subclass_fill_stroke_path(dev, pgs, ppath, fill_params, pdcolor_fill, stroke_params… in obj_filter_fill_stroke_path()
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgxpaint.c82 gx_fill_params fill_params; in gx_fill_stroke_path() local
86 fill_params.rule = rule; in gx_fill_stroke_path()
87 fill_params.adjust.x = pgs->fill_adjust.x; in gx_fill_stroke_path()
88 fill_params.adjust.y = pgs->fill_adjust.y; in gx_fill_stroke_path()
89 fill_params.flatness = (caching_an_outline_font(pgs) ? 0.0 : pgs->flatness); in gx_fill_stroke_path()
94 &fill_params, gs_currentdevicecolor_inline(pgs), in gx_fill_stroke_path()
H A Dgxclrast.c516 gx_fill_params fill_params; in clist_playback_band() local
1970 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1973 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1975 fill_params.adjust = gs_gstate.fill_adjust; in clist_playback_band()
1976 fill_params.flatness = gs_gstate.flatness; in clist_playback_band()
1978 &fill_params, &fill_color, pcpath); in clist_playback_band()
1981 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1984 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1986 fill_params.adjust = gs_gstate.fill_adjust; in clist_playback_band()
1987 fill_params.flatness = gs_gstate.flatness; in clist_playback_band()
[all …]
H A Dgdevoflt.c228 const gx_fill_params *fill_params, const gx_drawing_color *pdcolor_fill, in obj_filter_fill_stroke_path() argument
233 …return default_subclass_fill_stroke_path(dev, pgs, ppath, fill_params, pdcolor_fill, stroke_params… in obj_filter_fill_stroke_path()
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/entities/
H A Dmline.py199 self.fill_params: List[List[float]] = []
207 vtx.fill_params = list(self.fill_params)
217 fill_params = []
241 vtx.fill_params.append(tuple())
243 fill_params = []
245 fill_params.append(value)
248 vtx.fill_params.append(tuple(fill_params))
255 for line_params, fill_params in zip(self.line_params, self.fill_params):
259 tagwriter.write_tag2(75, len(fill_params))
260 for param in fill_params:
[all …]
/dports/cad/py-ezdxf/ezdxf-0.16.3/tests/test_02_dxf_graphics/
H A Dtest_237_mline.py175 assert len(vtx.fill_params) == 3
176 assert sum(len(p) for p in vtx.fill_params) == 0
191 assert len(vtx.fill_params) == 2
192 assert sum(len(p) for p in vtx.fill_params) == 0
/dports/audio/rubberband/rubberband-2.0.0/src/dsp/
H A DBQResampler.cpp346 BQResampler::fill_params(double ratio, double numd, double denomd) const in fill_params() function in RubberBand::BQResampler
386 return fill_params(ratio, a + c, b + d); in pick_params()
388 return fill_params(ratio, c, d); in pick_params()
390 return fill_params(ratio, a, b); in pick_params()
402 return fill_params(ratio, pc, pd); in pick_params()
404 return fill_params(ratio, pa, pb); in pick_params()
H A DBQResampler.h142 params fill_params(double ratio, double numd, double denomd) const;
/dports/devel/etl/synfig-1.2.2/synfig-core/src/modules/mod_gradient/
H A Dlineargradient.cpp88 LinearGradient::fill_params(Params &params)const in fill_params() function in LinearGradient
154 fill_params(params); in hit_check()
221 fill_params(params); in get_color()
235 fill_params(params); in accelerated_render()
H A Dlineargradient.h72 void fill_params(Params &params)const;
/dports/graphics/synfig/synfig-1.2.2/synfig-core/src/modules/mod_gradient/
H A Dlineargradient.cpp88 LinearGradient::fill_params(Params &params)const in fill_params() function in LinearGradient
154 fill_params(params); in hit_check()
221 fill_params(params); in get_color()
235 fill_params(params); in accelerated_render()
H A Dlineargradient.h72 void fill_params(Params &params)const;
/dports/graphics/synfigstudio/synfig-1.2.2/synfig-core/src/modules/mod_gradient/
H A Dlineargradient.cpp88 LinearGradient::fill_params(Params &params)const in fill_params() function in LinearGradient
154 fill_params(params); in hit_check()
221 fill_params(params); in get_color()
235 fill_params(params); in accelerated_render()
H A Dlineargradient.h72 void fill_params(Params &params)const;
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dgxstroke.c242 fill_params.adjust.x = STROKE_ADJUSTMENT(thin, pis, x);\
243 fill_params.adjust.y = STROKE_ADJUSTMENT(thin, pis, y);\
244 code = gx_fill_path_only(to_path, dev, pis, &fill_params, pdevc, NULL);\
293 gx_fill_params fill_params; in gx_stroke_path_only() local
435 fill_params.rule = gx_rule_winding_number; in gx_stroke_path_only()
436 fill_params.flatness = pis->flatness; in gx_stroke_path_only()
438 fill_params.fill_zero_width = in gx_stroke_path_only()
441 fill_params.fill_zero_width = false; in gx_stroke_path_only()
H A Dgxclrast.c260 gx_fill_params fill_params; in clist_playback_band() local
333 fill_params.fill_zero_width = false; in clist_playback_band()
1299 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1302 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1307 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1310 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1320 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1323 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1330 fill:fill_params.adjust = imager_state.fill_adjust; in clist_playback_band()
1331 fill_params.flatness = imager_state.flatness; in clist_playback_band()
[all …]
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dgxstroke.c242 fill_params.adjust.x = STROKE_ADJUSTMENT(thin, pis, x);\
243 fill_params.adjust.y = STROKE_ADJUSTMENT(thin, pis, y);\
244 code = gx_fill_path_only(to_path, dev, pis, &fill_params, pdevc, NULL);\
293 gx_fill_params fill_params; in gx_stroke_path_only() local
435 fill_params.rule = gx_rule_winding_number; in gx_stroke_path_only()
436 fill_params.flatness = pis->flatness; in gx_stroke_path_only()
438 fill_params.fill_zero_width = in gx_stroke_path_only()
441 fill_params.fill_zero_width = false; in gx_stroke_path_only()
H A Dgxclrast.c260 gx_fill_params fill_params; in clist_playback_band() local
333 fill_params.fill_zero_width = false; in clist_playback_band()
1299 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1302 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1307 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1310 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1320 fill_params.rule = gx_rule_winding_number; in clist_playback_band()
1323 fill_params.rule = gx_rule_even_odd; in clist_playback_band()
1330 fill:fill_params.adjust = imager_state.fill_adjust; in clist_playback_band()
1331 fill_params.flatness = imager_state.flatness; in clist_playback_band()
[all …]
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libslic3r/Fill/
H A DFill.cpp548 FillParams fill_params; in make_ironing() local
553 fill_params.density = 1.; in make_ironing()
554 fill_params.monotonic = true; in make_ironing()
591 polylines = fill.fill_surface(&surface_fill, fill_params); in make_ironing()
/dports/lang/parrot/parrot-8.1.0/examples/benchmarks/
H A Ddispatch.winxed30 475,004,380 fill_params
/dports/lang/parrot/parrot-8.1.0/src/call/
H A Dargs.c88 static void fill_params(PARROT_INTERP,
809 fill_params(PARROT_INTERP, ARGMOD_NULLOK(PMC *call_object), in fill_params() function
814 ASSERT_ARGS(fill_params) in fill_params()
1330 fill_params(interp, call_object, raw_sig, raw_params, &function_pointers, direction); in Parrot_pcc_fill_params_from_op()
1410 fill_params(interp, call_object, raw_sig, args, &function_pointers, in Parrot_pcc_fill_params_from_varargs()

123