Home
last modified time | relevance | path

Searched refs:printerScale (Results 1 – 22 of 22) sorted by relevance

/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/wx/lib/plot/
H A Dpolyobjects.py430 def getSymExtent(self, printerScale): argument
604 def getSymExtent(self, printerScale): argument
686 def getSymExtent(self, printerScale): argument
987 def getSymExtent(self, printerScale): argument
1077 self._draw_whisker(dc, printerScale)
1078 self._draw_iqr_box(dc, printerScale)
1292 self.printerScale = scale
1367 def printerScale(self): member in PlotGraphics
1370 @printerScale.setter
1371 def printerScale(self, scale): member in PlotGraphics
[all …]
H A Dplotcanvas.py99 self.printerScale = 1
319 return (3 * self.printerScale * self._tickLength[0],
320 3 * self.printerScale * self._tickLength[1])
1918 graphics.printerScale = self.printerScale
2212 self.printerScale = scale
2332 s = size * self.printerScale * self._fontScale
2420 penWidth = self.printerScale * pen.GetWidth()
2468 penWidth = self.printerScale * pen.GetWidth()
2528 penWidth = self.printerScale * pen.GetWidth()
2572 penWidth = self.printerScale * pen.GetWidth()
[all …]
/dports/cad/fritzing/fritzing-app-0.9.2b/src/utils/
H A Dtextutils.cpp460 double trueWidth = width / printerScale; in makeSVGHeader()
461 double trueHeight = height / printerScale; in makeSVGHeader()
1436 p1.setX(p1.x() * dpi / printerScale); in makeLineSVG()
1437 p1.setY(p1.y() * dpi / printerScale); in makeLineSVG()
1438 p2.setX(p2.x() * dpi / printerScale); in makeLineSVG()
1439 p2.setY(p2.y() * dpi / printerScale); in makeLineSVG()
1449 .arg(width * dpi / printerScale) in makeLineSVG()
1460 .arg(width * dpi / printerScale) in makeCubicBezierSVG()
1478 double l = r.left() * dpi / printerScale; in makeRectSVG()
1479 double t = r.top() * dpi / printerScale; in makeRectSVG()
[all …]
H A Dtextutils.h95 …p1, QPointF p2, double width, QString colorString, double dpi, double printerScale, bool blackOnly…
96 … controlPoints, double width, QString colorString, double dpi, double printerScale, bool blackOnly…
98 …QPointF offset, double width, QString colorString, double dpi, double printerScale, bool blackOnly…
100 static QString pointToSvgString(QPointF p, QPointF offset, double dpi, double printerScale);
/dports/cad/fritzing/fritzing-app-0.9.2b/src/svg/
H A Dsvgflattener.h43 …pDoc, const QString & elementID, const QString & altElementID, double printerScale, Qt::Orientatio…
47 …tring & att, QDomElement altAtt, const QString & altElementID, double printerScale, Qt::Orientatio…
H A Dsvgflattener.cpp295 …pDoc, const QString & elementID, const QString & altElementID, double printerScale, Qt::Orientatio… in flipSMDSvg() argument
304 …pSMDElement(domDocument, element, elementID, altElement, altElementID, printerScale, orientation); in flipSMDSvg()
312 …QString & att, QDomElement altElement, const QString & altAtt, double printerScale, Qt::Orientatio… in flipSMDElement() argument
314 Q_UNUSED(printerScale); in flipSMDElement()
H A Dgerbergenerator.cpp1046 renderThing.printerScale = GraphicsUtils::SVGDPI; in renderTo()
/dports/cad/fritzing/fritzing-app-0.9.2b/src/sketch/
H A Dschematicsketchwidget.cpp391 …RenderSvgStep(ItemBase * itemBase, QPointF offset, double dpi, double printerScale, QString & outp… in extraRenderSvgStep() argument
398 …CircleSVG(traceWire->connector0()->sceneAdjustedTerminalPoint(NULL), r, offset, dpi, printerScale); in extraRenderSvgStep()
402 …CircleSVG(traceWire->connector1()->sceneAdjustedTerminalPoint(NULL), r, offset, dpi, printerScale); in extraRenderSvgStep()
407 …icSketchWidget::makeCircleSVG(QPointF p, double r, QPointF offset, double dpi, double printerScale) in makeCircleSVG() argument
409 double cx = (p.x() - offset.x()) * dpi / printerScale; in makeCircleSVG()
410 double cy = (p.y() - offset.y()) * dpi / printerScale; in makeCircleSVG()
411 double rr = r * dpi / printerScale; in makeCircleSVG()
H A Dschematicsketchwidget.h105 …void extraRenderSvgStep(ItemBase *, QPointF offset, double dpi, double printerScale, QString & out…
106 QString makeCircleSVG(QPointF p, double r, QPointF offset, double dpi, double printerScale);
H A Dsketchwidget.h83 double printerScale; member
469 …uble width, const QString & color, QPointF offset, double dpi, double printerScale, bool blackOnly…
471 QString makeMoveSVG(double printerScale, double dpi, QPointF & offset);
486 …virtual void extraRenderSvgStep(ItemBase *, QPointF offset, double dpi, double printerScale, QStri…
H A Dsketchwidget.cpp3094 QString SketchWidget::makeMoveSVG(double printerScale, double dpi, QPointF & offset) in makeMoveSVG() argument
3106 QString outputSVG = TextUtils::makeSVGHeader(printerScale, dpi, width, height); in makeMoveSVG()
3111 outputSVG.append(makeWireSVG(wire, offset, dpi, printerScale, true)); in makeMoveSVG()
3114 …outputSVG.append(TextUtils::makeRectSVG(itemBase->sceneBoundingRect(), offset, dpi, printerScale)); in makeMoveSVG()
7269 QString translateSVG(QString & svg, QPointF loc, double dpi, double printerScale) { in translateSVG() argument
7270 loc.setX(loc.x() * dpi / printerScale); in translateSVG()
7271 loc.setY(loc.y() * dpi / printerScale); in translateSVG()
7296 …QString outputSVG = TextUtils::makeSVGHeader(renderThing.printerScale, renderThing.dpi, width, hei… in renderToSVG()
7400 extraRenderSvgStep(itemBase, offset, renderThing.dpi, renderThing.printerScale, outputSVG); in renderToSVG()
7413 Q_UNUSED(printerScale); in extraRenderSvgStep()
[all …]
H A Dpcbsketchwidget.cpp1508 renderThing.printerScale = GraphicsUtils::SVGDPI; in groundFill()
1649 renderThing.printerScale = GraphicsUtils::SVGDPI; in generateCopperFillUnit()
/dports/cad/fritzing/fritzing-app-0.9.2b/src/items/
H A Dpartlabel.h70 QString makeSvg(bool blackOnly, double dpi, double printerScale, bool includeTransform);
90 QString makeSvgAux(bool blackOnly, double dpi, double printerScale, double & w, double & h);
H A Dpartlabel.cpp834 QString PartLabel::makeSvg(bool blackOnly, double dpi, double printerScale, bool includeTransform) { in makeSvg() argument
836 QString svg = makeSvgAux(blackOnly, dpi, printerScale, w, h); in makeSvg()
847 QString PartLabel::makeSvgAux(bool blackOnly, double dpi, double printerScale, double & w, double &… in makeSvgAux() argument
851 double pixels = m_font.pointSizeF() * printerScale / 72; in makeSvgAux()
869 .arg(y * dpi / printerScale) in makeSvgAux()
H A Ditembase.h150 QString makePartLabelSvg(bool blackOnly, double dpi, double printerScale);
H A Ditembase.cpp1812 QString ItemBase::makePartLabelSvg(bool blackOnly, double dpi, double printerScale) { in makePartLabelSvg() argument
1815 return m_partLabel->makeSvg(blackOnly, dpi, printerScale, true); in makePartLabelSvg()
/dports/cad/fritzing/fritzing-app-0.9.2b/src/connectors/
H A Dconnectoritem.cpp2135 QString ConnectorItem::makeLegSvg(QPointF offset, double dpi, double printerScale, bool blackOnly) { in makeLegSvg() argument
2140 data += TextUtils::pointToSvgString(mapToScene(p), offset, dpi, printerScale); in makeLegSvg()
2146 data += TextUtils::pointToSvgString(mapToScene(p), offset, dpi, printerScale); in makeLegSvg()
2150 data += TextUtils::pointToSvgString(mapToScene(bezier->cp0()), offset, dpi, printerScale); in makeLegSvg()
2152 data += TextUtils::pointToSvgString(mapToScene(bezier->cp1()), offset, dpi, printerScale); in makeLegSvg()
2154 data += TextUtils::pointToSvgString(mapToScene(p), offset, dpi, printerScale); in makeLegSvg()
2160 .arg(m_legStrokeWidth * dpi / printerScale) in makeLegSvg()
H A Dconnectoritem.h134 QString makeLegSvg(QPointF offset, double dpi, double printerScale, bool blackOnly);
/dports/cad/fritzing/fritzing-app-0.9.2b/src/mainwindow/
H A Dmainwindow_export.cpp290 renderThing.printerScale = GraphicsUtils::SVGDPI; in exportEtchable()
315 renderThing.printerScale = GraphicsUtils::SVGDPI; in exportEtchable()
431 renderThing.printerScale = GraphicsUtils::SVGDPI; in mergeBoardSvg()
479 renderThing.printerScale = GraphicsUtils::SVGDPI; in getBoardSvg()
1127 renderThing.printerScale = GraphicsUtils::SVGDPI; in exportSvg()
/dports/cad/fritzing/fritzing-app-0.9.2b/src/autoroute/
H A Ddrc.cpp398 renderThing.printerScale = GraphicsUtils::SVGDPI; in startAux()
584 renderThing.printerScale = GraphicsUtils::SVGDPI; in makeBoard()
H A Dpanelizer.cpp1539 renderThing.printerScale = GraphicsUtils::SVGDPI; in makeSVGs()
/dports/cad/fritzing/fritzing-app-0.9.2b/src/autoroute/mazerouter/
H A Dmazerouter.cpp916 renderThing.printerScale = GraphicsUtils::SVGDPI; in makeBoard()
965 renderThing.printerScale = GraphicsUtils::SVGDPI; in makeMasters()