/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-js/ |
H A D | js-components-svg-common-attributes.md | 16 …-linejoin | [bevel \| miter \| round] | miter | 否 | 进行描边时在路径的拐角处使用的形状。<br/>bev…
|
H A D | js-components-svg-animatetransform.md | 164 <path stroke="black" fill="none" stroke-linejoin="miter" stroke-miterlimit="1" id="p2"
|
H A D | js-components-canvas-canvasrenderingcontext2d.md | 57 …用三角形为底填充, 每个部分矩形拐角独立。<br/>- miter:在相连部分的外边缘处进行延伸,使其相交于一点,形成一个菱形区域,该属性可以通过设置miterLimit属性展… 190 ctx.lineJoin = 'miter'; 217 ctx.lineJoin = 'miter';
|
/ohos5.0/foundation/communication/nfc/frameworks/js/napi/controller/ |
H A D | nfc_napi_controller_event.cpp | 296 auto miter = iter->second.begin(); in Register() local 297 for (; miter != iter->second.end();) { in Register() 298 if (env == miter->m_regEnv) { in Register() 300 napi_get_reference_value(miter->m_regEnv, miter->m_regHanderRef, &handlerTemp); in Register() 302 napi_strict_equals(miter->m_regEnv, handlerTemp, handler, &isEqual); in Register() 305 ++miter; in Register()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkgraphics2d/ |
H A D | drawing__pen_8h.md | 51 …miter limit of a polyline drawn by a pen. When the corner type is bevel, a beveled corner is displ… 52 …miter) | Sets the stroke miter limit for a polyline drawn by a pen. When the corner type is bevel,…
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js/ |
H A D | js-components-svg-common-attributes.md | 17 …miter \| round] | miter | No| The shape used at the corner of a path when stroked.<br>**… 19 | stroke-miterlimit | number | 4 | No| Limit value when the sharp angle is drawn as a miter. Attrib…
|
H A D | js-components-canvas-canvasrenderingcontext2d.md | 57 …miter**: The intersection has a miter corner by extending the outside edges of the lines until the… 58 … | number | Maximum miter length. The miter length is… 190 ctx.lineJoin = 'miter'; 217 ctx.lineJoin = 'miter';
|
H A D | js-components-svg-animatetransform.md | 165 <path stroke="black" fill="none" stroke-linejoin="miter" stroke-miterlimit="1" id="p2"
|
/ohos5.0/docs/en/application-dev/ui/ |
H A D | arkts-geometric-shape-drawing.md | 211 …rLimit** places a limit on the ratio of the miter length to the value of **strokeWidth** used to d… 212 …The miter length indicates the distance from the outer tip to the inner corner of the miter. This … 224 …// Set the limit on the ratio of the miter length to the value of strokeWidth used to draw a miter… 269 …the stroke width is 3, the stroke color is red, and the stroke join style is miter (default value).
|
H A D | ui-js-components-canvasrenderingcontext2d.md | 182 this.ctx.lineJoin = 'miter'; 192 this.ctx.lineJoin = 'miter';
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/ndk/ndkpen_fuzzer/ |
H A D | pen_fuzzer.cpp | 56 float miter = GetObject<float>(); in PenFuzzTest000() local 80 OH_Drawing_PenSetMiterLimit(nullptr, miter); in PenFuzzTest000() 81 OH_Drawing_PenSetMiterLimit(pen, miter); in PenFuzzTest000()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-drawing-components-circle.md | 164 …miter length to the value of **strokeWidth** used to draw a miter join. This attribute does not ta… 174 …| string | Yes | Limit on the ratio of the miter length to the value of **strokeWidth** used to d…
|
H A D | ts-drawing-components-polygon.md | 184 …miter length to the value of **strokeWidth** used to draw a miter join. The miter length indicates… 198 …| string | Yes | Limit on the ratio of the miter length to the value of **strokeWidth** used to d…
|
H A D | ts-drawing-components-polyline.md | 181 …miter length to the value of **strokeWidth** used to draw a miter join. The miter length indicates… 195 …| string | Yes | Limit on the ratio of the miter length to the value of **strokeWidth** used to d…
|
H A D | ts-drawing-components-ellipse.md | 166 …miter length to the value of **strokeWidth** used to draw a miter join. This attribute does not ta… 178 …p;string | Yes | Limit on the ratio of the miter length to the value of **strokeWidth** used to d…
|
H A D | ts-drawing-components-shape.md | 188 …miter length to the value of **strokeWidth** used to draw a miter join. The miter length indicates… 202 …| string | Yes | Limit on the ratio of the miter length to the value of **strokeWidth** used to d… 371 … the stroke width is 10, the stroke color is 0xEE8443, and the join style is miter (default value).
|
H A D | ts-drawing-components-rect.md | 219 …miter length to the value of **strokeWidth** used to draw a miter join. The miter length indicates… 233 …| string | Yes | Limit on the ratio of the miter length to the value of **strokeWidth** used to d…
|
H A D | ts-drawing-components-path.md | 182 …miter length to the value of **strokeWidth** used to draw a miter join. The miter length indicates… 196 …| string | Yes | Limit on the ratio of the miter length to the value of **strokeWidth** used to d…
|
H A D | ts-drawing-components-line.md | 200 Sets the limit value when the sharp angle is drawn as a miter. This attribute has no effect for the… 212 | value | number \| string | Yes | Limit value when the sharp angle is drawn as a miter.<br>Defau…
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/include/ |
H A D | drawing_pen.h | 194 void OH_Drawing_PenSetMiterLimit(OH_Drawing_Pen*, float miter);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/ |
H A D | drawing_pen.cpp | 218 void OH_Drawing_PenSetMiterLimit(OH_Drawing_Pen* cPen, float miter) in OH_Drawing_PenSetMiterLimit() argument 225 pen->SetMiterLimit(miter); in OH_Drawing_PenSetMiterLimit()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/ndk/drawing_fuzzer/ |
H A D | drawing_fuzzer.cpp | 379 float miter = static_cast<float>(data[1]); in NativeDrawingPenTest() local 387 OH_Drawing_PenSetMiterLimit(pen, miter); in NativeDrawingPenTest()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkgraphics2d/ |
H A D | drawing__pen_8h.md | 52 …pensetmiterlimit) ([OH_Drawing_Pen](_drawing.md#oh_drawing_pen) \*, float miter) | 用于设置折线尖角的限制值,当画…
|
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/ |
H A D | native-apidiff-v3.1-release.md | 79 …miter limit of a polyline drawn by a pen. When the corner type is bevel, a beveled corner is displ… 80 …miter)|Added|Added the API for setting the stroke miter limit for a polyline drawn by a pen. When …
|
/ohos5.0/docs/zh-cn/application-dev/ui/ |
H A D | ui-js-components-canvasrenderingcontext2d.md | 182 this.ctx.lineJoin = 'miter'; 192 this.ctx.lineJoin = 'miter';
|