![]() |
Eclipse SUMO - Simulation of Urban MObility
|
#include <GNEMoveElementView.h>
Public Types | |
| enum class | AttributesFormat { POSITION , CARTESIAN , GEO } |
| attributes format More... | |
Public Member Functions | |
| GNEMoveOperation * | getMoveOperation () |
| get move operation | |
| GNEMoveElementView (GNEAttributeCarrier *element, AttributesFormat attributesFormat, SumoXMLAttr posAttr, Position &position) | |
| constructor for element with fixed size | |
| void | removeGeometryPoint (const Position clickedPosition, GNEUndoList *undoList) override |
| remove geometry point in the clicked position | |
| void | writeMoveAttributes (OutputDevice &device) const |
| write move attributes | |
| ~GNEMoveElementView () | |
functions related with moving attributes | |
| std::string | getMovingAttribute (SumoXMLAttr key) const override |
| get moving attribute | |
| double | getMovingAttributeDouble (SumoXMLAttr key) const override |
| get moving attribute double | |
| Position | getMovingAttributePosition (SumoXMLAttr key) const override |
| get moving attribute position | |
| PositionVector | getMovingAttributePositionVector (SumoXMLAttr key) const override |
| get moving attribute positionVector | |
| void | setMovingAttribute (SumoXMLAttr key, const std::string &value, GNEUndoList *undoList) override |
| set moving attribute (using undo-list) | |
| bool | isMovingAttributeValid (SumoXMLAttr key, const std::string &value) const override |
| check if the given moving attribute is valid | |
| void | setMovingAttribute (SumoXMLAttr key, const std::string &value) override |
| set moving attribute | |
Static Public Member Functions | |
| static void | commitMove (const GNEViewNet *viewNet, GNEMoveOperation *moveOperation, const GNEMoveOffset &offset, GNEUndoList *undoList) |
| commit move element for the given offset | |
| static void | moveElement (const GNEViewNet *viewNet, GNEMoveOperation *moveOperation, const GNEMoveOffset &offset) |
| move element the for given offset (note: offset can be X-Y-0, 0-0-Z or X-Y-Z) | |
Data Fields | |
| double | myMovingLateralOffset = 0 |
| move element lateral offset | |
Protected Member Functions | |
| GNEMoveOperation * | getEditShapeOperation (const GUIGlObject *obj, const PositionVector originalShape, const bool maintainShapeClosed) |
| calculate move shape operation | |
Protected Attributes | |
| GNEAttributeCarrier * | myMovedElement = nullptr |
| pointer to element | |
Private Member Functions | |
| void | commitMoveShape (const GNEMoveResult &moveResult, GNEUndoList *undoList) override |
| commit move shape | |
| GNEMoveElementView (const GNEMoveElementView &)=delete | |
| Invalidated copy constructor. | |
| GNEMoveElementView & | operator= (const GNEMoveElementView &)=delete |
| Invalidated assignment operator. | |
| void | setMoveShape (const GNEMoveResult &moveResult) override |
| set move shape | |
Static Private Member Functions | |
| static PositionVector | calculateExtrapolatedVector (const GNEMoveOperation *moveOperation, const GNEMoveResult &moveResult) |
| calculate width/height shape | |
| static double | calculateLaneOffset (const GNEViewNet *viewNet, const GNELane *lane, const double firstPosition, const double lastPosition, const GNEMoveOffset &offset) |
| calculate lane offset (used in calculateLanePosition) | |
| static void | calculateLanePosition (double &starPos, const GNEViewNet *viewNet, const GNELane *lane, const double posOverLane, const GNEMoveOffset &offset) |
| calculate lane position over one lane with only one position (accesss, E1, star/end positions, etc.) | |
| static void | calculateLanePositions (double &starPos, double &endPos, const GNEViewNet *viewNet, const GNELane *firstLane, const double firstPosOverLane, const GNELane *lastLane, const double lastPosOverLane, const bool firstLaneClicked, const GNEMoveOffset &offset) |
| calculate lane position over two lane with two positions (E2 Multilanes) | |
| static void | calculateLanePositions (double &starPos, double &endPos, const GNEViewNet *viewNet, const GNELane *lane, const double firstPosOverLane, const double lastPosOverLane, const GNEMoveOffset &offset) |
| calculate lane position over one lane with two positions (stoppingPlaces, E2 single lanes) | |
| static void | calculateNewLaneChange (const GNEViewNet *viewNet, const GNELane *originalLane, const GNELane *&newLane, double &laneOffset) |
| calculate new lane change | |
Private Attributes | |
| AttributesFormat | myAttributesFormat = AttributesFormat::POSITION |
| pos attributes format | |
| SumoXMLAttr | myPosAttr |
| pos attribute | |
| Position & | myPosOverView |
| position over view | |
Friends | |
| class | GNEMoveElementViewResizable |
| resizable needs access | |
Definition at line 31 of file GNEMoveElementView.h.
|
strong |
attributes format
| Enumerator | |
|---|---|
| POSITION | |
| CARTESIAN | position format |
| GEO | cartesian format (x, y, z) geo format (lon, lat, z) |
Definition at line 38 of file GNEMoveElementView.h.
| GNEMoveElementView::GNEMoveElementView | ( | GNEAttributeCarrier * | element, |
| AttributesFormat | attributesFormat, | ||
| SumoXMLAttr | posAttr, | ||
| Position & | position | ||
| ) |
constructor for element with fixed size
Definition at line 31 of file GNEMoveElementView.cpp.
| GNEMoveElementView::~GNEMoveElementView | ( | ) |
Definition at line 39 of file GNEMoveElementView.cpp.
|
privatedelete |
Invalidated copy constructor.
|
staticprivateinherited |
calculate width/height shape
Definition at line 419 of file GNEMoveElement.cpp.
References PositionVector::extrapolate2D(), GNEMoveOperation::firstGeometryPoint, PositionVector::length2D(), PositionVector::nearest_offset_to_point2D(), GNEMoveOperation::originalShape, PositionVector::reverse(), GNEMoveOperation::shapeToMove, and GNEMoveResult::shapeToUpdate.
Referenced by GNEMoveElement::commitMove(), and GNEMoveElement::moveElement().
|
staticprivateinherited |
calculate lane offset (used in calculateLanePosition)
Definition at line 279 of file GNEMoveElement.cpp.
References Position::add(), GNELane::getLaneShape(), PositionVector::length2D(), PositionVector::nearest_offset_to_point2D(), PositionVector::positionAtOffset2D(), GUISUMOAbstractView::snapToActiveGrid(), GNEMoveOffset::x, GNEMoveOffset::y, and GNEMoveOffset::z.
Referenced by GNEMoveElement::calculateLanePosition(), and GNEMoveElement::calculateLanePositions().
|
staticprivateinherited |
calculate lane position over one lane with only one position (accesss, E1, star/end positions, etc.)
Definition at line 322 of file GNEMoveElement.cpp.
References GNEMoveElement::calculateLaneOffset(), and GNELane::getLengthGeometryFactor().
Referenced by GNEMoveElement::calculateLanePositions(), GNEMoveElement::commitMove(), and GNEMoveElement::moveElement().
|
staticprivateinherited |
calculate lane position over two lane with two positions (E2 Multilanes)
Definition at line 343 of file GNEMoveElement.cpp.
References GNEMoveElement::calculateLanePosition(), GNELane::getLaneShape(), and PositionVector::length2D().
|
staticprivateinherited |
calculate lane position over one lane with two positions (stoppingPlaces, E2 single lanes)
Definition at line 332 of file GNEMoveElement.cpp.
References GNEMoveElement::calculateLaneOffset(), and GNELane::getLengthGeometryFactor().
Referenced by GNEMoveElement::commitMove(), and GNEMoveElement::moveElement().
|
staticprivateinherited |
calculate new lane change
Definition at line 387 of file GNEMoveElement.cpp.
References Position::distanceSquaredTo2D(), Position::distanceTo2D(), GNEHierarchicalElement::getChildLanes(), GNELane::getIndex(), GNELane::getLaneShape(), GNELane::getParentEdge(), GUISUMOAbstractView::getPositionInformation(), PositionVector::nearest_offset_to_point2D(), and PositionVector::positionAtOffset2D().
Referenced by GNEMoveElement::commitMove(), and GNEMoveElement::moveElement().
|
staticinherited |
commit move element for the given offset
Definition at line 180 of file GNEMoveElement.cpp.
References PositionVector::add(), GNEMoveOperation::allowChangeLane, GNEMoveElement::calculateExtrapolatedVector(), GNEMoveElement::calculateLanePosition(), GNEMoveElement::calculateLanePositions(), GNEMoveElement::calculateNewLaneChange(), GNEMoveOperation::clickedFirstLane, GNEMoveElement::commitMoveShape(), GNEMoveOperation::firstLane, GNEMoveResult::firstLaneOffset, GNEMoveOperation::firstPosition, GNEMoveOperation::geometryPointsToMove, GNEMoveResult::geometryPointsToMove, GNEMoveFrame::getCommonMoveOptions(), GNEMoveFrame::CommonMoveOptions::getMergeGeometryPoints(), GNEViewParent::getMoveFrame(), GNEViewNet::getViewParent(), GNEMoveOperation::HEIGHT, Position::INVALID, INVALID_DOUBLE, GNEMoveOperation::lastLane, GNEMoveOperation::lastPosition, GNEMoveOperation::LENGTH, GNEMoveOperation::moveElement, GNEMoveResult::newFirstLane, GNEMoveResult::newFirstPos, GNEMoveResult::newLastLane, GNEMoveResult::newLastPos, GNEMoveOperation::operationType, GNEMoveOperation::originalGeometryPoints, GNEMoveOperation::originalShape, PositionVector::removeDoublePoints(), GNEMoveElement::setMoveShape(), GNEMoveOperation::shapeToMove, GNEMoveResult::shapeToUpdate, GUISUMOAbstractView::snapToActiveGrid(), GNEMoveOperation::WIDTH, GNEMoveOffset::x, GNEMoveOffset::y, and GNEMoveOffset::z.
Referenced by GNEViewNetHelper::MoveMultipleElementModul::finishMoveSelection(), GNEViewNetHelper::MoveSingleElementModul::finishMoveSingleElement(), GNEViewNetHelper::MoveMultipleElementModul::moveSelection(), and GNEViewNetHelper::MoveSingleElementModul::moveSingleElement().
|
overrideprivatevirtual |
commit move shape
Implements GNEMoveElement.
Reimplemented in GNEMoveElementViewResizable.
Definition at line 152 of file GNEMoveElementView.cpp.
References GNEUndoList::begin(), GNEChange_Attribute::changeAttribute(), GNEUndoList::end(), GNEAttributeCarrier::getTagStr(), GNEMoveElement::myMovedElement, GNEMoveResult::shapeToUpdate, SUMO_ATTR_POSITION, TLF, and toString().
Referenced by GNEMoveElementViewResizable::commitMoveShape().
|
protectedinherited |
calculate move shape operation
Definition at line 70 of file GNEMoveElement.cpp.
References GUIViewObjectsHandler::getSelectedGeometryPoints(), GUIViewObjectsHandler::getSelectedPositionOverShape(), gViewObjectsHandler, PositionVector::indexOfClosest(), PositionVector::insertAtClosest(), and Position::INVALID.
Referenced by GNEMoveElementConnection::getMoveOperation(), GNEMoveElementCrossing::getMoveOperation(), GNEMoveElementEdge::getMoveOperation(), GNEMoveElementJunction::getMoveOperation(), GNEMoveElementLane::getMoveOperation(), and GNEMoveElementShape::getMoveOperation().
|
virtual |
get move operation
Implements GNEMoveElement.
Reimplemented in GNEMoveElementViewResizable.
Definition at line 43 of file GNEMoveElementView.cpp.
References myPosOverView.
Referenced by GNEMoveElementViewResizable::getMoveOperation().
|
overridevirtual |
get moving attribute
Implements GNEMoveElement.
Definition at line 50 of file GNEMoveElementView.cpp.
References GNEAttributeCarrier::getCommonAttribute(), GNEMoveElement::myMovedElement, myPosAttr, myPosOverView, and toString().
Referenced by GNEMultiEntryExitDetector::getAttribute(), GNEParkingSpace::getAttribute(), GNEPOI::getAttribute(), GNERerouter::getAttribute(), GNETractionSubstation::getAttribute(), and GNEVariableSpeedSign::getAttribute().
|
overridevirtual |
get moving attribute double
Implements GNEMoveElement.
Definition at line 60 of file GNEMoveElementView.cpp.
References GNEAttributeCarrier::getCommonAttributeDouble(), and GNEMoveElement::myMovedElement.
Referenced by GNEMultiEntryExitDetector::getAttributeDouble(), GNEParkingSpace::getAttributeDouble(), GNEPOI::getAttributeDouble(), GNERerouter::getAttributeDouble(), GNETractionSubstation::getAttributeDouble(), and GNEVariableSpeedSign::getAttributeDouble().
|
overridevirtual |
get moving attribute position
Implements GNEMoveElement.
Definition at line 66 of file GNEMoveElementView.cpp.
References GNEAttributeCarrier::getCommonAttributePosition(), GNEMoveElement::myMovedElement, myPosAttr, and myPosOverView.
Referenced by GNEMultiEntryExitDetector::getAttributePosition(), GNEParkingSpace::getAttributePosition(), GNEPOI::getAttributePosition(), GNERerouter::getAttributePosition(), GNETractionSubstation::getAttributePosition(), and GNEVariableSpeedSign::getAttributePosition().
|
overridevirtual |
get moving attribute positionVector
Implements GNEMoveElement.
Definition at line 76 of file GNEMoveElementView.cpp.
References GNEAttributeCarrier::getCommonAttributePositionVector(), and GNEMoveElement::myMovedElement.
Referenced by GNEMultiEntryExitDetector::getAttributePositionVector(), GNEParkingSpace::getAttributePositionVector(), GNERerouter::getAttributePositionVector(), GNETractionSubstation::getAttributePositionVector(), and GNEVariableSpeedSign::getAttributePositionVector().
|
overridevirtual |
check if the given moving attribute is valid
Implements GNEMoveElement.
Definition at line 92 of file GNEMoveElementView.cpp.
References GNEAttributeCarrier::isCommonAttributeValid(), GNEMoveElement::myMovedElement, and myPosAttr.
Referenced by GNEMultiEntryExitDetector::isValid(), GNEParkingSpace::isValid(), GNEPOI::isValid(), GNERerouter::isValid(), GNETractionSubstation::isValid(), and GNEVariableSpeedSign::isValid().
|
staticinherited |
move element the for given offset (note: offset can be X-Y-0, 0-0-Z or X-Y-Z)
Definition at line 99 of file GNEMoveElement.cpp.
References PositionVector::add(), GNEMoveOperation::allowChangeLane, GNEMoveElement::calculateExtrapolatedVector(), GNEMoveElement::calculateLanePosition(), GNEMoveElement::calculateLanePositions(), GNEMoveElement::calculateNewLaneChange(), GNEMoveOperation::clickedFirstLane, GNEMoveOperation::firstLane, GNEMoveResult::firstLaneOffset, GNEMoveOperation::firstPosition, GNEMoveOperation::geometryPointsToMove, GNEMoveResult::geometryPointsToMove, GNEMoveOperation::HEIGHT, Position::INVALID, INVALID_DOUBLE, GNEMoveOperation::lastLane, GNEMoveOperation::lastPosition, GNEMoveOperation::LENGTH, GNEMoveOperation::moveElement, GNEMoveResult::newFirstLane, GNEMoveResult::newFirstPos, GNEMoveResult::newLastPos, GNEMoveOperation::operationType, GNEMoveElement::setMoveShape(), GNEMoveOperation::shapeToMove, GNEMoveResult::shapeToUpdate, GUISUMOAbstractView::snapToActiveGrid(), GNEMoveOperation::WIDTH, GNEMoveOffset::x, GNEMoveOffset::y, and GNEMoveOffset::z.
Referenced by GNEViewNetHelper::MoveSingleElementModul::getMovedElement(), GNEViewNetHelper::MoveMultipleElementModul::moveSelection(), and GNEViewNetHelper::MoveSingleElementModul::moveSingleElement().
|
privatedelete |
Invalidated assignment operator.
|
overridevirtual |
remove geometry point in the clicked position
Implements GNEMoveElement.
Definition at line 112 of file GNEMoveElementView.cpp.
|
overrideprivatevirtual |
set move shape
Implements GNEMoveElement.
Reimplemented in GNEMoveElementViewResizable.
Definition at line 144 of file GNEMoveElementView.cpp.
References GNEMoveElement::myMovedElement, myPosOverView, GNEMoveResult::shapeToUpdate, and GNEAttributeCarrier::updateGeometry().
Referenced by GNEMoveElementViewResizable::setMoveShape().
|
overridevirtual |
set moving attribute
Implements GNEMoveElement.
Definition at line 102 of file GNEMoveElementView.cpp.
References GNEMoveElement::myMovedElement, myPosAttr, myPosOverView, and GNEAttributeCarrier::setCommonAttribute().
|
overridevirtual |
set moving attribute (using undo-list)
Implements GNEMoveElement.
Definition at line 82 of file GNEMoveElementView.cpp.
References GNEChange_Attribute::changeAttribute(), GNEMoveElement::myMovedElement, myPosAttr, and GNEAttributeCarrier::setCommonAttribute().
Referenced by GNEMultiEntryExitDetector::setAttribute(), GNEParkingSpace::setAttribute(), GNEPOI::setAttribute(), GNERerouter::setAttribute(), GNETractionSubstation::setAttribute(), GNEVariableSpeedSign::setAttribute(), GNEMultiEntryExitDetector::setAttribute(), GNEParkingSpace::setAttribute(), GNEPOI::setAttribute(), GNERerouter::setAttribute(), GNETractionSubstation::setAttribute(), and GNEVariableSpeedSign::setAttribute().
| void GNEMoveElementView::writeMoveAttributes | ( | OutputDevice & | device | ) | const |
write move attributes
Definition at line 118 of file GNEMoveElementView.cpp.
References CARTESIAN, GEO, GNEAttributeCarrier::getAttributeDouble(), gPrecisionGeo, myAttributesFormat, GNEMoveElement::myMovedElement, myPosOverView, POSITION, OutputDevice::setPrecision(), SUMO_ATTR_LAT, SUMO_ATTR_LON, SUMO_ATTR_POSITION, SUMO_ATTR_X, SUMO_ATTR_Y, SUMO_ATTR_Z, OutputDevice::writeAttr(), Position::x(), Position::y(), and Position::z().
Referenced by GNEMultiEntryExitDetector::writeAdditional(), GNEParkingSpace::writeAdditional(), GNERerouter::writeAdditional(), GNETractionSubstation::writeAdditional(), GNEVariableSpeedSign::writeAdditional(), and GNEPOI::writeAdditional().
|
friend |
resizable needs access
Definition at line 35 of file GNEMoveElementView.h.
|
private |
pos attributes format
Definition at line 102 of file GNEMoveElementView.h.
Referenced by writeMoveAttributes().
|
protectedinherited |
pointer to element
Definition at line 96 of file GNEMoveElement.h.
Referenced by GNEMoveElementLaneDouble::commitMoveShape(), GNEMoveElementLaneSingle::commitMoveShape(), GNEMoveElementShape::commitMoveShape(), commitMoveShape(), GNEMoveElementViewResizable::commitMoveShape(), GNEMoveElementLaneDouble::fixMovingProblem(), GNEMoveElementLaneSingle::fixMovingProblem(), GNEMoveElementLaneSingle::getFixedPositionOverLane(), GNEMoveElementLaneDouble::getMoveOperation(), GNEMoveElementLaneSingle::getMoveOperation(), GNEMoveElementShape::getMoveOperation(), GNEMoveElementViewResizable::getMoveOperation(), GNEMoveElement::getMovingAttribute(), GNEMoveElementConnection::getMovingAttribute(), GNEMoveElementCrossing::getMovingAttribute(), GNEMoveElementEdge::getMovingAttribute(), GNEMoveElementJunction::getMovingAttribute(), GNEMoveElementLane::getMovingAttribute(), GNEMoveElementLaneDouble::getMovingAttribute(), GNEMoveElementLaneSingle::getMovingAttribute(), GNEMoveElementPlan::getMovingAttribute(), GNEMoveElementPlanParent::getMovingAttribute(), GNEMoveElementShape::getMovingAttribute(), GNEMoveElementVehicle::getMovingAttribute(), getMovingAttribute(), GNEMoveElement::getMovingAttributeDouble(), GNEMoveElementConnection::getMovingAttributeDouble(), GNEMoveElementCrossing::getMovingAttributeDouble(), GNEMoveElementEdge::getMovingAttributeDouble(), GNEMoveElementJunction::getMovingAttributeDouble(), GNEMoveElementLane::getMovingAttributeDouble(), GNEMoveElementLaneDouble::getMovingAttributeDouble(), GNEMoveElementLaneSingle::getMovingAttributeDouble(), GNEMoveElementPlan::getMovingAttributeDouble(), GNEMoveElementPlanParent::getMovingAttributeDouble(), GNEMoveElementShape::getMovingAttributeDouble(), GNEMoveElementVehicle::getMovingAttributeDouble(), getMovingAttributeDouble(), GNEMoveElementConnection::getMovingAttributePosition(), GNEMoveElementCrossing::getMovingAttributePosition(), GNEMoveElementEdge::getMovingAttributePosition(), GNEMoveElementJunction::getMovingAttributePosition(), GNEMoveElementLane::getMovingAttributePosition(), GNEMoveElementLaneDouble::getMovingAttributePosition(), GNEMoveElementLaneSingle::getMovingAttributePosition(), GNEMoveElementPlan::getMovingAttributePosition(), GNEMoveElementPlanParent::getMovingAttributePosition(), GNEMoveElementShape::getMovingAttributePosition(), GNEMoveElementVehicle::getMovingAttributePosition(), getMovingAttributePosition(), GNEMoveElementConnection::getMovingAttributePositionVector(), GNEMoveElementCrossing::getMovingAttributePositionVector(), GNEMoveElementEdge::getMovingAttributePositionVector(), GNEMoveElementJunction::getMovingAttributePositionVector(), GNEMoveElementLane::getMovingAttributePositionVector(), GNEMoveElementLaneDouble::getMovingAttributePositionVector(), GNEMoveElementLaneSingle::getMovingAttributePositionVector(), GNEMoveElementPlan::getMovingAttributePositionVector(), GNEMoveElementPlanParent::getMovingAttributePositionVector(), GNEMoveElementShape::getMovingAttributePositionVector(), GNEMoveElementVehicle::getMovingAttributePositionVector(), getMovingAttributePositionVector(), GNEMoveElementLaneDouble::getMovingProblem(), GNEMoveElementLaneSingle::getMovingProblem(), GNEMoveElementLaneDouble::isMoveElementValid(), GNEMoveElementLaneSingle::isMoveElementValid(), GNEMoveElement::isMovingAttributeValid(), GNEMoveElementConnection::isMovingAttributeValid(), GNEMoveElementCrossing::isMovingAttributeValid(), GNEMoveElementEdge::isMovingAttributeValid(), GNEMoveElementJunction::isMovingAttributeValid(), GNEMoveElementLane::isMovingAttributeValid(), GNEMoveElementLaneDouble::isMovingAttributeValid(), GNEMoveElementLaneSingle::isMovingAttributeValid(), GNEMoveElementPlan::isMovingAttributeValid(), GNEMoveElementPlanParent::isMovingAttributeValid(), GNEMoveElementShape::isMovingAttributeValid(), GNEMoveElementVehicle::isMovingAttributeValid(), isMovingAttributeValid(), GNEMoveElementShape::removeGeometryPoint(), GNEMoveElementLaneDouble::setMoveShape(), GNEMoveElementLaneSingle::setMoveShape(), GNEMoveElementShape::setMoveShape(), setMoveShape(), GNEMoveElementConnection::setMovingAttribute(), GNEMoveElementCrossing::setMovingAttribute(), GNEMoveElementEdge::setMovingAttribute(), GNEMoveElementJunction::setMovingAttribute(), GNEMoveElementLane::setMovingAttribute(), GNEMoveElementLaneDouble::setMovingAttribute(), GNEMoveElementLaneSingle::setMovingAttribute(), GNEMoveElementPlan::setMovingAttribute(), GNEMoveElementPlanParent::setMovingAttribute(), GNEMoveElementShape::setMovingAttribute(), GNEMoveElementVehicle::setMovingAttribute(), setMovingAttribute(), GNEMoveElement::setMovingAttribute(), GNEMoveElementConnection::setMovingAttribute(), GNEMoveElementCrossing::setMovingAttribute(), GNEMoveElementEdge::setMovingAttribute(), GNEMoveElementJunction::setMovingAttribute(), GNEMoveElementLane::setMovingAttribute(), GNEMoveElementLaneDouble::setMovingAttribute(), GNEMoveElementLaneSingle::setMovingAttribute(), GNEMoveElementPlan::setMovingAttribute(), GNEMoveElementPlanParent::setMovingAttribute(), GNEMoveElementShape::setMovingAttribute(), GNEMoveElementVehicle::setMovingAttribute(), setMovingAttribute(), GNEMoveElement::setMovingAttribute(), GNEMoveElementLaneDouble::setSize(), GNEMoveElementLaneSingle::writeMoveAttributes(), writeMoveAttributes(), and GNEMoveElementLaneDouble::writeMoveAttributes().
|
inherited |
move element lateral offset
Definition at line 92 of file GNEMoveElement.h.
Referenced by GNEMoveElementLaneSingle::commitMoveShape(), GNEMoveElementVehicle::commitMoveShape(), GNEMoveElementLaneDouble::setMoveShape(), GNEMoveElementLaneSingle::setMoveShape(), GNEMoveElementVehicle::setMoveShape(), GNEStoppingPlace::setStoppingPlaceGeometry(), GNEAccess::updateGeometry(), GNEEntryExitDetector::updateGeometry(), GNEInductionLoopDetector::updateGeometry(), GNEInstantInductionLoopDetector::updateGeometry(), GNELaneAreaDetector::updateGeometry(), and GNEStop::updateGeometry().
|
private |
pos attribute
Definition at line 90 of file GNEMoveElementView.h.
Referenced by getMovingAttribute(), getMovingAttributePosition(), isMovingAttributeValid(), setMovingAttribute(), and setMovingAttribute().
|
private |
position over view
Definition at line 93 of file GNEMoveElementView.h.
Referenced by getMoveOperation(), getMovingAttribute(), getMovingAttributePosition(), setMoveShape(), setMovingAttribute(), and writeMoveAttributes().