Home
last modified time | relevance | path

Searched refs:large_arc (Results 1 – 25 of 98) sorted by relevance

1234

/dports/print/py-fonttools3/fonttools-3.44.0/Lib/fontTools/svgLib/path/
H A Dshapes.py65 def _arc(self, c, rx, ry, x, y, large_arc): argument
66 self._add('%s%s,%s 0 %d 1 %s,%s' % (c, _ntos(rx), _ntos(ry), large_arc,
69 def A(self, rx, ry, x, y, large_arc=0): argument
70 self._arc('A', rx, ry, x, y, large_arc)
72 def a(self, rx, ry, x, y, large_arc=0): argument
73 self._arc('a', rx, ry, x, y, large_arc)
158 self.A(r, r, cx + r, cy, large_arc=1)
159 self.A(r, r, cx - r, cy, large_arc=1)
170 self.A(rx, ry, cx + rx, cy, large_arc=1)
171 self.A(rx, ry, cx - rx, cy, large_arc=1)
/dports/print/py-fonttools/fonttools-4.28.2/Lib/fontTools/svgLib/path/
H A Dshapes.py65 def _arc(self, c, rx, ry, x, y, large_arc): argument
66 self._add('%s%s,%s 0 %d 1 %s,%s' % (c, _ntos(rx), _ntos(ry), large_arc,
69 def A(self, rx, ry, x, y, large_arc=0): argument
70 self._arc('A', rx, ry, x, y, large_arc)
72 def a(self, rx, ry, x, y, large_arc=0): argument
73 self._arc('a', rx, ry, x, y, large_arc)
158 self.A(r, r, cx + r, cy, large_arc=1)
159 self.A(r, r, cx - r, cy, large_arc=1)
170 self.A(rx, ry, cx + rx, cy, large_arc=1)
171 self.A(rx, ry, cx - rx, cy, large_arc=1)
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/include/2geom/
H A Delliptical-arc.h71 Coord rot_angle, bool large_arc, bool sweep, in EllipticalArc() argument
78 , _large_arc(large_arc) in EllipticalArc()
85 Coord rot_angle, bool large_arc, bool sweep, in EllipticalArc() argument
92 , _large_arc(large_arc) in EllipticalArc()
142 double rot_angle, bool large_arc, bool sweep, in set() argument
151 _large_arc = large_arc; in set()
157 Angle rot_angle, bool large_arc, bool sweep, in set() argument
166 _large_arc = large_arc; in set()
H A Dpath-sink.h70 bool large_arc, bool sweep, Point const &p) = 0;
162 bool large_arc, bool sweep, Point const &p) in arcTo() argument
169 large_arc, sweep, p); in arcTo()
/dports/math/lib2geom/lib2geom-1.1/include/2geom/
H A Delliptical-arc.h71 Coord rot_angle, bool large_arc, bool sweep, in EllipticalArc() argument
78 , _large_arc(large_arc) in EllipticalArc()
85 Coord rot_angle, bool large_arc, bool sweep, in EllipticalArc() argument
92 , _large_arc(large_arc) in EllipticalArc()
142 double rot_angle, bool large_arc, bool sweep, in set() argument
151 _large_arc = large_arc; in set()
157 Angle rot_angle, bool large_arc, bool sweep, in set() argument
166 _large_arc = large_arc; in set()
H A Dpath-sink.h70 bool large_arc, bool sweep, Point const &p) = 0;
162 bool large_arc, bool sweep, Point const &p) override in arcTo() argument
169 large_arc, sweep, p); in arcTo()
/dports/graphics/py-svgwrite/svgwrite-1.4.1/svgwrite/
H A Dpath.py41 def arc_flags(large_arc=True, angle_dir='+'): argument
42 large_arc_flag = int(large_arc)
46 def push_arc(self, target, rotation, r, large_arc=True, angle_dir='+', absolute=False): argument
65 self.push(Path.arc_flags(large_arc, angle_dir))
/dports/print/scribus-devel/scribus-1.5.7/scribus/third_party/lib2geom/
H A Dsvg-path.h46 bool large_arc, bool sweep, Point p) = 0;
79 bool large_arc, bool sweep, Point p) in arcTo() argument
82 large_arc, sweep, p); in arcTo()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/src/2geom/
H A Dsvg-path-parser.cpp1214 bool large_arc, bool sweep, Point const &p) in _arcTo() argument
1220 _pushCurve(new EllipticalArc(_current, fabs(rx), fabs(ry), angle, large_arc, sweep, p)); in _arcTo()
1434 bool large_arc = _pop_flag(); in _parse() local
1439 _arcTo(rx, ry, angle, large_arc, sweep, point); in _parse()
1540 bool large_arc = _pop_flag(); in _parse() local
1545 _arcTo(rx, ry, angle, large_arc, sweep, point); in _parse()
H A Dcairo-path-sink.cpp72 bool large_arc, bool sweep, Point const &p) in arcTo() argument
74 EllipticalArc arc(_current_point, rx, ry, angle, large_arc, sweep, p); in arcTo()
/dports/math/lib2geom/lib2geom-1.1/src/2geom/
H A Dsvg-path-parser.cpp1214 bool large_arc, bool sweep, Point const &p) in _arcTo() argument
1220 _pushCurve(new EllipticalArc(_current, fabs(rx), fabs(ry), angle, large_arc, sweep, p)); in _arcTo()
1434 bool large_arc = _pop_flag(); in _parse() local
1439 _arcTo(rx, ry, angle, large_arc, sweep, point); in _parse()
1540 bool large_arc = _pop_flag(); in _parse() local
1545 _arcTo(rx, ry, angle, large_arc, sweep, point); in _parse()
H A Dcairo-path-sink.cpp74 bool large_arc, bool sweep, Point const &p) in arcTo() argument
76 EllipticalArc arc(_current_point, rx, ry, angle, large_arc, sweep, p); in arcTo()
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/svgtypes-0.5.0/src/path/
H A Dsegment.rs80 large_arc: bool,
217 (Seg::EllipticalArc { abs, rx, ry, x_axis_rotation, large_arc, sweep, x, y }, in fuzzy_eq()
219 large_arc: olarge_arc, sweep: osweep, x: ox, y: oy }) => { in fuzzy_eq()
224 && large_arc == olarge_arc in fuzzy_eq()
296 large_arc: true,
306 large_arc: true,
H A Dparser.rs222 large_arc: parse_flag(s)?, in next_impl()
377 large_arc: true, sweep: true,
388 large_arc: false, sweep: false,
399 large_arc: false, sweep: true,
484 large_arc: true, sweep: true,
517 large_arc: true, sweep: true,
H A Dmod.rs263 rx: f64, ry: f64, x_axis_rotation: f64, large_arc: bool, sweep: bool, x: f64, y: f64, in push_arc_to()
266 abs: true, rx, ry, x_axis_rotation, large_arc, sweep, x, y in push_arc_to()
273 rx: f64, ry: f64, x_axis_rotation: f64, large_arc: bool, sweep: bool, x: f64, y: f64, in push_rel_arc_to()
276 abs: false, rx, ry, x_axis_rotation, large_arc, sweep, x, y in push_rel_arc_to()
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/svgtypes-0.5.0/src/path/
H A Dsegment.rs80 large_arc: bool,
217 (Seg::EllipticalArc { abs, rx, ry, x_axis_rotation, large_arc, sweep, x, y }, in fuzzy_eq()
219 large_arc: olarge_arc, sweep: osweep, x: ox, y: oy }) => { in fuzzy_eq()
224 && large_arc == olarge_arc in fuzzy_eq()
296 large_arc: true,
306 large_arc: true,
H A Dparser.rs222 large_arc: parse_flag(s)?, in next_impl()
377 large_arc: true, sweep: true,
388 large_arc: false, sweep: false,
399 large_arc: false, sweep: true,
484 large_arc: true, sweep: true,
517 large_arc: true, sweep: true,
H A Dmod.rs263 rx: f64, ry: f64, x_axis_rotation: f64, large_arc: bool, sweep: bool, x: f64, y: f64, in push_arc_to()
266 abs: true, rx, ry, x_axis_rotation, large_arc, sweep, x, y in push_arc_to()
273 rx: f64, ry: f64, x_axis_rotation: f64, large_arc: bool, sweep: bool, x: f64, y: f64, in push_rel_arc_to()
276 abs: false, rx, ry, x_axis_rotation, large_arc, sweep, x, y in push_rel_arc_to()
/dports/graphics/librsvg2-rust/librsvg-2.52.8/src/
H A Dpath_builder.rs110 pub large_arc: LargeArc, field
130 large_arc, in center_parameterization()
146 let is_large_arc = large_arc.0; in center_parameterization()
244 large_arc: LargeArc, in from_coords()
256 large_arc, in from_coords()
273 match (self.large_arc, self.sweep) { in to_packed_and_coords()
552 large_arc: LargeArc, in arc()
560 large_arc, in arc()
786 large_arc: LargeArc(true), in all_commands()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/src/toys/
H A Dparser.cpp63 bool large_arc, bool sweep, Geom::Point const &p) in arcTo() argument
65 …std::cout << "A " << rx << " " << ry << " " << angle << " " << large_arc << " " << sweep << " " <<… in arcTo()
/dports/math/lib2geom/lib2geom-1.1/src/toys/
H A Dparser.cpp63 bool large_arc, bool sweep, Geom::Point const &p) override in arcTo() argument
65 …std::cout << "A " << rx << " " << ry << " " << angle << " " << large_arc << " " << sweep << " " <<… in arcTo()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/src/py2geom/
H A Dparser.cpp51 …ble ry, double angle, bool large_arc, bool sweep, Geom::Point const &p) {this->get_override("arcTo… in arcTo() argument
/dports/math/lib2geom/lib2geom-1.1/src/py2geom/
H A Dparser.cpp51 …ble ry, double angle, bool large_arc, bool sweep, Geom::Point const &p) {this->get_override("arcTo… in arcTo() argument
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/tests/
H A Dparser-test.py53 def arcTo(self, rx, ry, angle, large_arc, sweep, p): argument
55 self.data.append('A %s, %s %s %i %i %s, %s' % (rx,ry,angle,large_arc,sweep,x,y))
/dports/math/lib2geom/lib2geom-1.1/tests/
H A Dparser-test.py53 def arcTo(self, rx, ry, angle, large_arc, sweep, p): argument
55 self.data.append('A %s, %s %s %i %i %s, %s' % (rx,ry,angle,large_arc,sweep,x,y))

1234