Home
last modified time | relevance | path

Searched refs:posLat (Results 1 – 25 of 31) sorted by relevance

12

/dports/cad/sumo/sumo-1.2.0/src/utils/shapes/
H A DPointOfInterest.h64 const std::string& lane, double posOverLane, double posLat,
76 myPosLat(posLat), in Shape()
124 …ble zOffset = 0., const std::string laneID = "", const double pos = 0., const double posLat = 0.) {
135 if (posLat != 0) {
136 out.writeAttr(SUMO_ATTR_POSITION_LAT, posLat);
H A DShapeContainer.cpp147 … const std::string& lane, double posOverLane, double posLat, double layer, double angle, in addPOI() argument
149 …return add(new PointOfInterest(id, type, color, pos, geo, lane, posOverLane, posLat, layer, angle,… in addPOI()
H A DShapeContainer.h122 … const std::string& lane, double posOverLane, double posLat, double layer, double angle,
/dports/cad/sumo/sumo-1.2.0/src/polyconvert/
H A DPCPolyContainer.h129 laneID(_laneID), pos(_pos), posLat(_posLat) {} in LanePos()
132 double posLat; member
H A DPCPolyContainer.cpp128 … i.second->writeXML(out, useGeo, zOffset, it->second.laneID, it->second.pos, it->second.posLat); in save()
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLane.cpp331 veh->enterLaneAtInsertion(this, pos, speed, posLat, notification); in incorporateVehicle()
355 veh.setTentativeLaneAndPosition(this, pos, posLat); in lastInsertion()
383 MSLane::freeInsertion(MSVehicle& veh, double mspeed, double posLat, in freeInsertion() argument
527 double posLat = getDepartPosLat(veh); in insertVehicle() local
550 return freeInsertion(veh, speed, posLat); in insertVehicle()
554 return freeInsertion(veh, speed, posLat); in insertVehicle()
556 return lastInsertion(veh, speed, posLat, patchSpeed); in insertVehicle()
581 … for (double posLat = posLatMin; posLat < posLatMax; posLat += MSGlobals::gLateralResolution) { in insertVehicle() local
645 aVehicle->setTentativeLaneAndPosition(this, pos, posLat); in isInsertionSuccess()
842 << " posLat=" << posLat in isInsertionSuccess()
[all …]
H A DMSLink.cpp444 double impatience, double decel, SUMOTime waitingTime, double posLat, in opened() argument
461 … ((posLat < foe->getLateralPositionOnLane() && myLane->getIndex() > foeLink->myLane->getIndex()) in opened()
462 … || (posLat > foe->getLateralPositionOnLane() && myLane->getIndex() < foeLink->myLane->getIndex())) in opened()
467 … || (arrivalTime == it.second.arrivalTime && posLat > foe->getLateralPositionOnLane()))) { in opened()
478 …oe->getID() << " foeLink=" << foeLink->getViaLaneOrLane()->getID() << " posLat=" << posLat << "\n"; in opened()
497 && (posLat > foe->getLateralPositionOnLane())) in opened()
499 && (posLat < foe->getLateralPositionOnLane()))) { in opened()
1106 const double posLat = ego->getLateralPositionOnLane(); in getLeaderInfo() local
1114 << " egoLat=" << posLat in getLeaderInfo()
1124 … if ((posLat < posLatLeader && myInternalLaneBefore->getIndex() > foeLane->getIndex()) in getLeaderInfo()
[all …]
H A DMSVehicle.h98 State(double pos, double speed, double posLat, double backPos);
120 double posLat() const { in posLat() function
458 double getLateralOverlap(double posLat) const;
759 void enterLaneAtInsertion(MSLane* enteredLane, double pos, double speed, double posLat,
766 void setTentativeLaneAndPosition(MSLane* lane, double pos, double posLat = 0);
1568 …void setRemoteControlled(Position xyPos, MSLane* l, double pos, double posLat, double angle, int e…
H A DMSLane.h313 bool isInsertionSuccess(MSVehicle* vehicle, double speed, double pos, double posLat,
323 bool lastInsertion(MSVehicle& veh, double mspeed, double posLat, bool patchSpeed);
332 bool freeInsertion(MSVehicle& veh, double speed, double posLat,
345 …nsertion(MSVehicle* veh, double pos, MSMoveReminder::Notification notification, double posLat = 0);
1218 virtual void incorporateVehicle(MSVehicle* veh, double pos, double speed, double posLat,
H A DMSVehicle.cpp781 myRemotePosLat = posLat; in setRemoteControlled()
1454 const double posLat = -myState.myPosLat; // @todo get rid of the '-'
1464 p1 = myLane->geometryPositionAtOffset(myState.myPos, posLat);
1476 p2 = myLane->geometryPositionAtOffset(0, posLat);
1479 p2 = myLane->geometryPositionAtOffset(0, posLat);
1498 const double posLat = -myState.myPosLat; // @todo get rid of the '-'
1510 return myLane->geometryPositionAtOffset(0, posLat);
1519 : myLane->geometryPositionAtOffset(0, posLat);
5230 myState.myPosLat = posLat;
5393 MSVehicle::getLateralOverlap(double posLat) const {
[all …]
/dports/cad/sumo/sumo-1.2.0/src/utils/gui/globjects/
H A DGUIPointOfInterest.cpp52 const std::string& lane, double posOverLane, double posLat, in GUIPointOfInterest() argument
55 …PointOfInterest(id, type, color, pos, geo, lane, posOverLane, posLat, layer, angle, imgFile, relat… in GUIPointOfInterest()
H A DGUIShapeContainer.cpp48 … const std::string& lane, double posOverLane, double posLat, double layer, double angle, in addPOI() argument
50 …p = new GUIPointOfInterest(id, type, color, pos, geo, lane, posOverLane, posLat, layer, angle, img… in addPOI()
H A DGUIPointOfInterest.h66 const std::string& lane, double posOverLane, double posLat,
H A DGUIShapeContainer.h106 … const std::string& lane, double posOverLane, double posLat, double layer, double angle,
/dports/cad/sumo/sumo-1.2.0/src/microsim/output/
H A DMSXMLRawOut.cpp142 const double posLat = microVeh.getLateralPositionOnLane(); in writeVehicle() local
143 of.writeAttr(SUMO_ATTR_POSITION_LAT, posLat); in writeVehicle()
/dports/cad/sumo/sumo-1.2.0/tools/import/opendrive/
H A Dsignal_POIs_from_xodr.py286 posLat = nlane_wid / 2. + nlleft_wid + od_t_l0l variable
287 poi['posLat'] = "%.2f" % posLat
/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DHelper.h135 …tRemoteControlled(MSVehicle* v, Position xyPos, MSLane* l, double pos, double posLat, double angle,
138 …etRemoteControlled(MSPerson* p, Position xyPos, MSLane* l, double pos, double posLat, double angle,
H A DHelper.cpp755 Helper::setRemoteControlled(MSVehicle* v, Position xyPos, MSLane* l, double pos, double posLat, dou… in setRemoteControlled() argument
758 v->getInfluencer().setRemoteControlled(xyPos, l, pos, posLat, angle, edgeOffset, route, t); in setRemoteControlled()
762 Helper::setRemoteControlled(MSPerson* p, Position xyPos, MSLane* l, double pos, double posLat, doub… in setRemoteControlled() argument
765 p->getInfluencer().setRemoteControlled(xyPos, l, pos, posLat, angle, edgeOffset, route, t); in setRemoteControlled()
/dports/cad/sumo/sumo-1.2.0/src/netedit/additionals/
H A DGNEPOI.h87 double posLat, double width, double height, bool movementBlocked);
H A DGNEPOI.cpp56 …e, const std::string& imgFile, bool relativePath, GNELane* lane, double posOverLane, double posLat, in GNEPOI() argument
58 …GUIPointOfInterest(id, type, color, Position(), false, lane->getID(), posOverLane, posLat, layer, … in GNEPOI()
/dports/cad/sumo/sumo-1.2.0/src/microsim/lcmodels/
H A DMSAbstractLaneChangeModel.cpp392 MSAbstractLaneChangeModel::getShadowLane(const MSLane* lane, double posLat) const {
395 const double overlap = myVehicle.getLateralOverlap(posLat);
398 …std::cout << SIMTIME << " veh=" << myVehicle.getID() << " posLat=" << posLat << " overlap=" << ove…
402 const int shadowDirection = posLat < 0 ? -1 : 1;
/dports/cad/sumo/sumo-1.2.0/src/guisim/
H A DGUILane.h285 virtual void incorporateVehicle(MSVehicle* veh, double pos, double speed, double posLat,
/dports/cad/sumo/sumo-1.2.0/src/netedit/frames/
H A DGNEPolygonFrame.cpp488 double posLat = GNEAttributeCarrier::parse<double>(POIValues.at(SUMO_ATTR_POSITION_LAT)); in addPOILane() local
495 …et()->addPOI(id, type, color, Position(), false, lane->getID(), posLane, posLat, layer, angle, img… in addPOILane()
/dports/astro/marble/marble-21.12.3/src/lib/marble/
H A DMarbleInputHandler.cpp836 const qreal posLat = d->m_leftPressedLat + RAD2DEG * lat; in handleMouseEvent() local
837 MarbleInputHandler::d->m_marblePresenter->centerOn(posLon, posLat); in handleMouseEvent()
840 d->m_kineticSpinning.setPosition(posLon, posLat); in handleMouseEvent()
/dports/cad/sumo/sumo-1.2.0/src/microsim/pedestrians/
H A DMSPerson.h400 …void setRemoteControlled(Position xyPos, MSLane* l, double pos, double posLat, double angle, int e…

12