Home
last modified time | relevance | path

Searched refs:globalCoord (Results 1 – 15 of 15) sorted by relevance

/dports/math/dune-grid/dune-grid-de36e4b4e99da4cd7a120a39779345e701821115/dune/grid/io/file/
H A Dgmshwriter.hh167 const auto globalCoord = vertex.geometry().center(); in outputNodes() local
171 file << nodeIndex << " " << globalCoord[0] << " " << 0 << " " << 0 << std::endl; in outputNodes()
173 … file << nodeIndex << " " << globalCoord[0] << " " << globalCoord[1] << " " << 0 << std::endl; in outputNodes()
175 …file << nodeIndex << " " << globalCoord[0] << " " << globalCoord[1] << " " << globalCoord[2] << st… in outputNodes()
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/tests/common_scenarios/tree_viewer/
H A DGTTestsCommonScenariousTreeviewer.cpp393 return globalCoord.y(); in getCoord()
455 initPos.append(globalCoord.x()); in GUI_TEST_CLASS_DEFINITION()
469 i = globalCoord.x(); in GUI_TEST_CLASS_DEFINITION()
488 finalPos.append(globalCoord.x()); in GUI_TEST_CLASS_DEFINITION()
695 GTMouseDriver::moveTo(globalCoord); in GUI_TEST_CLASS_DEFINITION()
699 globalCoord.setX(globalCoord.x() - 15); // pick a branch coordinate in GUI_TEST_CLASS_DEFINITION()
721 GTMouseDriver::moveTo(globalCoord); in GUI_TEST_CLASS_DEFINITION()
742 GTMouseDriver::moveTo(globalCoord); in GUI_TEST_CLASS_DEFINITION()
766 GTMouseDriver::moveTo(globalCoord); in GUI_TEST_CLASS_DEFINITION()
785 GTMouseDriver::moveTo(globalCoord); in GUI_TEST_CLASS_DEFINITION()
[all …]
/dports/math/dune-curvedgeometry/dune-curvedgeometry-fae02adf3757851f7f9caf41037da87caa52197d/dune/curvedgeometry/
H A Dcurvedgeometry.hh300 LocalCoordinate local (const GlobalCoordinate& globalCoord) const in local()
302 auto localCoord = checkedLocal(globalCoord); in local()
304 …OW(Exception, "Local coordinate cannot be recovered from given global coordinate " << globalCoord); in local()
321 std::optional<LocalCoordinate> checkedLocal (const GlobalCoordinate& globalCoord) const in checkedLocal()
324 LocalCoordinate x = flatGeometry().local(globalCoord); in checkedLocal()
332 const GlobalCoordinate dglobal = global(x) - globalCoord; in checkedLocal()
652 std::optional<LocalCoordinate> checkedLocal (const GlobalCoordinate& globalCoord) const in checkedLocal()
654 auto localCoord = Super::local(globalCoord); in checkedLocal()
655 if ((globalCoord - Super::global(localCoord)).two_norm2() > Traits::tolerance()) in checkedLocal()
H A Dlocalfunctiongeometry.hh225 LocalCoordinate local (const GlobalCoordinate& globalCoord) const in local()
227 auto localCoord = checkedLocal(globalCoord); in local()
230 "local coordinate can not be recovered from global coordinate " << globalCoord); in local()
242 std::optional<LocalCoordinate> checkedLocal (const GlobalCoordinate& globalCoord) const in checkedLocal()
244 LocalCoordinate x = flatGeometry().local(globalCoord); in checkedLocal()
250 const GlobalCoordinate dglobal = global(x) - globalCoord; in checkedLocal()
H A Dparametrizedgeometry.hh291 LocalCoordinate local (const GlobalCoordinate& globalCoord) const in local()
293 auto localCoord = checkedLocal(globalCoord); in local()
295 …OW(Exception, "Local coordinate cannot be recovered from given global coordinate " << globalCoord); in local()
312 std::optional<LocalCoordinate> checkedLocal (const GlobalCoordinate& globalCoord) const in checkedLocal()
315 LocalCoordinate x = flatGeometry().local(globalCoord); in checkedLocal()
323 const GlobalCoordinate dglobal = global(x) - globalCoord; in checkedLocal()
/dports/math/dune-grid/dune-grid-de36e4b4e99da4cd7a120a39779345e701821115/dune/grid/uggrid/
H A Duggridgeometry.cc90 FieldVector<UGCtype, coorddim> globalCoord(0.0); in global() local
98 UG_NS<coorddim>::Local_To_Global(n, cornerCoords, local, globalCoord); in global()
100 return globalCoord; in global()
/dports/audio/musescore/MuseScore-3.6.1/mscore/importmidi_ui/
H A Dimportmidi_delegate.cpp389 … const auto globalCoord = lw->parentWidget()->mapToGlobal(lw->geometry().topLeft()); in setEditorData() local
391 auto newLocalCoord = appWindow->mapFromGlobal(globalCoord); in setEditorData()
409 … const auto globalCoord = mv->parentWidget()->mapToGlobal(mv->geometry().topLeft()); in setEditorData() local
411 const auto newLocalCoord = appWindow->mapFromGlobal(globalCoord); in setEditorData()
424 … const auto globalCoord = ts->parentWidget()->mapToGlobal(ts->geometry().topLeft()); in setEditorData() local
426 const auto newLocalCoord = appWindow->mapFromGlobal(globalCoord); in setEditorData()
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/
H A DGTUtilsPhyTree.cpp192 QPoint globalCoord = treeView->mapToGlobal(viewCord); in getGlobalCenterCoord() local
193 globalCoord += QPoint(item->boundingRect().width() / 2, item->boundingRect().height() / 2); in getGlobalCenterCoord()
195 return globalCoord; in getGlobalCenterCoord()
H A DGTUtilsMcaEditorSequenceArea.cpp162 QPoint globalCoord = nameList->mapToGlobal(localCoord); in clickCollapseTriangle() local
163 GTMouseDriver::moveTo(globalCoord); in clickCollapseTriangle()
H A DGTUtilsMsaEditorSequenceArea.cpp363 QPoint globalCoord = nameList->mapToGlobal(localCoord); in clickCollapseTriangle() local
364 GTMouseDriver::moveTo(globalCoord); in clickCollapseTriangle()
/dports/math/dune-alugrid/dune-alugrid-08c6496d4d4a33df6456c3b402182f353dc2e76d/dune/alugrid/3d/
H A Dmappings_imp.cc1042 world_t globalCoord( global ); in world2map() local
1044 globalCoord -= _p0; in world2map()
1047 jacobianInverseTransposed( local ).mtv(globalCoord, local); in world2map()
1155 world_t globalCoord; in calculateDeterminant() local
1160 globalCoord[i] = ( tmpV[(i+1)%cdim] * tmpU[(i+2)%cdim] in calculateDeterminant()
1165 _det = globalCoord.two_norm(); in calculateDeterminant()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/image/
H A Dqpixmap_mac.cpp983 QPoint globalCoord(0, 0); in grabWindow() local
984 globalCoord = widget->mapToGlobal(globalCoord); in grabWindow()
985 QRect rect(globalCoord.x() + x, globalCoord.y() + y, w, h); in grabWindow()
/dports/math/dune-geometry/dune-geometry-e7bfb66e48496aa28e47974c33ea9a4579bf723b/dune/geometry/
H A Dmultilineargeometry.hh304 LocalCoordinate local ( const GlobalCoordinate &globalCoord ) const in local()
313 const GlobalCoordinate dglobal = (*this).global( x ) - globalCoord; in local()
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/tests/common_scenarios/options_panel/msa/
H A DGTTestsOptionPanelMSA.cpp1947 QPoint globalCoord = treeView->mapToGlobal(viewCord); in GUI_TEST_CLASS_DEFINITION() local
1948globalCoord += QPoint(nodes[1]->boundingRect().width() / 2 + 8, nodes[1]->boundingRect().height() … in GUI_TEST_CLASS_DEFINITION()
1949 GTMouseDriver::moveTo(globalCoord); in GUI_TEST_CLASS_DEFINITION()
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/tests/regression_scenarios/
H A DGTTestsRegressionScenarios_4001_5000.cpp1904 QPoint globalCoord = treeView->mapToGlobal(viewCord); in GUI_TEST_CLASS_DEFINITION() local
1905globalCoord += QPoint(nodes[1]->boundingRect().width() / 2 + 8, nodes[1]->boundingRect().height() … in GUI_TEST_CLASS_DEFINITION()
1906 GTMouseDriver::moveTo(globalCoord); in GUI_TEST_CLASS_DEFINITION()