/third_party/skia/modules/canvaskit/htmlcanvas/ |
D | path2d.js | 6 ellipse(skpath, x, y, radius, radius, 0, startAngle, endAngle, ccw); 60 function ellipse(skpath, x, y, radiusX, radiusY, rotation, function 186 this.ellipse = function(x, y, radiusX, radiusY, rotation, method in Path2D 188 ellipse(this._path, x, y, radiusX, radiusY, rotation,
|
D | canvas2dcontext.js | 593 this.ellipse = function(x, y, radiusX, radiusY, rotation, method in CanvasRenderingContext2D 595 ellipse(this._currentPath, x, y, radiusX, radiusY, rotation,
|
/third_party/skia/modules/canvaskit/tests/ |
D | canvas2d.spec.js | 308 ctx.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI) 327 ctx.ellipse(155, 100, 10, 15, Math.PI/8, 100.1 * Math.PI, Math.PI, true); 330 ctx.ellipse(180, 100, 10, 15, Math.PI/8, Math.PI, 100.1 * Math.PI, true); 427 ctx.ellipse(10, 290, 30, 30, 0, 0, Math.PI * 2); 430 ctx.ellipse(10, 290, 30, 60, 0, 0, Math.PI * 2); 435 ctx.ellipse(10, 290, 30, 90, 0, 0, Math.PI * 2); 841 path.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI)
|
/third_party/skia/src/gpu/ops/ |
D | GrOvalOpFactory.cpp | 1830 const SkRect& ellipse, in Make() argument 1834 params.fCenter = SkPoint::Make(ellipse.centerX(), ellipse.centerY()); in Make() 1836 SkScalar ellipseXRadius = SkScalarHalf(ellipse.width()); in Make() 1837 SkScalar ellipseYRadius = SkScalarHalf(ellipse.height()); in Make() 1999 for (const auto& ellipse : fEllipses) { in onPrepareDraws() local 2000 GrVertexColor color(ellipse.fColor, fWideColor); in onPrepareDraws() 2001 SkScalar xRadius = ellipse.fXRadius; in onPrepareDraws() 2002 SkScalar yRadius = ellipse.fYRadius; in onPrepareDraws() 2008 SkScalarInvert(ellipse.fInnerXRadius), in onPrepareDraws() 2009 SkScalarInvert(ellipse.fInnerYRadius) in onPrepareDraws() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | intersectionsOfLargeUnions.types | 27 …otion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "f… 59 …otion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "f… 72 …otion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "f…
|
D | intersectionsOfLargeUnions2.types | 41 …otion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "f… 73 …otion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "f… 86 …otion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "f…
|
/third_party/skia/src/svg/ |
D | SkSVGDevice.cpp | 877 AutoElement ellipse("ellipse", this, fResourceBucket.get(), MxCp(this), paint); in drawOval() local 878 ellipse.addAttribute("cx", oval.centerX()); in drawOval() 879 ellipse.addAttribute("cy", oval.centerY()); in drawOval() 880 ellipse.addAttribute("rx", oval.width() / 2); in drawOval() 881 ellipse.addAttribute("ry", oval.height() / 2); in drawOval()
|
/third_party/libinput/doc/user/ |
D | touchpads.rst | 107 provide an ellipse and the orientation of the ellipse for each touch point. 198 laptops for a number of years. These touchpad shaped in an ellipse or
|
D | touchpad-pressure.rst | 54 the size of the touch ellipse. While the kernel documentation specifies how
|
D | touchpad-thumb-detection.rst | 35 thumb detection based on the size of the touch ellipse. This works similar to
|
D | palm-detection.rst | 69 palm detection based on the size of the touch ellipse. This works similar to
|
/third_party/skia/modules/pathkit/tests/ |
D | path2d.spec.js | 32 secondPath.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI, false);
|
/third_party/skia/site/docs/user/modules/ |
D | pathkit.md | 535 #### `ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw=false)` 537 **x, y** - `Number`, The coordinates of the center of the ellipse. <br> 539 **rotation** - `Number`, The rotation in radians of this ellipse. <br> 542 optional argument specifying if the ellipse should be drawn counter-clockwise 545 Adds the described ellipse to `this` then returns `this` for chaining purposes. 547 [Path2D.ellipse](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/ellipse)
|
/third_party/skia/modules/pathkit/ |
D | externs.js | 98 PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle,… method in PathKit.SkPath
|
D | chaining.js | 97 …PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle… method in PathKit.SkPath
|
/third_party/skia/modules/canvaskit/ |
D | externs.js | 1098 CanvasRenderingContext2D.prototype.ellipse = function() {}; method in CanvasRenderingContext2D 1133 Path2D.prototype.ellipse = function() {}; method in Path2D
|
/third_party/skia/modules/pathkit/perf/ |
D | path.bench.js | 29 secondPath.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI, false);
|
/third_party/skia/src/gpu/ |
D | GrFragmentProcessor.cpp | 797 SkV4 ellipse = {center.fX, center.fY, invRXSqd, invRYSqd}; in Ellipse() local 803 "ellipse", ellipse, in Ellipse()
|
/third_party/skia/tools/svg/ |
D | svgs.txt | 199 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-ellipse-01-t.svg 200 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-ellipse-02-t.svg 201 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-ellipse-03-f.svg
|
/third_party/typescript/tests/lib/ |
D | react.d.ts | 2258 ellipse: SVGFactory; property 2491 ellipse: React.SVGProps; property
|
D | react16.d.ts | 2219 ellipse: SVGFactory; 2644 ellipse: React.SVGProps<SVGEllipseElement>;
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_window_rectangles.txt | 722 of an stair-stepped approximate circle or ellipse can be formed
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_window_rectangles.txt | 722 of an stair-stepped approximate circle or ellipse can be formed
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_path_rendering.txt | 1978 a 2D (x,y) center position /c/, a horizontal ellipse radius /rh/, 1979 a vertical ellipse radius /rv/, a counterclockwise angle (in radians) 1980 of an ellipse with respect to the x-axis /phi/, /theta1/ is the angle 1984 is the complete ellipse's major axis while the smaller of the two 1985 is the complete ellipse's minor axis. 2010 space coordinate system to the x-axis of the axis-aligned ellipse 2033 (basically, the ellipse is not big enough to reach from (x1,y1) 2034 to (x2,y2), then the ellipse is scaled up uniformly until there 2035 is exactly one solution (until the ellipse is just big enough)
|
/third_party/openGLES/extensions/NV/ |
D | NV_path_rendering.txt | 1978 a 2D (x,y) center position /c/, a horizontal ellipse radius /rh/, 1979 a vertical ellipse radius /rv/, a counterclockwise angle (in radians) 1980 of an ellipse with respect to the x-axis /phi/, /theta1/ is the angle 1984 is the complete ellipse's major axis while the smaller of the two 1985 is the complete ellipse's minor axis. 2010 space coordinate system to the x-axis of the axis-aligned ellipse 2033 (basically, the ellipse is not big enough to reach from (x1,y1) 2034 to (x2,y2), then the ellipse is scaled up uniformly until there 2035 is exactly one solution (until the ellipse is just big enough)
|