getNodeSections method
Implementation
NodeSections getNodeSections(Coordinate nodePt) {
NodeSections? node = _nodeMap[nodePt];
if (node == null) {
node = NodeSections(nodePt);
_nodeMap[nodePt] = node;
}
return node;
}
NodeSections getNodeSections(Coordinate nodePt) {
NodeSections? node = _nodeMap[nodePt];
if (node == null) {
node = NodeSections(nodePt);
_nodeMap[nodePt] = node;
}
return node;
}