Home
last modified time | relevance | path

Searched refs:xRadius (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/dports/textproc/fop/fop-2.6/fop-core/src/test/java/org/apache/fop/render/intermediate/
H A DBorderPainterTestCase.java209 setStartBefore(xRadius, yRadius); in setCornerRadii()
210 setEndBefore(xRadius, yRadius); in setCornerRadii()
211 setEndAfter(xRadius, yRadius); in setCornerRadii()
212 setStartAfter(xRadius, yRadius); in setCornerRadii()
217 startBuilder.setRadiusStart(xRadius); in setStartBefore()
223 endBuilder.setRadiusStart(xRadius); in setEndBefore()
229 endBuilder.setRadiusEnd(xRadius); in setEndAfter()
235 startBuilder.setRadiusEnd(xRadius); in setStartAfter()
528 public final int xRadius; field in BorderPainterTestCase.ClipBackgroundTester.Corner
537 this.xRadius = xRadius; in Corner()
[all …]
/dports/graphics/pixen/Pixen-0.1/
H A DPXEllipseTool.m79 int xRadius = bound.size.width/2, yRadius = bound.size.height/2;
80 if (xRadius < 1) {
81 xRadius = 1;
86 int cx = bound.origin.x + xRadius, cy = bound.origin.y + yRadius;
87 int twoASquared = 2 * xRadius * xRadius;
89 int x = xRadius;
91 int xChange = yRadius * yRadius * (1 - 2*xRadius);
92 int yChange = xRadius * xRadius;
94 int stoppingX = twoBSquared * xRadius;
96 BOOL evenWidth = ((float)xRadius == bound.size.width / 2.0f);
[all …]
/dports/graphics/geos/geos-3.9.1/src/util/
H A DGeometricShapeFactory.cpp130 double xRadius = env->getWidth() / 2.0; in createCircle() local
133 double centreX = env->getMinX() + xRadius; in createCircle()
141 double x = xRadius * cos(ang) + centreX; in createCircle()
156 double xRadius = env->getWidth() / 2.0; in createArc() local
159 double centreX = env->getMinX() + xRadius; in createArc()
173 double x = xRadius * cos(ang) + centreX; in createArc()
186 double xRadius = env->getWidth() / 2.0; in createArcPolygon() local
189 double centreX = env->getMinX() + xRadius; in createArcPolygon()
204 double x = xRadius * cos(ang) + centreX; in createArcPolygon()
/dports/cad/veroroute/VeroRoute/Src/
H A DGPainter.h163 virtual void drawRoundedRect(int x, int y, int w, int h, qreal xRadius, qreal yRadius) in drawRoundedRect()
165 if ( !m_pStream ) return QPainter::drawRoundedRect(x, y, w, h, xRadius, yRadius); in drawRoundedRect()
167 xRadius = std::min(xRadius, 0.5 * w); in drawRoundedRect()
169 const auto xDiameter = xRadius + xRadius; in drawRoundedRect()
172 …drawLine(static_cast<int>(x+w-xRadius), static_cast<int>(y), static_cast<int>(x+xRadius), static_c… in drawRoundedRect()
176 …drawLine(static_cast<int>(x+xRadius), static_cast<int>(y+h), static_cast<int>(x+w-xRadius), static… in drawRoundedRect()
/dports/science/cdk/cdk-cdk-2.3/display/renderextra/src/main/java/org/openscience/cdk/renderer/generators/
H A DLonePairGenerator.java71 double xRadius = point.x; in generate() local
76 xRadius += modelAtomRadius; in generate()
79 xRadius -= modelAtomRadius; in generate()
88 …group.add(new OvalElement(xRadius + diffx, yRadius + diffy, modelPointRadius, true, RADICAL_COLOR)… in generate()
89 …group.add(new OvalElement(xRadius - diffx, yRadius - diffy, modelPointRadius, true, RADICAL_COLOR)… in generate()
H A DRadicalGenerator.java72 double xRadius = point.x; in generate() local
75 xRadius += ATOM_RADIUS * 4 + singleElectronsPerAtom.get(atom) * modelSpacing; in generate()
77 xRadius -= ATOM_RADIUS * 4 + singleElectronsPerAtom.get(atom) * modelSpacing; in generate()
84 group.add(new OvalElement(xRadius, yRadius, modelRadius, true, RADICAL_COLOR)); in generate()
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/vendor/bacon/bacon-qr-code/src/Renderer/Path/
H A DEllipticArc.php13 private $xRadius; variable in BaconQrCode\\Renderer\\Path\\EllipticArc
46 float $xRadius, argument
54 $this->xRadius = abs($xRadius);
65 return $this->xRadius;
104 $this->xRadius,
129 if ($this->xRadius < self::ZERO_TOLERANCE || $this->yRadius < self::ZERO_TOLERANCE) {
184 $rX = $this->xRadius;
/dports/www/typo3-11/typo3_src-11.5.7/vendor/bacon/bacon-qr-code/src/Renderer/Path/
H A DEllipticArc.php13 private $xRadius; variable in BaconQrCode\\Renderer\\Path\\EllipticArc
46 float $xRadius, argument
54 $this->xRadius = abs($xRadius);
65 return $this->xRadius;
104 $this->xRadius,
129 if ($this->xRadius < self::ZERO_TOLERANCE || $this->yRadius < self::ZERO_TOLERANCE) {
184 $rX = $this->xRadius;
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/bacon/bacon-qr-code/src/Renderer/Path/
H A DEllipticArc.php13 private $xRadius; variable in BaconQrCode\\Renderer\\Path\\EllipticArc
46 float $xRadius, argument
54 $this->xRadius = abs($xRadius);
65 return $this->xRadius;
104 $this->xRadius,
129 if ($this->xRadius < self::ZERO_TOLERANCE || $this->yRadius < self::ZERO_TOLERANCE) {
184 $rX = $this->xRadius;
/dports/math/vtk9/VTK-9.1.0/Filters/Sources/Testing/Cxx/
H A DTestParametricFunctionSource.cxx41 double xRadius = randomSequence->GetValue(); in TestParametricFunctionSource() local
42 parametricEllipsoid->SetXRadius(xRadius); in TestParametricFunctionSource()
67 xRadius = randomSequence->GetValue(); in TestParametricFunctionSource()
68 parametricEllipsoid->SetXRadius(xRadius); in TestParametricFunctionSource()
/dports/math/vtk8/VTK-8.2.0/Filters/Sources/Testing/Cxx/
H A DTestParametricFunctionSource.cxx41 double xRadius = randomSequence->GetValue(); in TestParametricFunctionSource() local
42 parametricEllipsoid->SetXRadius(xRadius); in TestParametricFunctionSource()
67 xRadius = randomSequence->GetValue(); in TestParametricFunctionSource()
68 parametricEllipsoid->SetXRadius(xRadius); in TestParametricFunctionSource()
/dports/math/vtk6/VTK-6.2.0/Filters/Sources/Testing/Cxx/
H A DTestParametricFunctionSource.cxx41 double xRadius = randomSequence->GetValue(); in TestParametricFunctionSource() local
42 parametricEllipsoid->SetXRadius(xRadius); in TestParametricFunctionSource()
67 xRadius = randomSequence->GetValue(); in TestParametricFunctionSource()
68 parametricEllipsoid->SetXRadius(xRadius); in TestParametricFunctionSource()
/dports/graphics/krita/krita-4.4.8/plugins/extensions/waveletdecompose/
H A Dkis_wavelet_kernel.cpp99 qreal xRadius, qreal yRadius, in applyWavelet() argument
105 if (xRadius > 0.0 && yRadius > 0.0) { in applyWavelet()
109 KisConvolutionKernelSP kernelHoriz = KisWaveletKernel::createHorizontalKernel(xRadius); in applyWavelet()
127 } else if (xRadius > 0.0) { in applyWavelet()
132 KisConvolutionKernelSP kernelHoriz = KisWaveletKernel::createHorizontalKernel(xRadius); in applyWavelet()
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/util/
H A DGeometricShapeFactory.java215 double xRadius = env.getWidth() / 2.0; in createEllipse() local
218 double centreX = env.getMinX() + xRadius; in createEllipse()
225 double x = xRadius * Math.cos(ang) + centreX; in createEllipse()
315 double xRadius = env.getWidth() / 2.0; in createArc() local
318 double centreX = env.getMinX() + xRadius; in createArc()
330 double x = xRadius * Math.cos(ang) + centreX; in createArc()
349 double xRadius = env.getWidth() / 2.0; in createArcPolygon() local
352 double centreX = env.getMinX() + xRadius; in createArcPolygon()
369 double x = xRadius * Math.cos(ang) + centreX; in createArcPolygon()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/gpu/
H A DGrOvalRenderer.cpp953 (SK_ScalarHalf*xRadius > yRadius || SK_ScalarHalf*yRadius > xRadius)) {
959 scaledStroke.fY*(xRadius*xRadius) < (scaledStroke.fX*scaledStroke.fX)*yRadius) {
969 xRadius += scaledStroke.fX;
976 xRadius,
1040 SkScalar xRadius = geom.fXRadius;
1155 (SK_ScalarHalf*xRadius > yRadius || SK_ScalarHalf*yRadius > xRadius)) {
1161 strokeWidth*(xRadius*xRadius) < (strokeWidth*strokeWidth)*yRadius) {
1171 xRadius += strokeWidth;
1191 xRadius,
1245 SkScalar xRadius = geom.fXRadius;
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/CodeGenObjC/
H A Darc-linetable-autorelease.m22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)…
28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius];

12345678910>>...14