Home
last modified time | relevance | path

Searched refs:customShape (Results 1 – 25 of 26) sorted by relevance

12

/dports/print/scribus-devel/scribus-1.5.7/scribus/ui/
H A Dpropertiespalette_shape.cpp59 …connect(customShape, SIGNAL(FormSel(int, int, qreal *)), this, SLOT(handleNewShape(int, int, qreal… in PropertiesPalette_Shape()
145 customShape->setIcon( customShape->getIconPixmap(submode) ); in setCustomShapeIcon()
191 customShape->setEnabled(enabled); in enableCustomShape()
228 customShape->setEnabled(false); in handleSelectionChanged()
240 customShape->setEnabled(false); in handleSelectionChanged()
295 customShape->setEnabled(false); in handleSelectionChanged()
335 customShape->setIcon(customShape->getIconPixmap(0)); in setCurrentItem()
337 customShape->setIcon(customShape->getIconPixmap(1)); in setCurrentItem()
339 customShape->setIcon(customShape->getIconPixmap(m_item->FrameType-2)); in setCurrentItem()
373 customShape->setEnabled(false); in setCurrentItem()
[all …]
/dports/cad/sumo/sumo-1.2.0/src/netimport/
H A DNIXMLConnectionsHandler.cpp247 …PositionVector customShape = attrs.getOpt<PositionVector>(SUMO_ATTR_SHAPE, nullptr, ok, defaultCon… in parseLaneBound() local
248 … if (attrs.hasAttribute(SUMO_ATTR_SHAPE) && !NBNetBuilder::transformCoordinates(customShape)) { in parseLaneBound()
255 … keepClear, contPos, visibility, speed, customShape, uncontrolled)) { in parseLaneBound()
260 …D(), toLane, mayDefinitelyPass, keepClear, contPos, visibility, speed, customShape, uncontrolled, … in parseLaneBound()
369 …PositionVector customShape = attrs.getOpt<PositionVector>(SUMO_ATTR_SHAPE, nullptr, ok, PositionVe… in addCrossing() local
370 if (!NBNetBuilder::transformCoordinates(customShape)) { in addCrossing()
403 node->addCrossing(edges, width, priority, tlIndex, tlIndex2, customShape); in addCrossing()
445 …PositionVector customShape = attrs.getOpt<PositionVector>(SUMO_ATTR_SHAPE, nullptr, ok, PositionVe… in addWalkingArea() local
446 if (!NBNetBuilder::transformCoordinates(customShape)) { in addWalkingArea()
449 node->addWalkingAreaShape(edges, customShape); in addWalkingArea()
H A DNIImporter_SUMO.h197 PositionVector customShape; member
228 bool customShape; member
288 PositionVector customShape; member
H A DNIImporter_SUMO.cpp204 …, c.mayDefinitelyPass, c.keepClear, c.contPos, c.visibility, c.speed, c.customShape, uncontrolled); in _loadNetwork()
235 if (lane->customShape) { in _loadNetwork()
335 …h, crossing.priority, crossing.customTLIndex, crossing.customTLIndex2, crossing.customShape, true); in _loadNetwork()
589 myCurrentLane->customShape = attrs.getOpt<bool>(SUMO_ATTR_CUSTOMSHAPE, nullptr, ok, false); in addLane()
596 if (myCurrentLane->customShape) { in addLane()
597 crossings.back().customShape = myCurrentLane->shape; in addLane()
598 NBNetBuilder::transformCoordinates(crossings.back().customShape, true, myLocation); in addLane()
602 if (myCurrentLane->customShape) { in addLane()
749 …conn.customShape = attrs.getOpt<PositionVector>(SUMO_ATTR_SHAPE, nullptr, ok, PositionVector::EMPT… in addConnection()
750 NBNetBuilder::transformCoordinates(conn.customShape, false, myLocation); in addConnection()
[all …]
/dports/cad/sumo/sumo-1.2.0/src/netedit/changes/
H A DGNEChange_Crossing.cpp45 …priority, int customTLIndex, int customTLIndex2, const PositionVector& customShape, bool selected,… in GNEChange_Crossing() argument
53 myCustomShape(customShape), in GNEChange_Crossing()
67 myCustomShape(crossing.customShape), in GNEChange_Crossing()
H A DGNEChange_Crossing.h63 …priority, int customTLIndex, int customTLIndex2, const PositionVector& customShape, bool selected,…
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/examples/osgparticleshader/
H A Dosgparticleshader.cpp92 bool customShape = false; in main() local
93 while ( arguments.read("--enable-custom") ) { customShape = true; } in main()
105 if ( customShape ) in main()
/dports/cad/sumo/sumo-1.2.0/src/netedit/netelements/
H A DGNELane.cpp485 …if (!s.drawForSelecting && (myParentEdge.getNBEdge()->getLaneStruct(myIndex).customShape.size() > … in drawGL()
495 … const PositionVector& customShape = myParentEdge.getNBEdge()->getLaneStruct(myIndex).customShape; in drawGL() local
498 glTranslated(customShape.front().x(), customShape.front().y(), GLO_JUNCTION + 0.01); in drawGL()
507 … GLHelper::drawLine(customShape.front(), myParentEdge.getGNEJunctionSource()->getPositionInView()); in drawGL()
511 glTranslated(customShape.back().x(), customShape.back().y(), GLO_JUNCTION + 0.01); in drawGL()
520 … GLHelper::drawLine(customShape.back(), myParentEdge.getGNEJunctionDestiny()->getPositionInView()); in drawGL()
623 … if (i->getParentEdge().getNBEdge()->getLaneStruct(i->getIndex()).customShape.size() != 0) { in getPopUpMenu()
632 … differentLaneShapes = myParentEdge.getNBEdge()->getLaneStruct(myIndex).customShape.size() != 0; in getPopUpMenu()
775 if (myParentEdge.getNBEdge()->getLaneStruct(myIndex).customShape.size() == 0) { in getBoundary()
778 return myParentEdge.getNBEdge()->getLaneStruct(myIndex).customShape.getBoxBoundary(); in getBoundary()
[all …]
H A DGNEConnection.cpp103 if (nbCon.customShape.size() != 0) { in updateGeometry()
104 myShape = nbCon.customShape; in updateGeometry()
249 return getNBEdgeConnection().customShape; in getShape()
398 return toString(nbCon.customShape); in getAttribute()
594 nbCon.customShape = parse<PositionVector>(value); in setAttribute()
H A DGNECrossing.cpp64 myShape = crossing->customShape.size() > 0 ? crossing->customShape : crossing->shape; in updateGeometry()
271 return toString(crossing->customShape); in getAttribute()
481 crossing->customShape = parse<PositionVector>(value); in setAttribute()
H A DGNEEdge.cpp1479 nbCon.speed, nbCon.customShape, nbCon.uncontrolled)) { in addConnection()
/dports/cad/sumo/sumo-1.2.0/src/netbuild/
H A DNBEdgeCont.h542 const PositionVector& customShape,
630 customShape(customShape_), in PostProcessConnection()
653 PositionVector customShape; member
H A DNBEdge.h153 PositionVector customShape; member
212 PositionVector customShape; member
783 const PositionVector& customShape = PositionVector::EMPTY,
827 const PositionVector& customShape = PositionVector::EMPTY,
H A DNBNode.h154 PositionVector customShape; member
651 … const PositionVector& customShape = PositionVector::EMPTY, bool fromSumoNet = false);
H A DNBEdge.cpp119 customShape(customShape_), in Connection()
515 (*i).customShape.add(xoff, yoff, 0); in reshiftPosition()
1014 const PositionVector& customShape, in addLane2LaneConnection() argument
1028 …eDestination, mayDefinitelyPass, keepClear, contPos, visibility, speed, customShape, uncontrolled); in addLane2LaneConnection()
1058 const PositionVector& customShape, in setConnection() argument
1098 myConnections.back().customShape = customShape; in setConnection()
1460 i->contPos, i->visibility, i->speed, i->customShape, i->uncontrolled); in replaceInConnections()
1915 if (myLanes[i].customShape.size() != 0) { in computeLaneShapes()
1916 myLanes[i].shape = myLanes[i].customShape; in computeLaneShapes()
2095 if (i->customShape.size() > 0) { in hasCustomLaneShape()
[all …]
H A DNBNode.cpp241 customShape(_customShape), in Crossing()
695 bool useCustomShape = con.customShape.size() > 0; in computeInternalLaneShape()
702 PositionVector tmp = NBEdge::startShapeAt(con.customShape, this, startBorder); in computeInternalLaneShape()
707 if (tmp.length2D() > con.customShape.length2D() + POSITION_EPS) { in computeInternalLaneShape()
2559 } else if (c->customShape.size() != 0) { in buildCrossings()
2560 c->shape = c->customShape; in buildCrossings()
3063 const PositionVector& customShape, bool fromSumoNet) { in addCrossing() argument
3064 Crossing* c = new Crossing(this, edges, width, priority, tlIndex, tlIndex2, customShape); in addCrossing()
H A DNBEdgeCont.cpp1013 … const PositionVector& customShape, bool uncontrolled, bool warnOnly) { in addPostProcessConnection() argument
1014 … to, toLane, mayDefinitelyPass, keepClear, contPos, visibility, speed, customShape, uncontrolled, … in addPostProcessConnection()
1044 … (*i).keepClear, (*i).contPos, (*i).visibility, (*i).speed, (*i).customShape, (*i).uncontrolled)) { in recheckPostProcessConnections()
/dports/cad/sumo/sumo-1.2.0/src/netwrite/
H A DNWWriter_XML.cpp266 if (lane.customShape.size() > 0) { in writeEdgesAndConnections()
267 edevice.writeAttr(SUMO_ATTR_SHAPE, lane.customShape); in writeEdgesAndConnections()
333 if (c->customShape.size() != 0) { in writeEdgesAndConnections()
334 cdevice.writeAttr(SUMO_ATTR_SHAPE, c->customShape); in writeEdgesAndConnections()
H A DNWWriter_SUMO.h141 bool customShape = false);
H A DNWWriter_SUMO.cpp381 MAX2(c->shape.length(), POSITION_EPS), 0, "", false, c->customShape.size() != 0); in writeInternalEdges()
448 length, i, l.oppositeID, l.accelRamp, l.customShape.size() > 0); in writeEdge()
462 const std::string& oppositeID, bool accelRamp, bool customShape) { in writeLane() argument
489 if (customShape) { in writeLane()
681 if (c.customShape.size() != 0 && style != TLL) { in writeConnection()
682 into.writeAttr(SUMO_ATTR_SHAPE, c.customShape); in writeConnection()
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/add_curve_sapling/
H A Dutils.py1045 taper, shapeS, minRadius, radiusTweak, customShape, rMode, segSplits, argument
1097 … br.lengthPar * length[1] * shapeRatio(shape, (1 - br.offset) / (1 - baseSize), custom=customShape)
1213 lShape = shapeRatio(shape, (1 - p.stemOffset) / (1 - baseSize), custom=customShape)
1435 def findtaper(length, taper, shape, shapeS, levels, customShape): argument
1441 shp = shapeRatio(shape, 0, custom=customShape)
1500 customShape = props.customShape
1575 taper = findtaper(length, taper, shape, shapeS, levels, customShape)
1693 taper, shapeS, minRadius, radiusTweak, customShape, rMode, segSplits,
H A D__init__.py448 customShape: FloatVectorProperty(
/dports/cad/sumo/sumo-1.2.0/src/netedit/
H A DGNEViewNet.cpp1981 …ionVector shape = crossing->getNBCrossing()->customShape.size() > 0 ? crossing->getNBCrossing()->c… in onCmdEditCrossingShape()
H A DGNENet.cpp609 crossing->getNBCrossing()->customShape, in deleteCrossing()
1654 … nbc.customTLIndex, nbc.customTLIndex2, nbc.customShape, in joinSelectedJunctions()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/
H A DChangeLog2134651 …2.1: #i37790# - create default accessible shape for com::sun::star::drawing::customShape

12