Home
last modified time | relevance | path

Searched refs:GetBBox (Results 1 – 25 of 543) sorted by relevance

12345678910>>...22

/dports/cad/alliance/alliance/src/ocp/src/placer/
H A DPIns.cpp43 PIns::GetBBox() const in GetBBox() function in PIns
52 out << GetBBox().GetMinX()+0.4 << " " << GetBBox().GetMinY()+0.4 << endl in Plot()
53 << GetBBox().GetMinX()+0.4 << " " << GetBBox().GetMaxY()-0.4 << endl in Plot()
54 << GetBBox().GetMaxX()-0.4 << " " << GetBBox().GetMaxY()-0.4 << endl in Plot()
55 << GetBBox().GetMaxX()-0.4 << " " << GetBBox().GetMinY()+0.4 << endl in Plot()
56 << GetBBox().GetMinX()+0.4 << " " << GetBBox().GetMinY()+0.4 << endl << endl; in Plot()
/dports/astro/opencpn/OpenCPN-5.2.4/libs/wxsvg/src/
H A DSVGRectElement.cpp19 wxSVGRect wxSVGRectElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGRectElement
23 bbox = m_canvasItem->GetBBox(); in GetBBox()
26 bbox = m_canvasItem->GetBBox(&m); in GetBBox()
35 return GetBBox(coordinates); in GetResultBBox()
H A DSVGPathElement.cpp15 wxSVGRect wxSVGPathElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGPathElement
19 bbox = m_canvasItem->GetBBox(); in GetBBox()
22 bbox = m_canvasItem->GetBBox(&m); in GetBBox()
31 return GetBBox(coordinates); in GetResultBBox()
H A DSVGTextElement.cpp15 wxSVGRect wxSVGTextElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGTextElement
20 bbox = m_canvasItem->GetBBox(); in GetBBox()
23 bbox = m_canvasItem->GetBBox(&m); in GetBBox()
33 return GetBBox(coordinates); in GetResultBBox()
H A DSVGUseElement.cpp13 wxSVGRect wxSVGUseElement::GetBBox(wxSVG_COORDINATES coordinates) in GetBBox() function in wxSVGUseElement
24 return GetBBox(coordinates); in GetResultBBox()
H A DSVGVideoElement.cpp15 wxSVGRect wxSVGVideoElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGVideoElement
24 return GetBBox(coordinates); in GetResultBBox()
H A DSVGLineElement.cpp14 wxSVGRect wxSVGLineElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGLineElement
46 return GetBBox(coordinates); in GetResultBBox()
H A DSVGImageElement.cpp14 wxSVGRect wxSVGImageElement::GetBBox(wxSVG_COORDINATES coordinates) in GetBBox() function in wxSVGImageElement
25 return GetBBox(coordinates); in GetResultBBox()
/dports/graphics/wxsvg/wxsvg-1.5.22/src/
H A DSVGRectElement.cpp19 wxSVGRect wxSVGRectElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGRectElement
23 bbox = m_canvasItem->GetBBox(); in GetBBox()
26 bbox = m_canvasItem->GetBBox(&m); in GetBBox()
35 return GetBBox(coordinates); in GetResultBBox()
H A DSVGTextElement.cpp15 wxSVGRect wxSVGTextElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGTextElement
20 bbox = m_canvasItem->GetBBox(); in GetBBox()
23 bbox = m_canvasItem->GetBBox(&m); in GetBBox()
33 return GetBBox(coordinates); in GetResultBBox()
H A DSVGPathElement.cpp15 wxSVGRect wxSVGPathElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGPathElement
19 bbox = m_canvasItem->GetBBox(); in GetBBox()
22 bbox = m_canvasItem->GetBBox(&m); in GetBBox()
31 return GetBBox(coordinates); in GetResultBBox()
H A DSVGVideoElement.cpp15 wxSVGRect wxSVGVideoElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGVideoElement
24 return GetBBox(coordinates); in GetResultBBox()
H A DSVGLineElement.cpp14 wxSVGRect wxSVGLineElement::GetBBox(wxSVG_COORDINATES coordinates) { in GetBBox() function in wxSVGLineElement
46 return GetBBox(coordinates); in GetResultBBox()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/3d-viewer/3d_rendering/raytracing/
H A Dcreate_scene.cpp194 SFVEC3F( aObject2D->GetBBox().Min().x, aObject2D->GetBBox().Min().y, aZMin ), in createObject()
195 SFVEC3F( aObject2D->GetBBox().Max().x, aObject2D->GetBBox().Max().y, aZMin ) ) ); in createObject()
201 SFVEC3F( aObject2D->GetBBox().Min().x, aObject2D->GetBBox().Min().y, aZMax ), in createObject()
202 SFVEC3F( aObject2D->GetBBox().Max().x, aObject2D->GetBBox().Max().y, aZMax ) ) ); in createObject()
271 holes2d->GetIntersectingObjects( object2d_A->GetBBox(), intersecting ); in createItemsFromContainer()
460 if( object2d_A->Intersects( hole->GetBBox() ) ) in Reload()
726 if( object2d_A->Intersects( hole->GetBBox() ) ) in Reload()
803 BBOX_3D boardBBox = m_boardAdapter.GetBBox(); in Reload()
811 BBOX_3D containerBBox = m_objectContainer.GetBBox(); in Reload()
888 const SFVEC3F& boardCenter = m_boardAdapter.GetBBox().GetCenter(); in Reload()
[all …]
/dports/astro/opencpn/OpenCPN-5.2.4/libs/wxsvg/include/wxSVG/
H A DSVGCanvasItem.h47 virtual wxSVGRect GetBBox(const wxSVGMatrix* matrix = NULL) { return wxSVGRect(); }
49 const wxSVGMatrix* matrix = NULL) { return GetBBox(matrix); }
117 wxSVGRect GetBBox(const wxSVGMatrix* matrix);
118 wxSVGRect GetBBox() { return GetBBox(NULL); } in GetBBox() function
131 virtual wxSVGRect GetBBox(const wxSVGMatrix* matrix = NULL);
/dports/graphics/wxsvg/wxsvg-1.5.22/include/wxSVG/
H A DSVGCanvasItem.h47 virtual wxSVGRect GetBBox(const wxSVGMatrix* matrix = NULL) { return wxSVGRect(); }
49 const wxSVGMatrix* matrix = NULL) { return GetBBox(matrix); }
117 wxSVGRect GetBBox(const wxSVGMatrix* matrix);
118 wxSVGRect GetBBox() { return GetBBox(NULL); } in GetBBox() function
131 virtual wxSVGRect GetBBox(const wxSVGMatrix* matrix = NULL);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/css/
H A Dfont_update_invalidation_test.cc118 EXPECT_GT(250 + 10, target->GetBBox().Width()); in TEST_F()
119 EXPECT_GT(250 + 10, reference->GetBBox().Width()); in TEST_F()
134 EXPECT_EQ(250 + 10, target->GetBBox().Width()); in TEST_F()
135 EXPECT_GT(250 + 10, reference->GetBBox().Width()); in TEST_F()
/dports/cad/gds3d/GDS3D-bcdb97a/libgdsto3d/
H A Dgdsobject.cpp448 BB.merge(*polygon->GetBBox()); in GetTotalBoundary()
953 if (!GDSBB::intersect(*poly->GetBBox(), *target_poly->GetBBox())) in intersectPoly()
1004 if (!GDSBB::intersect(*poly_checked->GetBBox(), *target_poly->GetBBox())) in intersectPoly()
1246 BBox.merge(*polyList[i]->GetBBox()); in Add()
1256 BBox.merge(*poly->GetBBox()); in Add()
1273 BBox.merge(*cur_poly->GetBBox()); in Remove()
1303 BBox.merge(*cur_poly->GetBBox()); in GetBB()
1329 if (cur_BB.isBBInside_wborders(*poly->GetBBox())) { in Add()
1353 if (cur_BB.isBBInside_wborders(*poly->GetBBox())) { in Find()
1365 return Remove(poly, *poly->GetBBox()); in Remove()
[all …]
/dports/graphics/wxsvg/wxsvg-1.5.22/
H A DChangeLog41 * wxSVGUseElement: fixed GetBBox() and GetResultBBox()
64 * fixed wxSVGImageElement::GetBBox()
65 * fixed wxSVGUseElement::GetBBox()
86 * changed GetBBox() and GetResultBBox()
159 * fixed some GetBBox() methods
336 * added parameter coordinates (wxSVG_COORDINATES) to GetBBox()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/3d-viewer/3d_rendering/raytracing/accelerators/
H A Dcontainer_3d.h53 m_bbox.Union( aObject->GetBBox() ); in Add()
63 const BBOX_3D& GetBBox() const { return m_bbox; } in GetBBox() function
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/surface/include/pcl/surface/3rdparty/opennurbs/
H A Dopennurbs_array.h423 bool GetBBox( // returns true if successful
446 bool GetBBox( // returns true if successful
535 bool GetBBox(
672 bool GetBBox(
730 bool GetBBox(
753 bool GetBBox(
775 bool GetBBox(
796 bool GetBBox(
H A Dopennurbs_annotation2.h1115 ON_BOOL32 GetBBox(
1305 ON_BOOL32 GetBBox(
1488 ON_BOOL32 GetBBox(
1794 ON_BOOL32 GetBBox(
1952 ON_BOOL32 GetBBox(
2107 ON_BOOL32 GetBBox(
2247 ON_BOOL32 GetBBox( double* box_min, double* box_max, ON_BOOL32 grow_box = false) const;
/dports/math/gismo/gismo-21.12.0/external/onurbs/
H A Dopennurbs_array.h426 bool GetBBox( // returns true if successful
449 bool GetBBox( // returns true if successful
538 bool GetBBox(
675 bool GetBBox(
733 bool GetBBox(
756 bool GetBBox(
778 bool GetBBox(
799 bool GetBBox(
H A Dopennurbs_annotation2.h1116 ON_BOOL32 GetBBox(
1306 ON_BOOL32 GetBBox(
1489 ON_BOOL32 GetBBox(
1795 ON_BOOL32 GetBBox(
1953 ON_BOOL32 GetBBox(
2108 ON_BOOL32 GetBBox(
2248 ON_BOOL32 GetBBox( double* box_min, double* box_max, ON_BOOL32 grow_box = false) const;
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fde/
H A Dcfde_path.h29 void GetBBox(CFX_RectF& bbox) const;
30 void GetBBox(CFX_RectF& bbox,

12345678910>>...22