Home
last modified time | relevance | path

Searched refs:scaleDown (Results 1 – 25 of 401) sorted by relevance

12345678910>>...17

/dports/devel/love08/love-0.8.0/src/modules/physics/box2d/
H A DBody.cpp42 def.position = Physics::scaleDown(p); in Body()
177 body->ApplyLinearImpulse(Physics::scaleDown(b2Vec2(jx, jy)), Physics::scaleDown(b2Vec2(rx, ry))); in applyLinearImpulse()
183 body->ApplyAngularImpulse(Physics::scaleDown(Physics::scaleDown(impulse))); in applyAngularImpulse()
189 body->ApplyTorque(Physics::scaleDown(Physics::scaleDown(t))); in applyTorque()
194 body->ApplyForce(Physics::scaleDown(b2Vec2(fx, fy)), Physics::scaleDown(b2Vec2(rx, ry))); in applyForce()
199 body->ApplyForceToCenter(Physics::scaleDown(b2Vec2(fx, fy))); in applyForce()
204 body->SetTransform(Physics::scaleDown(b2Vec2(x, getY())), getAngle()); in setX()
214 body->SetLinearVelocity(Physics::scaleDown(b2Vec2(x, y))); in setLinearVelocity()
250 massData.center = Physics::scaleDown(b2Vec2(x, y)); in setMassData()
252 massData.I = Physics::scaleDown(Physics::scaleDown(i)); in setMassData()
[all …]
H A DShape.cpp91 b2Transform transform(Physics::scaleDown(b2Vec2(x, y)), b2Rot(r)); in testPoint()
92 return shape->TestPoint(transform, Physics::scaleDown(point)); in testPoint()
97 float p1x = Physics::scaleDown((float)luaL_checknumber(L, 1)); in rayCast()
98 float p1y = Physics::scaleDown((float)luaL_checknumber(L, 2)); in rayCast()
99 float p2x = Physics::scaleDown((float)luaL_checknumber(L, 3)); in rayCast()
100 float p2y = Physics::scaleDown((float)luaL_checknumber(L, 4)); in rayCast()
102 float x = Physics::scaleDown((float)luaL_checknumber(L, 6)); in rayCast()
103 float y = Physics::scaleDown((float)luaL_checknumber(L, 7)); in rayCast()
122 float x = Physics::scaleDown((float)luaL_checknumber(L, 1)); in computeAABB()
123 float y = Physics::scaleDown((float)luaL_checknumber(L, 2)); in computeAABB()
H A DPrismaticJoint.cpp39 def.Initialize(body1->body, body2->body, Physics::scaleDown(b2Vec2(xA,yA)), b2Vec2(ax,ay)); in PrismaticJoint()
40 def.localAnchorB = body2->body->GetLocalPoint(Physics::scaleDown(b2Vec2(xB, yB))); in PrismaticJoint()
74 joint->SetMaxMotorForce(Physics::scaleDown(force)); in setMaxMotorForce()
79 joint->SetMotorSpeed(Physics::scaleDown(speed)); in setMotorSpeed()
109 joint->SetLimits(joint->GetLowerLimit(), Physics::scaleDown(limit)); in setUpperLimit()
114 joint->SetLimits(Physics::scaleDown(limit), joint->GetUpperLimit()); in setLowerLimit()
119 joint->SetLimits(Physics::scaleDown(lower), Physics::scaleDown(upper)); in setLimits()
H A DPhysics.cpp64 s->m_p = Physics::scaleDown(b2Vec2(x, y)); in newCircleShape()
65 s->m_radius = Physics::scaleDown(radius); in newCircleShape()
82 …s->SetAsBox(Physics::scaleDown(w/2.0f), Physics::scaleDown(h/2.0f), Physics::scaleDown(b2Vec2(x, y… in newRectangleShape()
89 s->Set(Physics::scaleDown(b2Vec2(x1, y1)), Physics::scaleDown(b2Vec2(x2, y2))); in newEdgeShape()
115 vecs[i] = Physics::scaleDown(b2Vec2(x, y)); in newPolygonShape()
176 vecs[i] = Physics::scaleDown(vecs[i]); in newChainShape()
296 float Physics::scaleDown(float f) in scaleDown() function in love::physics::box2d::Physics
306 b2Vec2 Physics::scaleDown(const b2Vec2 & v) in scaleDown() function in love::physics::box2d::Physics
309 scaleDown(t.x, t.y); in scaleDown()
323 t.lowerBound = scaleDown(aabb.lowerBound); in scaleDown()
[all …]
H A DRopeJoint.cpp40 …body1->getLocalPoint(Physics::scaleDown(x1), Physics::scaleDown(y1), def.localAnchorA.x, def.local… in RopeJoint()
41 …body2->getLocalPoint(Physics::scaleDown(x2), Physics::scaleDown(y2), def.localAnchorB.x, def.local… in RopeJoint()
42 def.maxLength = Physics::scaleDown(maxLength); in RopeJoint()
/dports/devel/love/love-11.3/src/modules/physics/box2d/
H A DBody.cpp47 def.position = Physics::scaleDown(p); in Body()
178 …body->ApplyLinearImpulse(Physics::scaleDown(b2Vec2(jx, jy)), Physics::scaleDown(b2Vec2(rx, ry)), w… in applyLinearImpulse()
184 body->ApplyAngularImpulse(Physics::scaleDown(Physics::scaleDown(impulse)), wake); in applyAngularImpulse()
190 body->ApplyTorque(Physics::scaleDown(Physics::scaleDown(t)), wake); in applyTorque()
195 body->ApplyForce(Physics::scaleDown(b2Vec2(fx, fy)), Physics::scaleDown(b2Vec2(rx, ry)), wake); in applyForce()
200 body->ApplyForceToCenter(Physics::scaleDown(b2Vec2(fx, fy)), wake); in applyForce()
205 body->SetTransform(Physics::scaleDown(b2Vec2(x, getY())), getAngle()); in setX()
215 body->SetLinearVelocity(Physics::scaleDown(b2Vec2(x, y))); in setLinearVelocity()
251 massData.center = Physics::scaleDown(b2Vec2(x, y)); in setMassData()
253 massData.I = Physics::scaleDown(Physics::scaleDown(i)); in setMassData()
[all …]
H A DShape.cpp87 b2Transform transform(Physics::scaleDown(b2Vec2(x, y)), b2Rot(r)); in testPoint()
88 return shape->TestPoint(transform, Physics::scaleDown(point)); in testPoint()
93 float p1x = Physics::scaleDown((float)luaL_checknumber(L, 1)); in rayCast()
94 float p1y = Physics::scaleDown((float)luaL_checknumber(L, 2)); in rayCast()
95 float p2x = Physics::scaleDown((float)luaL_checknumber(L, 3)); in rayCast()
96 float p2y = Physics::scaleDown((float)luaL_checknumber(L, 4)); in rayCast()
98 float x = Physics::scaleDown((float)luaL_checknumber(L, 6)); in rayCast()
99 float y = Physics::scaleDown((float)luaL_checknumber(L, 7)); in rayCast()
118 float x = Physics::scaleDown((float)luaL_checknumber(L, 1)); in computeAABB()
119 float y = Physics::scaleDown((float)luaL_checknumber(L, 2)); in computeAABB()
H A DRopeJoint.cpp46 def.localAnchorA.x = Physics::scaleDown(x1); in RopeJoint()
47 def.localAnchorA.y = Physics::scaleDown(y1); in RopeJoint()
48 def.localAnchorB.x = Physics::scaleDown(x2); in RopeJoint()
49 def.localAnchorB.y = Physics::scaleDown(y2); in RopeJoint()
50 def.maxLength = Physics::scaleDown(maxLength); in RopeJoint()
66 joint->SetMaxLength(Physics::scaleDown(maxLength)); in setMaxLength()
H A DPhysics.cpp64 s->m_p = Physics::scaleDown(b2Vec2(x, y)); in newCircleShape()
65 s->m_radius = Physics::scaleDown(radius); in newCircleShape()
82 …s->SetAsBox(Physics::scaleDown(w/2.0f), Physics::scaleDown(h/2.0f), Physics::scaleDown(b2Vec2(x, y… in newRectangleShape()
89 s->Set(Physics::scaleDown(b2Vec2(x1, y1)), Physics::scaleDown(b2Vec2(x2, y2))); in newEdgeShape()
122 vecs[i] = Physics::scaleDown(b2Vec2(x, y)); in newPolygonShape()
337 void Physics::scaleDown(float &x, float &y) in scaleDown() function in love::physics::box2d::Physics
349 float Physics::scaleDown(float f) in scaleDown() function in love::physics::box2d::Physics
359 b2Vec2 Physics::scaleDown(const b2Vec2 &v) in scaleDown() function in love::physics::box2d::Physics
362 scaleDown(t.x, t.y); in scaleDown()
376 t.lowerBound = scaleDown(aabb.lowerBound); in scaleDown()
[all …]
/dports/devel/love10/love-0.10.2/src/modules/physics/box2d/
H A DBody.cpp48 def.position = Physics::scaleDown(p); in Body()
186 …body->ApplyLinearImpulse(Physics::scaleDown(b2Vec2(jx, jy)), Physics::scaleDown(b2Vec2(rx, ry)), w… in applyLinearImpulse()
192 body->ApplyAngularImpulse(Physics::scaleDown(Physics::scaleDown(impulse)), wake); in applyAngularImpulse()
198 body->ApplyTorque(Physics::scaleDown(Physics::scaleDown(t)), wake); in applyTorque()
203 body->ApplyForce(Physics::scaleDown(b2Vec2(fx, fy)), Physics::scaleDown(b2Vec2(rx, ry)), wake); in applyForce()
208 body->ApplyForceToCenter(Physics::scaleDown(b2Vec2(fx, fy)), wake); in applyForce()
213 body->SetTransform(Physics::scaleDown(b2Vec2(x, getY())), getAngle()); in setX()
223 body->SetLinearVelocity(Physics::scaleDown(b2Vec2(x, y))); in setLinearVelocity()
259 massData.center = Physics::scaleDown(b2Vec2(x, y)); in setMassData()
261 massData.I = Physics::scaleDown(Physics::scaleDown(i)); in setMassData()
[all …]
H A DShape.cpp94 b2Transform transform(Physics::scaleDown(b2Vec2(x, y)), b2Rot(r)); in testPoint()
95 return shape->TestPoint(transform, Physics::scaleDown(point)); in testPoint()
100 float p1x = Physics::scaleDown((float)luaL_checknumber(L, 1)); in rayCast()
101 float p1y = Physics::scaleDown((float)luaL_checknumber(L, 2)); in rayCast()
102 float p2x = Physics::scaleDown((float)luaL_checknumber(L, 3)); in rayCast()
103 float p2y = Physics::scaleDown((float)luaL_checknumber(L, 4)); in rayCast()
105 float x = Physics::scaleDown((float)luaL_checknumber(L, 6)); in rayCast()
106 float y = Physics::scaleDown((float)luaL_checknumber(L, 7)); in rayCast()
125 float x = Physics::scaleDown((float)luaL_checknumber(L, 1)); in computeAABB()
126 float y = Physics::scaleDown((float)luaL_checknumber(L, 2)); in computeAABB()
H A DPhysics.cpp64 s->m_p = Physics::scaleDown(b2Vec2(x, y)); in newCircleShape()
65 s->m_radius = Physics::scaleDown(radius); in newCircleShape()
82 …s->SetAsBox(Physics::scaleDown(w/2.0f), Physics::scaleDown(h/2.0f), Physics::scaleDown(b2Vec2(x, y… in newRectangleShape()
89 s->Set(Physics::scaleDown(b2Vec2(x1, y1)), Physics::scaleDown(b2Vec2(x2, y2))); in newEdgeShape()
122 vecs[i] = Physics::scaleDown(b2Vec2(x, y)); in newPolygonShape()
337 void Physics::scaleDown(float &x, float &y) in scaleDown() function in love::physics::box2d::Physics
349 float Physics::scaleDown(float f) in scaleDown() function in love::physics::box2d::Physics
359 b2Vec2 Physics::scaleDown(const b2Vec2 &v) in scaleDown() function in love::physics::box2d::Physics
362 scaleDown(t.x, t.y); in scaleDown()
376 t.lowerBound = scaleDown(aabb.lowerBound); in scaleDown()
[all …]
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/model/ImageEditor/
H A DContrastMaskOperation.java118 PlanarImage scaleDown; in setFront() local
134 scaleDown = JAI.create("Affine", pb, layoutHints); in setFront()
136 scaleDown = back; in setFront()
139 if (scaleDown.getColorModel().getNumComponents() == 3) { in setFront()
141 pb.addSource(scaleDown); in setFront()
143scaleDown = JAI.create("BandCombine", pb, JAIContext.noCacheHint); // Desaturate, single banded in setFront()
146 scaleDown = JAI.create("Not", scaleDown, JAIContext.noCacheHint); // Invert in setFront()
147 LookupTableJAI table = computeGammaTable(scaleDown.getSampleModel().getDataType()); in setFront()
149 pb.addSource(scaleDown); in setFront()
165 … pb.add(AffineTransform.getScaleInstance(back.getWidth() / (double) scaleDown.getWidth(), in setFront()
[all …]
/dports/devel/love07/love-HEAD/src/modules/physics/box2d/
H A DBody.cpp38 def.position = world->scaleDown(p); in Body()
126 body->ApplyImpulse(b2Vec2(jx, jy), world->scaleDown(b2Vec2(rx, ry))); in applyImpulse()
136 body->ApplyForce(b2Vec2(fx, fy), world->scaleDown(b2Vec2(rx, ry))); in applyForce()
146 body->SetXForm(world->scaleDown(b2Vec2(x, getY())), getAngle()); in setX()
151 body->SetXForm(world->scaleDown(b2Vec2(getX(), y)), getAngle()); in setY()
156 body->SetLinearVelocity(world->scaleDown(b2Vec2(x, y))); in setLinearVelocity()
171 body->SetXForm(world->scaleDown(b2Vec2(x, y)), body->GetAngle()); in setPosition()
192 massData.center = world->scaleDown(b2Vec2(x, y)); in setMass()
209 b2Vec2 v = world->scaleUp(body->GetWorldPoint(world->scaleDown(b2Vec2(x, y)))); in getWorldPoint()
216 b2Vec2 v = world->scaleUp(body->GetWorldVector(world->scaleDown(b2Vec2(x, y)))); in getWorldVector()
[all …]
H A DWorld.cpp101 world = new b2World(scaleDown(aabb), b2Vec2(0,0), true); in World()
108 world = new b2World(scaleDown(aabb), scaleDown(gravity), sleep); in World()
183 world->SetGravity(scaleDown(b2Vec2(x, y))); in setGravity()
224 void World::scaleDown(float & x, float & y) in scaleDown() function in love::physics::box2d::World
236 float World::scaleDown(float f) in scaleDown() function in love::physics::box2d::World
246 b2Vec2 World::scaleDown(const b2Vec2 & v) in scaleDown() function in love::physics::box2d::World
249 scaleDown(t.x, t.y); in scaleDown()
260 b2AABB World::scaleDown(const b2AABB & aabb) in scaleDown() function in love::physics::box2d::World
263 t.lowerBound = scaleDown(aabb.lowerBound); in scaleDown()
264 t.upperBound = scaleDown(aabb.upperBound); in scaleDown()
H A DPrismaticJoint.cpp38 def.Initialize(body1->body, body2->body, world->scaleDown(b2Vec2(x,y)), b2Vec2(ax,ay)); in PrismaticJoint()
53 return world->scaleDown(joint->GetJointTranslation()); in getJointTranslation()
58 return world->scaleDown(joint->GetJointSpeed()); in getJointSpeed()
108 joint->SetLimits(joint->GetLowerLimit(), world->scaleDown(limit)); in setUpperLimit()
113 joint->SetLimits(world->scaleDown(limit), joint->GetUpperLimit()); in setLowerLimit()
118 joint->SetLimits(world->scaleDown(lower), world->scaleDown(upper)); in setLimits()
H A DPulleyJoint.cpp37 …def.Initialize(body1->body, body2->body, world->scaleDown(groundAnchor1), world->scaleDown(groundA… in PulleyJoint()
38 world->scaleDown(anchor1), world->scaleDown(anchor2), ratio); in PulleyJoint()
64 …joint->m_maxLength1 = b2Min(world->scaleDown(maxlength1), joint->m_constant - joint->m_ratio * b2_… in setMaxLengths()
69 …joint->m_maxLength2 = b2Min(world->scaleDown(maxlength2), (joint->m_constant - b2_minPulleyLength)… in setMaxLengths()
82 joint->m_constant = world->scaleDown(constant); in setConstant()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbeddedFramePeer.java149 checkIfOnNewScreen(toGlobal(new Rectangle(scaleDown(xe.get_x()), in handleConfigureNotifyEvent()
150 scaleDown(xe.get_y()), in handleConfigureNotifyEvent()
151 scaleDown(xe.get_width()), in handleConfigureNotifyEvent()
157 x = scaleDown(xe.get_x()); in handleConfigureNotifyEvent()
158 y = scaleDown(xe.get_y()); in handleConfigureNotifyEvent()
159 width = scaleDown(xe.get_width()); in handleConfigureNotifyEvent()
160 height = scaleDown(xe.get_height()); in handleConfigureNotifyEvent()
218 x = scaleDown(attr.get_x()); in getBoundsPrivate()
219 y = scaleDown(attr.get_y()); in getBoundsPrivate()
220 w = scaleDown(attr.get_width()); in getBoundsPrivate()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbeddedFramePeer.java149 checkIfOnNewScreen(toGlobal(new Rectangle(scaleDown(xe.get_x()), in handleConfigureNotifyEvent()
150 scaleDown(xe.get_y()), in handleConfigureNotifyEvent()
151 scaleDown(xe.get_width()), in handleConfigureNotifyEvent()
157 x = scaleDown(xe.get_x()); in handleConfigureNotifyEvent()
158 y = scaleDown(xe.get_y()); in handleConfigureNotifyEvent()
159 width = scaleDown(xe.get_width()); in handleConfigureNotifyEvent()
160 height = scaleDown(xe.get_height()); in handleConfigureNotifyEvent()
218 x = scaleDown(attr.get_x()); in getBoundsPrivate()
219 y = scaleDown(attr.get_y()); in getBoundsPrivate()
220 w = scaleDown(attr.get_width()); in getBoundsPrivate()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbeddedFramePeer.java149 checkIfOnNewScreen(toGlobal(new Rectangle(scaleDown(xe.get_x()), in handleConfigureNotifyEvent()
150 scaleDown(xe.get_y()), in handleConfigureNotifyEvent()
151 scaleDown(xe.get_width()), in handleConfigureNotifyEvent()
157 x = scaleDown(xe.get_x()); in handleConfigureNotifyEvent()
158 y = scaleDown(xe.get_y()); in handleConfigureNotifyEvent()
159 width = scaleDown(xe.get_width()); in handleConfigureNotifyEvent()
160 height = scaleDown(xe.get_height()); in handleConfigureNotifyEvent()
218 x = scaleDown(attr.get_x()); in getBoundsPrivate()
219 y = scaleDown(attr.get_y()); in getBoundsPrivate()
220 w = scaleDown(attr.get_width()); in getBoundsPrivate()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbeddedFramePeer.java149 checkIfOnNewScreen(toGlobal(new Rectangle(scaleDown(xe.get_x()), in handleConfigureNotifyEvent()
150 scaleDown(xe.get_y()), in handleConfigureNotifyEvent()
151 scaleDown(xe.get_width()), in handleConfigureNotifyEvent()
157 x = scaleDown(xe.get_x()); in handleConfigureNotifyEvent()
158 y = scaleDown(xe.get_y()); in handleConfigureNotifyEvent()
159 width = scaleDown(xe.get_width()); in handleConfigureNotifyEvent()
160 height = scaleDown(xe.get_height()); in handleConfigureNotifyEvent()
218 x = scaleDown(attr.get_x()); in getBoundsPrivate()
219 y = scaleDown(attr.get_y()); in getBoundsPrivate()
220 w = scaleDown(attr.get_width()); in getBoundsPrivate()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbeddedFramePeer.java149 checkIfOnNewScreen(toGlobal(new Rectangle(scaleDown(xe.get_x()), in handleConfigureNotifyEvent()
150 scaleDown(xe.get_y()), in handleConfigureNotifyEvent()
151 scaleDown(xe.get_width()), in handleConfigureNotifyEvent()
157 x = scaleDown(xe.get_x()); in handleConfigureNotifyEvent()
158 y = scaleDown(xe.get_y()); in handleConfigureNotifyEvent()
159 width = scaleDown(xe.get_width()); in handleConfigureNotifyEvent()
160 height = scaleDown(xe.get_height()); in handleConfigureNotifyEvent()
218 x = scaleDown(attr.get_x()); in getBoundsPrivate()
219 y = scaleDown(attr.get_y()); in getBoundsPrivate()
220 w = scaleDown(attr.get_width()); in getBoundsPrivate()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbeddedFramePeer.java149 checkIfOnNewScreen(toGlobal(new Rectangle(scaleDown(xe.get_x()), in handleConfigureNotifyEvent()
150 scaleDown(xe.get_y()), in handleConfigureNotifyEvent()
151 scaleDown(xe.get_width()), in handleConfigureNotifyEvent()
157 x = scaleDown(xe.get_x()); in handleConfigureNotifyEvent()
158 y = scaleDown(xe.get_y()); in handleConfigureNotifyEvent()
159 width = scaleDown(xe.get_width()); in handleConfigureNotifyEvent()
160 height = scaleDown(xe.get_height()); in handleConfigureNotifyEvent()
218 x = scaleDown(attr.get_x()); in getBoundsPrivate()
219 y = scaleDown(attr.get_y()); in getBoundsPrivate()
220 w = scaleDown(attr.get_width()); in getBoundsPrivate()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbeddedFramePeer.java149 checkIfOnNewScreen(toGlobal(new Rectangle(scaleDown(xe.get_x()), in handleConfigureNotifyEvent()
150 scaleDown(xe.get_y()), in handleConfigureNotifyEvent()
151 scaleDown(xe.get_width()), in handleConfigureNotifyEvent()
157 x = scaleDown(xe.get_x()); in handleConfigureNotifyEvent()
158 y = scaleDown(xe.get_y()); in handleConfigureNotifyEvent()
159 width = scaleDown(xe.get_width()); in handleConfigureNotifyEvent()
160 height = scaleDown(xe.get_height()); in handleConfigureNotifyEvent()
218 x = scaleDown(attr.get_x()); in getBoundsPrivate()
219 y = scaleDown(attr.get_y()); in getBoundsPrivate()
220 w = scaleDown(attr.get_width()); in getBoundsPrivate()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbeddedFramePeer.java149 checkIfOnNewScreen(toGlobal(new Rectangle(scaleDown(xe.get_x()), in handleConfigureNotifyEvent()
150 scaleDown(xe.get_y()), in handleConfigureNotifyEvent()
151 scaleDown(xe.get_width()), in handleConfigureNotifyEvent()
157 x = scaleDown(xe.get_x()); in handleConfigureNotifyEvent()
158 y = scaleDown(xe.get_y()); in handleConfigureNotifyEvent()
159 width = scaleDown(xe.get_width()); in handleConfigureNotifyEvent()
160 height = scaleDown(xe.get_height()); in handleConfigureNotifyEvent()
218 x = scaleDown(attr.get_x()); in getBoundsPrivate()
219 y = scaleDown(attr.get_y()); in getBoundsPrivate()
220 w = scaleDown(attr.get_width()); in getBoundsPrivate()
[all …]

12345678910>>...17