Home
last modified time | relevance | path

Searched refs:m_bounds (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/dports/graphics/qgis/qgis-3.22.3/external/untwine/epf/
H A DGrid.cpp30 double xside = m_bounds.maxx - m_bounds.minx; in expand()
31 double yside = m_bounds.maxy - m_bounds.miny; in expand()
32 double zside = m_bounds.maxz - m_bounds.minz; in expand()
34 m_cubicBounds = BOX3D(m_bounds.minx, m_bounds.miny, m_bounds.minz, in expand()
35 m_bounds.minx + side, m_bounds.miny + side, m_bounds.minz + side); in expand()
46 double xside = m_bounds.maxx - m_bounds.minx; in calcLevel()
47 double yside = m_bounds.maxy - m_bounds.miny; in calcLevel()
48 double zside = m_bounds.maxz - m_bounds.minz; in calcLevel()
86 m_xsize = (m_bounds.maxx - m_bounds.minx) / m_gridSize; in resetLevel()
87 m_ysize = (m_bounds.maxy - m_bounds.miny) / m_gridSize; in resetLevel()
[all …]
/dports/math/pdal/PDAL-2.3.0/io/
H A DFauxReader.cpp101 m_bounds.minx = ceil(m_bounds.minx); in initialize()
102 m_bounds.maxx = ceil(m_bounds.maxx); in initialize()
103 m_bounds.miny = ceil(m_bounds.miny); in initialize()
104 m_bounds.maxy = ceil(m_bounds.maxy); in initialize()
105 m_bounds.minz = ceil(m_bounds.minz); in initialize()
106 m_bounds.maxz = ceil(m_bounds.maxz); in initialize()
109 if (m_bounds.maxx <= m_bounds.minx) in initialize()
113 m_delX = m_bounds.maxx - m_bounds.minx; in initialize()
116 if (m_bounds.maxy <= m_bounds.miny) in initialize()
120 m_delY = m_bounds.maxy - m_bounds.miny; in initialize()
[all …]
/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/Renderer/
H A DSelectionBoundsRenderer.cpp33 const BBox3& m_bounds; member in TrenchBroom::Renderer::SelectionBoundsRenderer::SizeTextAnchor2D
38 m_bounds(bounds), in SizeTextAnchor2D()
44 Vec3 pos = m_bounds.min; in basePosition()
73 const BBox3& m_bounds; member in TrenchBroom::Renderer::SelectionBoundsRenderer::SizeTextAnchor3D
78 m_bounds(bounds), in SizeTextAnchor3D()
111 … pos[1] = camPos[2] == BBox3::RelativePosition::Range_Within ? m_bounds.min.y() : m_bounds.max.y(); in basePosition()
183 const BBox3& m_bounds; member in TrenchBroom::Renderer::SelectionBoundsRenderer::MinMaxTextAnchor3D
188 m_bounds(bounds), in MinMaxTextAnchor3D()
194 return m_bounds.min; in basePosition()
195 return m_bounds.max; in basePosition()
[all …]
H A DBoundsGuideRenderer.cpp38 if (m_bounds == bounds) in setBounds()
41 m_bounds = bounds; in setBounds()
45 …m_spikeRenderer.add(Ray3(m_bounds.vertex(BBox3::Corner_Min, BBox3::Corner_Min, BBox3::Corner_Min),… in setBounds()
46 …m_spikeRenderer.add(Ray3(m_bounds.vertex(BBox3::Corner_Min, BBox3::Corner_Min, BBox3::Corner_Min),… in setBounds()
47 …m_spikeRenderer.add(Ray3(m_bounds.vertex(BBox3::Corner_Min, BBox3::Corner_Min, BBox3::Corner_Min),… in setBounds()
48 …m_spikeRenderer.add(Ray3(m_bounds.vertex(BBox3::Corner_Min, BBox3::Corner_Min, BBox3::Corner_Max),… in setBounds()
49 …m_spikeRenderer.add(Ray3(m_bounds.vertex(BBox3::Corner_Min, BBox3::Corner_Min, BBox3::Corner_Max),… in setBounds()
50 …m_spikeRenderer.add(Ray3(m_bounds.vertex(BBox3::Corner_Min, BBox3::Corner_Min, BBox3::Corner_Max),… in setBounds()
51 …m_spikeRenderer.add(Ray3(m_bounds.vertex(BBox3::Corner_Min, BBox3::Corner_Max, BBox3::Corner_Min),… in setBounds()
52 …m_spikeRenderer.add(Ray3(m_bounds.vertex(BBox3::Corner_Min, BBox3::Corner_Max, BBox3::Corner_Min),… in setBounds()
[all …]
/dports/graphics/aseprite/aseprite-1.2.9/src/doc/
H A Dmask.cpp155 m_bounds = bounds; in replace()
457 x1 = m_bounds.x; in shrink()
458 y1 = m_bounds.y; in shrink()
459 x2 = m_bounds.x+m_bounds.w-1; in shrink()
460 y2 = m_bounds.y+m_bounds.h-1; in shrink()
477 else if ((x1 != m_bounds.x) || (x2 != m_bounds.x+m_bounds.w-1) || in shrink()
478 (y1 != m_bounds.y) || (y2 != m_bounds.y+m_bounds.h-1)) { in shrink()
479 u = m_bounds.x; in shrink()
480 v = m_bounds.y; in shrink()
482 m_bounds.x = x1; in shrink()
[all …]
H A Dimage_bits.h26 m_bounds(0, 0, 0, 0) { in ImageBits()
31 m_bounds(other.m_bounds) { in ImageBits()
36 m_bounds(bounds) { in ImageBits()
43 m_bounds = other.m_bounds;
49 return iterator(m_image, m_bounds, m_bounds.x, m_bounds.y); in begin()
52 iterator it(m_image, m_bounds, m_bounds.x+m_bounds.w-1, m_bounds.y+m_bounds.h-1); in end()
58 return const_iterator(m_image, m_bounds, m_bounds.x, m_bounds.y); in begin()
61 const_iterator it(m_image, m_bounds, m_bounds.x+m_bounds.w-1, m_bounds.y+m_bounds.h-1); in end()
68 ASSERT(m_bounds.contains(area)); in begin_area()
72 ASSERT(m_bounds.contains(area)); in end_area()
[all …]
H A Dmask.h48 u >= m_bounds.x && u < m_bounds.x+m_bounds.w && in containsPoint()
49 v >= m_bounds.y && v < m_bounds.y+m_bounds.h && in containsPoint()
50 get_pixel(m_bitmap.get(), u-m_bounds.x, v-m_bounds.y)); in containsPoint()
53 const gfx::Rect& bounds() const { return m_bounds; } in bounds()
56 m_bounds.x = x; in setOrigin()
57 m_bounds.y = y; in setOrigin()
111 gfx::Rect m_bounds; // Region bounds variable
/dports/print/scribus-devel/scribus-1.5.7/scribus/
H A Dcanvasgesture_resize.cpp76 m_bounds = m.mapRect(m_bounds); in prepare()
95 m_origRatio = m_bounds.width() / m_bounds.height(); in prepare()
96 m_origBounds = m_bounds; in prepare()
551 double newRatio = double(m_bounds.width()) / double(m_bounds.height()); in adjustBounds()
570 m_bounds.setTop(m_bounds.top() - newHeight + m_bounds.height()); in adjustBounds()
572 m_bounds.setLeft(m_bounds.left() - newWidth + m_bounds.width()); in adjustBounds()
587 m_bounds.setLeft(m_bounds.left() - newWidth + m_bounds.width()); in adjustBounds()
592 m_bounds.setTop(m_bounds.top() - newHeight + m_bounds.height()); in adjustBounds()
661 m_bounds.moveTo(rotation.map(m_bounds.topLeft())); in adjustBounds()
680 newFixPoint = m_bounds.topLeft() + QPointF(m_bounds.width() / 2, 0); in adjustBounds()
[all …]
H A Dcanvasgesture_linemove.cpp70 double rot = xy2Deg(m_bounds.width(), m_bounds.height()); in rotation()
79 m_bounds.setSize(length() * QSizeF(cosd(rot), sind(rot))); in setRotation()
85 return qMax(0.01, distance(m_bounds.width(), m_bounds.height())); in length()
91 m_bounds.setTopLeft(p); in setStartPoint()
97 m_bounds.setBottomRight(p); in setEndPoint()
125 p->drawLine(m_bounds.topLeft(), m_bounds.bottomRight()); in drawControls()
156 m_initialBounds = m_bounds; in mousePressEvent()
181 if (m_bounds != m_initialBounds) in mouseReleaseEvent()
204 m_line->setXYPos(m_bounds.right(), m_bounds.bottom()); in doResize()
210 m_line->setXYPos(m_bounds.x(), m_bounds.y()); in doResize()
[all …]
/dports/graphics/qgis/qgis-3.22.3/external/untwine/bu/
H A DVoxelInfo.hpp51 m_bounds.maxx = m_bounds.minx + m_xWidth; in VoxelInfo()
53 m_bounds.maxy = m_bounds.miny + m_yWidth; in VoxelInfo()
55 m_bounds.maxz = m_bounds.minz + m_zWidth; in VoxelInfo()
69 m_gridXCount = (int)std::ceil((m_bounds.maxx - m_bounds.minx) / m_gridCellWidth); in VoxelInfo()
70 m_gridYCount = (int)std::ceil((m_bounds.maxy - m_bounds.miny) / m_gridCellWidth); in VoxelInfo()
71 m_gridZCount = (int)std::ceil((m_bounds.maxz - m_bounds.minz) / m_gridCellWidth); in VoxelInfo()
122 double x = p.x() - m_bounds.minx; in gridKey()
123 double y = p.y() - m_bounds.miny; in gridKey()
124 double z = p.z() - m_bounds.minz; in gridKey()
145 { return m_bounds; } in bounds()
[all …]
/dports/graphics/krita/krita-4.4.8/libs/image/
H A Dkis_fixed_paint_device.cpp39 m_bounds = rhs.m_bounds; in KisFixedPaintDevice()
46 m_bounds = rhs.m_bounds; in operator =()
50 const int referenceSize = m_bounds.height() * m_bounds.width() * pixelSize(); in operator =()
63 m_bounds = rc; in setRect()
69 return m_bounds; in bounds()
93 const int referenceSize = m_bounds.height() * m_bounds.width() * pixelSize(); in reallocateBufferWithoutInitialization()
96 m_data.resize(m_bounds.height() * m_bounds.width() * pixelSize()); in reallocateBufferWithoutInitialization()
131 quint32 size = m_bounds.width() * m_bounds.height(); in convertTo()
195 x1 = m_bounds.x(); in convertToQImage()
196 y1 = m_bounds.y(); in convertToQImage()
[all …]
/dports/games/netradiant/netradiant-20150621-src/libs/
H A Ddragplanes.h59 AABB m_bounds; variable
147 m_bounds = aabb;
173 Vector3 min = m_bounds.origin - m_bounds.extents; in evaluateResize()
174 Vector3 max = m_bounds.origin + m_bounds.extents; in evaluateResize()
175 if ( m_bounds.extents[0] != 0 ) { in evaluateResize()
185 if ( m_bounds.extents[1] != 0 ) { in evaluateResize()
195 if ( m_bounds.extents[2] != 0 ) { in evaluateResize()
210 aabb.origin = m_bounds.origin + translation_from_local( aabb.origin - m_bounds.origin, rotation ); in evaluateResize()
216 m_bounds.extents[0] != 0 ? aabb.extents[0] / m_bounds.extents[0] : 1, in evaluateTransform()
217 m_bounds.extents[1] != 0 ? aabb.extents[1] / m_bounds.extents[1] : 1, in evaluateTransform()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/DetourCrowd/source/
H A DDetourProximityGrid.cpp61 memset(&m_bounds, 0, sizeof(m_bounds)); // Urho3D in dtProximityGrid()
100 m_bounds[0] = 0xffff; in clear()
101 m_bounds[1] = 0xffff; in clear()
102 m_bounds[2] = -0xffff; in clear()
103 m_bounds[3] = -0xffff; in clear()
115 m_bounds[0] = dtMin(m_bounds[0], iminx); in addItem()
116 m_bounds[1] = dtMin(m_bounds[1], iminy); in addItem()
117 m_bounds[2] = dtMax(m_bounds[2], imaxx); in addItem()
118 m_bounds[3] = dtMax(m_bounds[3], imaxy); in addItem()
/dports/graphics/aseprite/aseprite-1.2.9/src/app/util/
H A Dexpand_cel_canvas.cpp112 m_bounds = spriteBounds; in ExpandCelCanvas()
118 m_cel->setPosition(m_bounds.x, m_bounds.y); in ExpandCelCanvas()
214 m_bounds.origin())); in commit()
222 m_bounds.origin())); in commit()
257 m_bounds.w, m_bounds.h, src_buffer)); in getSourceCanvas()
268 m_bounds.w, m_bounds.h, dst_buffer)); in getDestCanvas()
289 .offset(-m_bounds.origin()))); in validateSourceCanvas()
314 src_x = m_bounds.x; in validateDestCanvas()
315 src_y = m_bounds.y; in validateDestCanvas()
342 rc.x+m_bounds.x-src_x, in validateDestCanvas()
[all …]
/dports/math/pdal/PDAL-2.3.0/plugins/teaser/filters/
H A DTeaserFilter.cpp234 m_bounds.clear(); in teaser()
235 m_bounds.minx = std::min(fixedBounds.minx, movingBounds.minx); in teaser()
236 m_bounds.miny = std::min(fixedBounds.miny, movingBounds.miny); in teaser()
237 m_bounds.minz = std::min(fixedBounds.minz, movingBounds.minz); in teaser()
244 double xrange = m_bounds.maxx - m_bounds.minx; in teaser()
245 double yrange = m_bounds.maxy - m_bounds.miny; in teaser()
246 double zrange = m_bounds.maxz - m_bounds.minz; in teaser()
250 m_bounds.minx = centroid.x(); in teaser()
251 m_bounds.miny = centroid.y(); in teaser()
252 m_bounds.minz = centroid.z(); in teaser()
[all …]
/dports/math/pdal/PDAL-2.3.0/plugins/nitf/io/
H A DNitfFileWriter.cpp138 corners[0][0] = m_bounds.maxy; in write()
139 corners[0][1] = m_bounds.minx; in write()
140 corners[1][0] = m_bounds.maxy; in write()
141 corners[1][1] = m_bounds.maxx; in write()
142 corners[2][0] = m_bounds.miny; in write()
143 corners[2][1] = m_bounds.maxx; in write()
279 m_bounds = bounds; in setBounds()
286 m_bounds.minx = (floor(m_bounds.minx * 1000)) / 1000.0; in setBounds()
287 m_bounds.miny = (floor(m_bounds.miny * 1000)) / 1000.0; in setBounds()
288 m_bounds.maxx = (ceil(m_bounds.maxx * 1000)) / 1000.0; in setBounds()
[all …]
/dports/graphics/recastnavigation/recastnavigation-e75adf86f91eb3082220085e42dda62679f9a3ea/DetourCrowd/Source/
H A DDetourProximityGrid.cpp96 m_bounds[0] = 0xffff; in clear()
97 m_bounds[1] = 0xffff; in clear()
98 m_bounds[2] = -0xffff; in clear()
99 m_bounds[3] = -0xffff; in clear()
111 m_bounds[0] = dtMin(m_bounds[0], iminx); in addItem()
112 m_bounds[1] = dtMin(m_bounds[1], iminy); in addItem()
113 m_bounds[2] = dtMax(m_bounds[2], imaxx); in addItem()
114 m_bounds[3] = dtMax(m_bounds[3], imaxy); in addItem()
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/vtk/
H A DvtkAvogadroActor.cxx40 m_bounds[i] = 0.0; in vtkStandardNewMacro()
106 return m_bounds; in GetBounds()
110 m_bounds[0] = center[0] - radius; in GetBounds()
111 m_bounds[1] = center[0] + radius; in GetBounds()
112 m_bounds[2] = center[1] - radius; in GetBounds()
113 m_bounds[3] = center[1] + radius; in GetBounds()
114 m_bounds[4] = center[2] - radius; in GetBounds()
115 m_bounds[5] = center[2] + radius; in GetBounds()
117 return m_bounds; in GetBounds()
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/vtk/
H A DvtkAvogadroActor.cxx40 m_bounds[i] = 0.0; in vtkStandardNewMacro()
106 return m_bounds; in GetBounds()
110 m_bounds[0] = center[0] - radius; in GetBounds()
111 m_bounds[1] = center[0] + radius; in GetBounds()
112 m_bounds[2] = center[1] - radius; in GetBounds()
113 m_bounds[3] = center[1] + radius; in GetBounds()
114 m_bounds[4] = center[2] - radius; in GetBounds()
115 m_bounds[5] = center[2] + radius; in GetBounds()
117 return m_bounds; in GetBounds()
/dports/accessibility/libqaccessibilityclient/libqaccessibilityclient-0.4.1/examples/accessibleapps/
H A Duiview.cpp169 m_bounds = bounds(acc); in setAccessibleObject()
178 return m_bounds.size(); in sizeHint()
184 if (m_bounds.isNull()) in paintEvent()
186 m_image = new QImage(m_bounds.size(), QImage::Format_ARGB32_Premultiplied); in paintEvent()
205 if (m_bounds.isNull()) in grabScreen()
207 Q_ASSERT(m_bounds.left() < m_bounds.right() && m_bounds.top() < m_bounds.bottom()); in grabScreen()
208 …ap::grabWindow(QApplication::desktop()->winId(), m_bounds.x(), m_bounds.y(), m_bounds.width(), m_b… in grabScreen()
243 r.moveTopLeft(r.topLeft() - m_bounds.topLeft()); in drawObject()
/dports/graphics/agg/agg-2.5/include/
H A Dagg_renderer_mclip.h72 const rect_i& bounding_clip_box() const { return m_bounds; } in bounding_clip_box()
73 int bounding_xmin() const { return m_bounds.x1; } in bounding_xmin()
74 int bounding_ymin() const { return m_bounds.y1; } in bounding_ymin()
75 int bounding_xmax() const { return m_bounds.x2; } in bounding_xmax()
76 int bounding_ymax() const { return m_bounds.y2; } in bounding_ymax()
107 m_bounds = m_ren.clip_box(); in reset_clipping()
118 if(cb.x1 < m_bounds.x1) m_bounds.x1 = cb.x1; in add_clip_box()
119 if(cb.y1 < m_bounds.y1) m_bounds.y1 = cb.y1; in add_clip_box()
120 if(cb.x2 > m_bounds.x2) m_bounds.x2 = cb.x2; in add_clip_box()
121 if(cb.y2 > m_bounds.y2) m_bounds.y2 = cb.y2; in add_clip_box()
[all …]
/dports/math/py-matplotlib2/matplotlib-2.2.4/extern/agg24-svn/include/
H A Dagg_renderer_mclip.h67 const rect_i& bounding_clip_box() const { return m_bounds; } in bounding_clip_box()
68 int bounding_xmin() const { return m_bounds.x1; } in bounding_xmin()
69 int bounding_ymin() const { return m_bounds.y1; } in bounding_ymin()
70 int bounding_xmax() const { return m_bounds.x2; } in bounding_xmax()
71 int bounding_ymax() const { return m_bounds.y2; } in bounding_ymax()
102 m_bounds = m_ren.clip_box(); in reset_clipping()
113 if(cb.x1 < m_bounds.x1) m_bounds.x1 = cb.x1; in add_clip_box()
114 if(cb.y1 < m_bounds.y1) m_bounds.y1 = cb.y1; in add_clip_box()
115 if(cb.x2 > m_bounds.x2) m_bounds.x2 = cb.x2; in add_clip_box()
116 if(cb.y2 > m_bounds.y2) m_bounds.y2 = cb.y2; in add_clip_box()
[all …]
/dports/math/py-matplotlib/matplotlib-3.4.3/extern/agg24-svn/include/
H A Dagg_renderer_mclip.h67 const rect_i& bounding_clip_box() const { return m_bounds; } in bounding_clip_box()
68 int bounding_xmin() const { return m_bounds.x1; } in bounding_xmin()
69 int bounding_ymin() const { return m_bounds.y1; } in bounding_ymin()
70 int bounding_xmax() const { return m_bounds.x2; } in bounding_xmax()
71 int bounding_ymax() const { return m_bounds.y2; } in bounding_ymax()
102 m_bounds = m_ren.clip_box(); in reset_clipping()
113 if(cb.x1 < m_bounds.x1) m_bounds.x1 = cb.x1; in add_clip_box()
114 if(cb.y1 < m_bounds.y1) m_bounds.y1 = cb.y1; in add_clip_box()
115 if(cb.x2 > m_bounds.x2) m_bounds.x2 = cb.x2; in add_clip_box()
116 if(cb.y2 > m_bounds.y2) m_bounds.y2 = cb.y2; in add_clip_box()
[all …]
/dports/graphics/mapserver/mapserver-7.6.4/renderers/agg/include/
H A Dagg_renderer_mclip.h67 const rect_i& bounding_clip_box() const { return m_bounds; } in bounding_clip_box()
68 int bounding_xmin() const { return m_bounds.x1; } in bounding_xmin()
69 int bounding_ymin() const { return m_bounds.y1; } in bounding_ymin()
70 int bounding_xmax() const { return m_bounds.x2; } in bounding_xmax()
71 int bounding_ymax() const { return m_bounds.y2; } in bounding_ymax()
102 m_bounds = m_ren.clip_box(); in reset_clipping()
113 if(cb.x1 < m_bounds.x1) m_bounds.x1 = cb.x1; in add_clip_box()
114 if(cb.y1 < m_bounds.y1) m_bounds.y1 = cb.y1; in add_clip_box()
115 if(cb.x2 > m_bounds.x2) m_bounds.x2 = cb.x2; in add_clip_box()
116 if(cb.y2 > m_bounds.y2) m_bounds.y2 = cb.y2; in add_clip_box()
[all …]
/dports/sysutils/fluxengine/fluxengine-61ff48c/dep/agg/include/
H A Dagg_renderer_mclip.h67 const rect_i& bounding_clip_box() const { return m_bounds; } in usage()
68 int bounding_xmin() const { return m_bounds.x1; } in usage()
69 int bounding_ymin() const { return m_bounds.y1; } in usage()
70 int bounding_xmax() const { return m_bounds.x2; } in usage()
71 int bounding_ymax() const { return m_bounds.y2; } in usage()
102 m_bounds = m_ren.clip_box(); in usage()
113 if(cb.x1 < m_bounds.x1) m_bounds.x1 = cb.x1; in usage()
114 if(cb.y1 < m_bounds.y1) m_bounds.y1 = cb.y1; in usage()
115 if(cb.x2 > m_bounds.x2) m_bounds.x2 = cb.x2; in usage()
116 if(cb.y2 > m_bounds.y2) m_bounds.y2 = cb.y2; in usage()
[all …]

12345678910>>...17