Home
last modified time | relevance | path

Searched refs:GenerateVertex (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/diagram/depiction/
H A Ddepict_curve.cpp49 uint32_t DepictCurve::GenerateVertex(float* x, float* y) in GenerateVertex() function in OHOS::DepictCurve
51 if (!IsStop(quadraticBezier_.GenerateVertex(x, y))) { in GenerateVertex()
57 if (!IsStop(cubicBezier_.GenerateVertex(x, y))) { in GenerateVertex()
68 uint32_t cmd = source_->GenerateVertex(x, y); in GenerateVertex()
71 source_->GenerateVertex(&endX, &endY); in GenerateVertex()
75 quadraticBezier_.GenerateVertex(x, y); // First call returns path_cmd_move_to in GenerateVertex()
76 quadraticBezier_.GenerateVertex(x, y); // This is the first vertex of the curve in GenerateVertex()
81 source_->GenerateVertex(&control2X, &control2Y); in GenerateVertex()
82 source_->GenerateVertex(&endX, &endY); in GenerateVertex()
86 cubicBezier_.GenerateVertex(x, y); // First call returns path_cmd_move_to in GenerateVertex()
[all …]
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/depiction/
H A Ddepict_adaptor_vertex_generate.h78 uint32_t GenerateVertex(float*, float*) in GenerateVertex() function
188 uint32_t GenerateVertex(float* x, float* y);
218 uint32_t DepictAdaptorVertexGenerate<VertexSource, Generator, Markers>::GenerateVertex(float* x, fl… in GenerateVertex() function
225 lastCmd_ = msource_->GenerateVertex(&startX_, &startY_); in GenerateVertex()
251 cmd = generator_.GenerateVertex(x, y); in GenerateVertex()
275 cmd = msource_->GenerateVertex(x, y); in VertexAccumulateWhile()
H A Ddepict_transform.h61 uint32_t GenerateVertex(float* x, float* y) in GenerateVertex() function
63 uint32_t cmd = source_->GenerateVertex(x, y); in GenerateVertex()
H A Ddepict_curve.h151 uint32_t GenerateVertex(float* x, float* y);
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/
H A Dgeometry_path_storage.h51 uint32_t cmd = vertexBlockStorage.GenerateVertex(iIndex, &x, &y);
139 return GenerateVertex(totalVertices_ - 1, x, y); in LastVertex()
162 uint32_t GenerateVertex(uint32_t idx, float* x, float* y) const in GenerateVertex() function
387 uint32_t GenerateVertex(uint32_t idx, float* x, float* y) const;
408 uint32_t GenerateVertex(float* x, float* y) in GenerateVertex() function
413 return vertices_.GenerateVertex(iterator_++, x, y); in GenerateVertex()
429 while (!IsStop(cmd = path.GenerateVertex(&x, &y))) {
447 pathCommand = path.GenerateVertex(&x, &y);
468 for (; !IsStop(pathCommand = path.GenerateVertex(&x, &y));) {
H A Dgeometry_curves.h71 uint32_t GenerateVertex(float* x, float* y);
121 uint32_t GenerateVertex(float* x, float* y);
230 uint32_t GenerateVertex(float* x, float* y);
391 uint32_t GenerateVertex(float* x, float* y);
498 uint32_t GenerateVertex(float* x, float* y) in GenerateVertex() function
501 return curveInc_.GenerateVertex(x, y); in GenerateVertex()
503 return curveDiv_.GenerateVertex(x, y); in GenerateVertex()
615 uint32_t GenerateVertex(float* x, float* y) in GenerateVertex() function
618 return curveInc_.GenerateVertex(x, y); in GenerateVertex()
620 return curveDiv_.GenerateVertex(x, y); in GenerateVertex()
H A Dgeometry_bezier_arc.h102 uint32_t GenerateVertex(float* x, float* y) in GenerateVertex() function
224 uint32_t GenerateVertex(float* x, float* y) in GenerateVertex() function
226 return bezierArcModel_.GenerateVertex(x, y); in GenerateVertex()
H A Dgeometry_arc.h88 uint32_t GenerateVertex(float* y, float* x);
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexgenerate/
H A Dvertex_generate_dash.h101 uint32_t GenerateVertex(float* x, float* y);
H A Dvertex_generate_stroke.h114 uint32_t GenerateVertex(float* x, float* y);
/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/diagram/vertexprimitive/
H A Dgeometry_curves.cpp116 uint32_t QuadBezierCurveIncr::GenerateVertex(float* x, float* y) in GenerateVertex() function in OHOS::QuadBezierCurveIncr
196 uint32_t QuadrBezierCurveDividOp::GenerateVertex(float* x, float* y) in GenerateVertex() function in OHOS::QuadrBezierCurveDividOp
399 uint32_t CubicBezierCurveIncrement::GenerateVertex(float* x, float* y) in GenerateVertex() function in OHOS::CubicBezierCurveIncrement
489 uint32_t CubicBezierCurveDividOperate::GenerateVertex(float* x, float* y) in GenerateVertex() function in OHOS::CubicBezierCurveDividOperate
H A Dgeometry_arc.cpp37 uint32_t GeometryArc::GenerateVertex(float* x, float* y) in GenerateVertex() function in OHOS::GeometryArc
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/rasterizer/
H A Drasterizer_scanline_antialias.h155 while (!IsStop(cmd = vs.GenerateVertex(&x, &y))) {
/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/diagram/vertexgenerate/
H A Dvertex_generate_dash.cpp141 uint32_t VertexGenerateDash::GenerateVertex(float* x, float* y) in GenerateVertex() function in OHOS::VertexGenerateDash
H A Dvertex_generate_stroke.cpp68 uint32_t VertexGenerateStroke::GenerateVertex(float* x, float* y) in GenerateVertex() function in OHOS::VertexGenerateStroke
/ohos5.0/foundation/arkui/ui_lite/test/unittest/components/
H A Dui_canvas_unit_test.cpp95 vertices_->GenerateVertex(&x, &y); in GetStartPos()