@visactor/vrender 1.1.1 → 1.1.2-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/dist/index.es.js +281 -277
- package/dist/index.js +284 -276
- package/dist/index.min.js +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.es.js
CHANGED
|
@@ -17933,6 +17933,199 @@ class DefaultCanvasArcRender extends BaseRender {
|
|
|
17933
17933
|
}
|
|
17934
17934
|
}
|
|
17935
17935
|
|
|
17936
|
+
function drawArcPath(arc, context, cx, cy, z, outerRadius, innerRadius) {
|
|
17937
|
+
const {
|
|
17938
|
+
startAngle: startAngle,
|
|
17939
|
+
endAngle: endAngle
|
|
17940
|
+
} = arc.getParsedAngle(),
|
|
17941
|
+
deltaAngle = abs(endAngle - startAngle),
|
|
17942
|
+
clockwise = endAngle > startAngle;
|
|
17943
|
+
let collapsedToLine = !1;
|
|
17944
|
+
if (outerRadius < innerRadius) {
|
|
17945
|
+
const temp = outerRadius;
|
|
17946
|
+
outerRadius = innerRadius, innerRadius = temp;
|
|
17947
|
+
}
|
|
17948
|
+
if (outerRadius <= epsilon) context.moveTo(cx, cy, z);else if (deltaAngle >= pi2 - epsilon) context.moveTo(cx + outerRadius * cos(startAngle), cy + outerRadius * sin(startAngle), z), context.arc(cx, cy, outerRadius, startAngle, endAngle, !clockwise, z), innerRadius > epsilon && (context.moveTo(cx + innerRadius * cos(endAngle), cy + innerRadius * sin(endAngle), z), context.arc(cx, cy, innerRadius, endAngle, startAngle, clockwise, z));else {
|
|
17949
|
+
const {
|
|
17950
|
+
outerDeltaAngle: outerDeltaAngle,
|
|
17951
|
+
innerDeltaAngle: innerDeltaAngle,
|
|
17952
|
+
outerStartAngle: outerStartAngle,
|
|
17953
|
+
outerEndAngle: outerEndAngle,
|
|
17954
|
+
innerEndAngle: innerEndAngle,
|
|
17955
|
+
innerStartAngle: innerStartAngle
|
|
17956
|
+
} = arc.getParsePadAngle(startAngle, endAngle),
|
|
17957
|
+
xors = outerRadius * cos(outerStartAngle),
|
|
17958
|
+
yors = outerRadius * sin(outerStartAngle),
|
|
17959
|
+
xire = innerRadius * cos(innerEndAngle),
|
|
17960
|
+
yire = innerRadius * sin(innerEndAngle);
|
|
17961
|
+
outerDeltaAngle < .001 ? collapsedToLine = !0 : (context.moveTo(cx + xors, cy + yors, z), context.arc(cx, cy, outerRadius, outerStartAngle, outerEndAngle, !clockwise, z)), !(innerRadius > epsilon) || innerDeltaAngle < .001 ? (context.lineTo(cx + xire, cy + yire, z), collapsedToLine = !0) : (context.lineTo(cx + xire, cy + yire, z), context.arc(cx, cy, innerRadius, innerEndAngle, innerStartAngle, clockwise, z));
|
|
17962
|
+
}
|
|
17963
|
+
return context.closePath(), collapsedToLine;
|
|
17964
|
+
}
|
|
17965
|
+
function drawInnerOuterArcPath(arc, context, cx, cy, z1, z2, radius, getParsePadAngle) {
|
|
17966
|
+
const {
|
|
17967
|
+
startAngle: startAngle,
|
|
17968
|
+
endAngle: endAngle
|
|
17969
|
+
} = arc.getParsedAngle(),
|
|
17970
|
+
deltaAngle = abs(endAngle - startAngle),
|
|
17971
|
+
clockwise = endAngle > startAngle;
|
|
17972
|
+
let collapsedToLine = !1;
|
|
17973
|
+
if (radius <= epsilon) context.moveTo(cx, cy, z1);else if (deltaAngle >= pi2 - epsilon) context.moveTo(cx + radius * cos(startAngle), cy + radius * sin(startAngle), z1), context.arc(cx, cy, radius, startAngle, endAngle, !clockwise, z1), context.lineTo(cx + radius * cos(endAngle), cy + radius * sin(endAngle), z2), context.arc(cx, cy, radius, endAngle, startAngle, clockwise, z2);else {
|
|
17974
|
+
const {
|
|
17975
|
+
innerouterDeltaAngle: innerouterDeltaAngle,
|
|
17976
|
+
innerouterStartAngle: innerouterStartAngle,
|
|
17977
|
+
innerouterEndAngle: innerouterEndAngle
|
|
17978
|
+
} = getParsePadAngle(startAngle, endAngle),
|
|
17979
|
+
xors = radius * cos(innerouterStartAngle),
|
|
17980
|
+
yors = radius * sin(innerouterStartAngle),
|
|
17981
|
+
xore = radius * cos(innerouterEndAngle),
|
|
17982
|
+
yore = radius * sin(innerouterEndAngle);
|
|
17983
|
+
innerouterDeltaAngle < .001 ? collapsedToLine = !0 : (context.moveTo(cx + xors, cy + yors, z1), context.arc(cx, cy, radius, innerouterStartAngle, innerouterEndAngle, !clockwise, z1), context.lineTo(cx + xore, cy + yore, z2), context.arc(cx, cy, radius, innerouterEndAngle, innerouterStartAngle, clockwise, z2));
|
|
17984
|
+
}
|
|
17985
|
+
return context.closePath(), collapsedToLine;
|
|
17986
|
+
}
|
|
17987
|
+
class DefaultCanvasArc3DRender extends BaseRender {
|
|
17988
|
+
constructor() {
|
|
17989
|
+
super(...arguments), this.numberType = ARC3D_NUMBER_TYPE;
|
|
17990
|
+
}
|
|
17991
|
+
drawShape(arc, context, x, y, drawContext, params, fillCb, strokeCb) {
|
|
17992
|
+
var _a;
|
|
17993
|
+
const arcAttribute = getTheme(arc, null == params ? void 0 : params.theme).arc,
|
|
17994
|
+
{
|
|
17995
|
+
fill = arcAttribute.fill
|
|
17996
|
+
} = arc.attribute,
|
|
17997
|
+
data = this.valid(arc, arcAttribute, fillCb, strokeCb);
|
|
17998
|
+
if (!data) return;
|
|
17999
|
+
const {
|
|
18000
|
+
fVisible: fVisible,
|
|
18001
|
+
sVisible: sVisible,
|
|
18002
|
+
doFill: doFill,
|
|
18003
|
+
doStroke: doStroke
|
|
18004
|
+
} = data,
|
|
18005
|
+
z = null !== (_a = this.z) && void 0 !== _a ? _a : 0,
|
|
18006
|
+
{
|
|
18007
|
+
outerPadding = arcAttribute.outerPadding,
|
|
18008
|
+
innerPadding = arcAttribute.innerPadding,
|
|
18009
|
+
height = 10
|
|
18010
|
+
} = arc.attribute;
|
|
18011
|
+
let {
|
|
18012
|
+
outerRadius = arcAttribute.outerRadius,
|
|
18013
|
+
innerRadius = arcAttribute.innerRadius
|
|
18014
|
+
} = arc.attribute;
|
|
18015
|
+
outerRadius += outerPadding, innerRadius -= innerPadding;
|
|
18016
|
+
const rgbArray = ColorStore.Get(fill, ColorType.Color255),
|
|
18017
|
+
{
|
|
18018
|
+
light: light
|
|
18019
|
+
} = drawContext.stage || {},
|
|
18020
|
+
face = drawContext.hack_pieFace,
|
|
18021
|
+
z_face = {
|
|
18022
|
+
top: z,
|
|
18023
|
+
bottom: z + height
|
|
18024
|
+
},
|
|
18025
|
+
n_face = {
|
|
18026
|
+
top: [0, 1, 0],
|
|
18027
|
+
bottom: [0, -1, 0],
|
|
18028
|
+
outside: [1, 0, -1],
|
|
18029
|
+
inside: [1, 0, -1]
|
|
18030
|
+
};
|
|
18031
|
+
"bottom" === face || "top" === face ? (context.beginPath(), drawArcPath(arc, context, x, y, z_face[face], outerRadius, innerRadius), context.setShadowBlendStyle && context.setShadowBlendStyle(arc, arc.attribute, arcAttribute), doFill && (fillCb ? fillCb(context, arc.attribute, arcAttribute) : fVisible && (context.setCommonStyle(arc, arc.attribute, x, y, arcAttribute), context.fillStyle = light ? light.computeColor(n_face[face], rgbArray) : fill, context.fill())), doStroke && (strokeCb ? strokeCb(context, arc.attribute, arcAttribute) : sVisible && (context.setStrokeStyle(arc, arc.attribute, x, y, arcAttribute), context.stroke()))) : "outside" !== face && "inside" !== face || ("inside" === face && (context.save(), context.beginPath(), context.arc(x, y, innerRadius, 0, pi2, !0, z_face.top), context.clip()), context.beginPath(), drawInnerOuterArcPath(arc, context, x, y, z_face.top, z_face.bottom, "outside" === face ? outerRadius : innerRadius, (startAngle, endAngle) => {
|
|
18032
|
+
const {
|
|
18033
|
+
outerDeltaAngle: outerDeltaAngle,
|
|
18034
|
+
innerDeltaAngle: innerDeltaAngle,
|
|
18035
|
+
outerStartAngle: outerStartAngle,
|
|
18036
|
+
outerEndAngle: outerEndAngle,
|
|
18037
|
+
innerEndAngle: innerEndAngle,
|
|
18038
|
+
innerStartAngle: innerStartAngle
|
|
18039
|
+
} = arc.getParsePadAngle(startAngle, endAngle);
|
|
18040
|
+
return "outside" === face ? {
|
|
18041
|
+
innerouterDeltaAngle: outerDeltaAngle,
|
|
18042
|
+
innerouterEndAngle: outerEndAngle,
|
|
18043
|
+
innerouterStartAngle: outerStartAngle
|
|
18044
|
+
} : {
|
|
18045
|
+
innerouterDeltaAngle: innerDeltaAngle,
|
|
18046
|
+
innerouterEndAngle: innerEndAngle,
|
|
18047
|
+
innerouterStartAngle: innerStartAngle
|
|
18048
|
+
};
|
|
18049
|
+
}), context.setShadowBlendStyle && context.setShadowBlendStyle(arc, arc.attribute, arcAttribute), doFill && (fillCb ? fillCb(context, arc.attribute, arcAttribute) : fVisible && (context.setCommonStyle(arc, arc.attribute, x, y, arcAttribute), context.fillStyle = light ? light.computeColor(n_face[face], rgbArray) : fill, context.fill())), doStroke && (strokeCb ? strokeCb(context, arc.attribute, arcAttribute) : sVisible && (context.setStrokeStyle(arc, arc.attribute, x, y, arcAttribute), context.stroke())), "inside" === face && context.restore());
|
|
18050
|
+
}
|
|
18051
|
+
draw(arc, renderService, drawContext, params) {
|
|
18052
|
+
const arcAttribute = getTheme(arc, null == params ? void 0 : params.theme).arc;
|
|
18053
|
+
this._draw(arc, arcAttribute, !1, drawContext, params);
|
|
18054
|
+
}
|
|
18055
|
+
}
|
|
18056
|
+
|
|
18057
|
+
class Base3dRender extends BaseRender {
|
|
18058
|
+
stroke(x, y, z, face3d, context) {
|
|
18059
|
+
const vertices = face3d.vertices;
|
|
18060
|
+
face3d.edges.forEach(edge => {
|
|
18061
|
+
const p1 = vertices[edge[0]],
|
|
18062
|
+
v1 = {
|
|
18063
|
+
x: x + p1[0],
|
|
18064
|
+
y: y + p1[1],
|
|
18065
|
+
z: z + p1[2]
|
|
18066
|
+
},
|
|
18067
|
+
p2 = vertices[edge[1]],
|
|
18068
|
+
v2 = {
|
|
18069
|
+
x: x + p2[0],
|
|
18070
|
+
y: y + p2[1],
|
|
18071
|
+
z: z + p2[2]
|
|
18072
|
+
};
|
|
18073
|
+
context.beginPath(), context.moveTo(v1.x, v1.y, v1.z), context.lineTo(v2.x, v2.y, v2.z), context.stroke();
|
|
18074
|
+
});
|
|
18075
|
+
}
|
|
18076
|
+
fill(x, y, z, face3d, faces, fillColor, context, light, graphic3d, graphic3dAttribute, fillCb) {
|
|
18077
|
+
const rgbArray = ColorStore.Get(fillColor, ColorType.Color255),
|
|
18078
|
+
vertices = face3d.vertices,
|
|
18079
|
+
viewdVerticesZ = vertices.map(v => context.view(v[0], v[1], v[2])[2]),
|
|
18080
|
+
sortFace = [];
|
|
18081
|
+
face3d.polygons.forEach((p, i) => {
|
|
18082
|
+
if (faces && !faces[i]) return;
|
|
18083
|
+
sortFace.push({
|
|
18084
|
+
faceIdx: i,
|
|
18085
|
+
polygon: p
|
|
18086
|
+
});
|
|
18087
|
+
const {
|
|
18088
|
+
polygon: polygon
|
|
18089
|
+
} = p,
|
|
18090
|
+
z1 = viewdVerticesZ[polygon[0]],
|
|
18091
|
+
z2 = viewdVerticesZ[polygon[1]],
|
|
18092
|
+
z3 = viewdVerticesZ[polygon[2]],
|
|
18093
|
+
z4 = viewdVerticesZ[polygon[3]];
|
|
18094
|
+
p.ave_z = z1 + z2 + z3 + z4;
|
|
18095
|
+
}), sortFace.sort((a, b) => b.polygon.ave_z - a.polygon.ave_z), sortFace.forEach(item => {
|
|
18096
|
+
const {
|
|
18097
|
+
polygon: polygon,
|
|
18098
|
+
normal: normal
|
|
18099
|
+
} = item.polygon,
|
|
18100
|
+
p1 = vertices[polygon[0]],
|
|
18101
|
+
p2 = vertices[polygon[1]],
|
|
18102
|
+
p3 = vertices[polygon[2]],
|
|
18103
|
+
p4 = vertices[polygon[3]],
|
|
18104
|
+
v1 = {
|
|
18105
|
+
x: x + p1[0],
|
|
18106
|
+
y: y + p1[1],
|
|
18107
|
+
z: z + p1[2]
|
|
18108
|
+
},
|
|
18109
|
+
v2 = {
|
|
18110
|
+
x: x + p2[0],
|
|
18111
|
+
y: y + p2[1],
|
|
18112
|
+
z: z + p2[2]
|
|
18113
|
+
},
|
|
18114
|
+
v3 = {
|
|
18115
|
+
x: x + p3[0],
|
|
18116
|
+
y: y + p3[1],
|
|
18117
|
+
z: z + p3[2]
|
|
18118
|
+
},
|
|
18119
|
+
v4 = {
|
|
18120
|
+
x: x + p4[0],
|
|
18121
|
+
y: y + p4[1],
|
|
18122
|
+
z: z + p4[2]
|
|
18123
|
+
};
|
|
18124
|
+
context.beginPath(), context.moveTo(v1.x, v1.y, v1.z), context.lineTo(v2.x, v2.y, v2.z), context.lineTo(v3.x, v3.y, v3.z), context.lineTo(v4.x, v4.y, v4.z), context.closePath(), fillCb ? fillCb(context, graphic3d && graphic3d.attribute, graphic3dAttribute) : (context.fillStyle = light ? light.computeColor(normal, rgbArray) : fillColor, context.fill());
|
|
18125
|
+
});
|
|
18126
|
+
}
|
|
18127
|
+
}
|
|
18128
|
+
|
|
17936
18129
|
class DefaultCanvasCircleRender extends BaseRender {
|
|
17937
18130
|
constructor(graphicRenderContributions) {
|
|
17938
18131
|
super(), this.graphicRenderContributions = graphicRenderContributions, this.numberType = CIRCLE_NUMBER_TYPE, this.builtinContributions = [defaultCircleRenderContribution, defaultCircleBackgroundRenderContribution, defaultCircleTextureRenderContribution], this.init(graphicRenderContributions);
|
|
@@ -18619,6 +18812,57 @@ class DefaultCanvasRectRender extends BaseRender {
|
|
|
18619
18812
|
}
|
|
18620
18813
|
}
|
|
18621
18814
|
|
|
18815
|
+
class DefaultCanvasRect3dRender extends Base3dRender {
|
|
18816
|
+
constructor() {
|
|
18817
|
+
super(...arguments), this.type = "rect3d", this.numberType = RECT3D_NUMBER_TYPE;
|
|
18818
|
+
}
|
|
18819
|
+
drawShape(rect, context, x, y, drawContext, params, fillCb, strokeCb) {
|
|
18820
|
+
var _a, _b;
|
|
18821
|
+
const rectAttribute = getTheme(rect, null == params ? void 0 : params.theme).rect,
|
|
18822
|
+
{
|
|
18823
|
+
fill = rectAttribute.fill,
|
|
18824
|
+
stroke = rectAttribute.stroke,
|
|
18825
|
+
x1: x1,
|
|
18826
|
+
y1: y1,
|
|
18827
|
+
x: originX,
|
|
18828
|
+
y: originY,
|
|
18829
|
+
opacity = rectAttribute.opacity,
|
|
18830
|
+
fillOpacity = rectAttribute.fillOpacity,
|
|
18831
|
+
lineWidth = rectAttribute.lineWidth,
|
|
18832
|
+
strokeOpacity = rectAttribute.strokeOpacity,
|
|
18833
|
+
visible = rectAttribute.visible,
|
|
18834
|
+
drawStrokeWhenZeroWH = null !== (_a = rectAttribute.drawStrokeWhenZeroWH) && void 0 !== _a && _a
|
|
18835
|
+
} = rect.attribute;
|
|
18836
|
+
let {
|
|
18837
|
+
width: width,
|
|
18838
|
+
height: height
|
|
18839
|
+
} = rect.attribute;
|
|
18840
|
+
width = (null != width ? width : x1 - originX) || 0, height = (null != height ? height : y1 - originY) || 0;
|
|
18841
|
+
const z = null !== (_b = this.z) && void 0 !== _b ? _b : 0,
|
|
18842
|
+
fVisible = rectFillVisible(opacity, fillOpacity, width, height, fill),
|
|
18843
|
+
sVisible = rectStrokeVisible(opacity, strokeOpacity, width, height, drawStrokeWhenZeroWH),
|
|
18844
|
+
doFill = runFill(fill),
|
|
18845
|
+
doStroke = runStroke(stroke, lineWidth);
|
|
18846
|
+
if (!rect.valid || !visible) return;
|
|
18847
|
+
if (!doFill && !doStroke) return;
|
|
18848
|
+
if (!(fVisible || sVisible || fillCb || strokeCb)) return;
|
|
18849
|
+
const {
|
|
18850
|
+
light: light
|
|
18851
|
+
} = drawContext.stage || {},
|
|
18852
|
+
face3d = rect.findFace();
|
|
18853
|
+
if (!1 !== fill) {
|
|
18854
|
+
context.setCommonStyle(rect, rect.attribute, x, y, rectAttribute);
|
|
18855
|
+
let fc = fill;
|
|
18856
|
+
"string" != typeof fc && (fc = "black"), this.fill(x, y, z, face3d, null, fc, context, light, null, null, fillCb);
|
|
18857
|
+
}
|
|
18858
|
+
!1 !== stroke && (context.setStrokeStyle(rect, rect.attribute, x, y, rectAttribute), this.stroke(x, y, z, face3d, context));
|
|
18859
|
+
}
|
|
18860
|
+
draw(rect, renderService, drawContext) {
|
|
18861
|
+
const rectAttribute = getTheme(rect).rect;
|
|
18862
|
+
this._draw(rect, rectAttribute, !1, drawContext);
|
|
18863
|
+
}
|
|
18864
|
+
}
|
|
18865
|
+
|
|
18622
18866
|
class DefaultCanvasSymbolRender extends BaseRender {
|
|
18623
18867
|
constructor(graphicRenderContributions) {
|
|
18624
18868
|
super(), this.graphicRenderContributions = graphicRenderContributions, this.numberType = SYMBOL_NUMBER_TYPE, this.builtinContributions = [defaultSymbolRenderContribution, defaultSymbolBackgroundRenderContribution, defaultSymbolTextureRenderContribution, defaultSymbolClipRangeStrokeRenderContribution], this.init(graphicRenderContributions);
|
|
@@ -18983,6 +19227,37 @@ class DefaultCanvasPolygonRender extends BaseRender {
|
|
|
18983
19227
|
}
|
|
18984
19228
|
}
|
|
18985
19229
|
|
|
19230
|
+
class DefaultCanvasPyramid3dRender extends Base3dRender {
|
|
19231
|
+
constructor() {
|
|
19232
|
+
super(...arguments), this.type = "pyramid3d", this.numberType = PYRAMID3D_NUMBER_TYPE;
|
|
19233
|
+
}
|
|
19234
|
+
drawShape(pyramid3d, context, x, y, drawContext, params, fillCb, strokeCb) {
|
|
19235
|
+
var _a;
|
|
19236
|
+
const pyramidAttribute = getTheme(pyramid3d, null == params ? void 0 : params.theme).polygon,
|
|
19237
|
+
{
|
|
19238
|
+
fill = pyramidAttribute.fill,
|
|
19239
|
+
stroke = pyramidAttribute.stroke,
|
|
19240
|
+
face = [!0, !0, !0, !0, !0, !0]
|
|
19241
|
+
} = pyramid3d.attribute,
|
|
19242
|
+
z = null !== (_a = this.z) && void 0 !== _a ? _a : 0;
|
|
19243
|
+
if (!this.valid(pyramid3d, pyramidAttribute, fillCb, strokeCb)) return;
|
|
19244
|
+
const {
|
|
19245
|
+
light: light
|
|
19246
|
+
} = drawContext.stage || {},
|
|
19247
|
+
face3d = pyramid3d.findFace();
|
|
19248
|
+
if (!1 !== fill) {
|
|
19249
|
+
context.setCommonStyle(pyramid3d, pyramid3d.attribute, x, y, pyramidAttribute);
|
|
19250
|
+
let fc = fill;
|
|
19251
|
+
"string" != typeof fc && (fc = "black"), this.fill(x, y, z, face3d, face, fc, context, light, pyramid3d, pyramidAttribute, fillCb);
|
|
19252
|
+
}
|
|
19253
|
+
!1 !== stroke && (context.setStrokeStyle(pyramid3d, pyramid3d.attribute, x, y, pyramidAttribute), this.stroke(x, y, z, face3d, context));
|
|
19254
|
+
}
|
|
19255
|
+
draw(pyramid3d, renderService, drawContext) {
|
|
19256
|
+
const pyramid3dAttribute = getTheme(pyramid3d).polygon;
|
|
19257
|
+
this._draw(pyramid3d, pyramid3dAttribute, !1, drawContext);
|
|
19258
|
+
}
|
|
19259
|
+
}
|
|
19260
|
+
|
|
18986
19261
|
const repeatStr = ["", "repeat-x", "repeat-y", "repeat"];
|
|
18987
19262
|
function resolveImageRepeatMode(repeatX, repeatY) {
|
|
18988
19263
|
let repeat = 0;
|
|
@@ -21830,129 +22105,6 @@ function bindImageRenderModule({
|
|
|
21830
22105
|
}
|
|
21831
22106
|
const imageModule = bindImageRenderModule;
|
|
21832
22107
|
|
|
21833
|
-
class Base3dRender extends BaseRender {
|
|
21834
|
-
stroke(x, y, z, face3d, context) {
|
|
21835
|
-
const vertices = face3d.vertices;
|
|
21836
|
-
face3d.edges.forEach(edge => {
|
|
21837
|
-
const p1 = vertices[edge[0]],
|
|
21838
|
-
v1 = {
|
|
21839
|
-
x: x + p1[0],
|
|
21840
|
-
y: y + p1[1],
|
|
21841
|
-
z: z + p1[2]
|
|
21842
|
-
},
|
|
21843
|
-
p2 = vertices[edge[1]],
|
|
21844
|
-
v2 = {
|
|
21845
|
-
x: x + p2[0],
|
|
21846
|
-
y: y + p2[1],
|
|
21847
|
-
z: z + p2[2]
|
|
21848
|
-
};
|
|
21849
|
-
context.beginPath(), context.moveTo(v1.x, v1.y, v1.z), context.lineTo(v2.x, v2.y, v2.z), context.stroke();
|
|
21850
|
-
});
|
|
21851
|
-
}
|
|
21852
|
-
fill(x, y, z, face3d, faces, fillColor, context, light, graphic3d, graphic3dAttribute, fillCb) {
|
|
21853
|
-
const rgbArray = ColorStore.Get(fillColor, ColorType.Color255),
|
|
21854
|
-
vertices = face3d.vertices,
|
|
21855
|
-
viewdVerticesZ = vertices.map(v => context.view(v[0], v[1], v[2])[2]),
|
|
21856
|
-
sortFace = [];
|
|
21857
|
-
face3d.polygons.forEach((p, i) => {
|
|
21858
|
-
if (faces && !faces[i]) return;
|
|
21859
|
-
sortFace.push({
|
|
21860
|
-
faceIdx: i,
|
|
21861
|
-
polygon: p
|
|
21862
|
-
});
|
|
21863
|
-
const {
|
|
21864
|
-
polygon: polygon
|
|
21865
|
-
} = p,
|
|
21866
|
-
z1 = viewdVerticesZ[polygon[0]],
|
|
21867
|
-
z2 = viewdVerticesZ[polygon[1]],
|
|
21868
|
-
z3 = viewdVerticesZ[polygon[2]],
|
|
21869
|
-
z4 = viewdVerticesZ[polygon[3]];
|
|
21870
|
-
p.ave_z = z1 + z2 + z3 + z4;
|
|
21871
|
-
}), sortFace.sort((a, b) => b.polygon.ave_z - a.polygon.ave_z), sortFace.forEach(item => {
|
|
21872
|
-
const {
|
|
21873
|
-
polygon: polygon,
|
|
21874
|
-
normal: normal
|
|
21875
|
-
} = item.polygon,
|
|
21876
|
-
p1 = vertices[polygon[0]],
|
|
21877
|
-
p2 = vertices[polygon[1]],
|
|
21878
|
-
p3 = vertices[polygon[2]],
|
|
21879
|
-
p4 = vertices[polygon[3]],
|
|
21880
|
-
v1 = {
|
|
21881
|
-
x: x + p1[0],
|
|
21882
|
-
y: y + p1[1],
|
|
21883
|
-
z: z + p1[2]
|
|
21884
|
-
},
|
|
21885
|
-
v2 = {
|
|
21886
|
-
x: x + p2[0],
|
|
21887
|
-
y: y + p2[1],
|
|
21888
|
-
z: z + p2[2]
|
|
21889
|
-
},
|
|
21890
|
-
v3 = {
|
|
21891
|
-
x: x + p3[0],
|
|
21892
|
-
y: y + p3[1],
|
|
21893
|
-
z: z + p3[2]
|
|
21894
|
-
},
|
|
21895
|
-
v4 = {
|
|
21896
|
-
x: x + p4[0],
|
|
21897
|
-
y: y + p4[1],
|
|
21898
|
-
z: z + p4[2]
|
|
21899
|
-
};
|
|
21900
|
-
context.beginPath(), context.moveTo(v1.x, v1.y, v1.z), context.lineTo(v2.x, v2.y, v2.z), context.lineTo(v3.x, v3.y, v3.z), context.lineTo(v4.x, v4.y, v4.z), context.closePath(), fillCb ? fillCb(context, graphic3d && graphic3d.attribute, graphic3dAttribute) : (context.fillStyle = light ? light.computeColor(normal, rgbArray) : fillColor, context.fill());
|
|
21901
|
-
});
|
|
21902
|
-
}
|
|
21903
|
-
}
|
|
21904
|
-
|
|
21905
|
-
class DefaultCanvasRect3dRender extends Base3dRender {
|
|
21906
|
-
constructor() {
|
|
21907
|
-
super(...arguments), this.type = "rect3d", this.numberType = RECT3D_NUMBER_TYPE;
|
|
21908
|
-
}
|
|
21909
|
-
drawShape(rect, context, x, y, drawContext, params, fillCb, strokeCb) {
|
|
21910
|
-
var _a, _b;
|
|
21911
|
-
const rectAttribute = getTheme(rect, null == params ? void 0 : params.theme).rect,
|
|
21912
|
-
{
|
|
21913
|
-
fill = rectAttribute.fill,
|
|
21914
|
-
stroke = rectAttribute.stroke,
|
|
21915
|
-
x1: x1,
|
|
21916
|
-
y1: y1,
|
|
21917
|
-
x: originX,
|
|
21918
|
-
y: originY,
|
|
21919
|
-
opacity = rectAttribute.opacity,
|
|
21920
|
-
fillOpacity = rectAttribute.fillOpacity,
|
|
21921
|
-
lineWidth = rectAttribute.lineWidth,
|
|
21922
|
-
strokeOpacity = rectAttribute.strokeOpacity,
|
|
21923
|
-
visible = rectAttribute.visible,
|
|
21924
|
-
drawStrokeWhenZeroWH = null !== (_a = rectAttribute.drawStrokeWhenZeroWH) && void 0 !== _a && _a
|
|
21925
|
-
} = rect.attribute;
|
|
21926
|
-
let {
|
|
21927
|
-
width: width,
|
|
21928
|
-
height: height
|
|
21929
|
-
} = rect.attribute;
|
|
21930
|
-
width = (null != width ? width : x1 - originX) || 0, height = (null != height ? height : y1 - originY) || 0;
|
|
21931
|
-
const z = null !== (_b = this.z) && void 0 !== _b ? _b : 0,
|
|
21932
|
-
fVisible = rectFillVisible(opacity, fillOpacity, width, height, fill),
|
|
21933
|
-
sVisible = rectStrokeVisible(opacity, strokeOpacity, width, height, drawStrokeWhenZeroWH),
|
|
21934
|
-
doFill = runFill(fill),
|
|
21935
|
-
doStroke = runStroke(stroke, lineWidth);
|
|
21936
|
-
if (!rect.valid || !visible) return;
|
|
21937
|
-
if (!doFill && !doStroke) return;
|
|
21938
|
-
if (!(fVisible || sVisible || fillCb || strokeCb)) return;
|
|
21939
|
-
const {
|
|
21940
|
-
light: light
|
|
21941
|
-
} = drawContext.stage || {},
|
|
21942
|
-
face3d = rect.findFace();
|
|
21943
|
-
if (!1 !== fill) {
|
|
21944
|
-
context.setCommonStyle(rect, rect.attribute, x, y, rectAttribute);
|
|
21945
|
-
let fc = fill;
|
|
21946
|
-
"string" != typeof fc && (fc = "black"), this.fill(x, y, z, face3d, null, fc, context, light, null, null, fillCb);
|
|
21947
|
-
}
|
|
21948
|
-
!1 !== stroke && (context.setStrokeStyle(rect, rect.attribute, x, y, rectAttribute), this.stroke(x, y, z, face3d, context));
|
|
21949
|
-
}
|
|
21950
|
-
draw(rect, renderService, drawContext) {
|
|
21951
|
-
const rectAttribute = getTheme(rect).rect;
|
|
21952
|
-
this._draw(rect, rectAttribute, !1, drawContext);
|
|
21953
|
-
}
|
|
21954
|
-
}
|
|
21955
|
-
|
|
21956
22108
|
const loadedRect3dModuleContexts = new WeakSet();
|
|
21957
22109
|
function bindRect3dRenderModule({
|
|
21958
22110
|
bind: bind
|
|
@@ -21961,127 +22113,6 @@ function bindRect3dRenderModule({
|
|
|
21961
22113
|
}
|
|
21962
22114
|
const rect3dModule = bindRect3dRenderModule;
|
|
21963
22115
|
|
|
21964
|
-
function drawArcPath(arc, context, cx, cy, z, outerRadius, innerRadius) {
|
|
21965
|
-
const {
|
|
21966
|
-
startAngle: startAngle,
|
|
21967
|
-
endAngle: endAngle
|
|
21968
|
-
} = arc.getParsedAngle(),
|
|
21969
|
-
deltaAngle = abs(endAngle - startAngle),
|
|
21970
|
-
clockwise = endAngle > startAngle;
|
|
21971
|
-
let collapsedToLine = !1;
|
|
21972
|
-
if (outerRadius < innerRadius) {
|
|
21973
|
-
const temp = outerRadius;
|
|
21974
|
-
outerRadius = innerRadius, innerRadius = temp;
|
|
21975
|
-
}
|
|
21976
|
-
if (outerRadius <= epsilon) context.moveTo(cx, cy, z);else if (deltaAngle >= pi2 - epsilon) context.moveTo(cx + outerRadius * cos(startAngle), cy + outerRadius * sin(startAngle), z), context.arc(cx, cy, outerRadius, startAngle, endAngle, !clockwise, z), innerRadius > epsilon && (context.moveTo(cx + innerRadius * cos(endAngle), cy + innerRadius * sin(endAngle), z), context.arc(cx, cy, innerRadius, endAngle, startAngle, clockwise, z));else {
|
|
21977
|
-
const {
|
|
21978
|
-
outerDeltaAngle: outerDeltaAngle,
|
|
21979
|
-
innerDeltaAngle: innerDeltaAngle,
|
|
21980
|
-
outerStartAngle: outerStartAngle,
|
|
21981
|
-
outerEndAngle: outerEndAngle,
|
|
21982
|
-
innerEndAngle: innerEndAngle,
|
|
21983
|
-
innerStartAngle: innerStartAngle
|
|
21984
|
-
} = arc.getParsePadAngle(startAngle, endAngle),
|
|
21985
|
-
xors = outerRadius * cos(outerStartAngle),
|
|
21986
|
-
yors = outerRadius * sin(outerStartAngle),
|
|
21987
|
-
xire = innerRadius * cos(innerEndAngle),
|
|
21988
|
-
yire = innerRadius * sin(innerEndAngle);
|
|
21989
|
-
outerDeltaAngle < .001 ? collapsedToLine = !0 : (context.moveTo(cx + xors, cy + yors, z), context.arc(cx, cy, outerRadius, outerStartAngle, outerEndAngle, !clockwise, z)), !(innerRadius > epsilon) || innerDeltaAngle < .001 ? (context.lineTo(cx + xire, cy + yire, z), collapsedToLine = !0) : (context.lineTo(cx + xire, cy + yire, z), context.arc(cx, cy, innerRadius, innerEndAngle, innerStartAngle, clockwise, z));
|
|
21990
|
-
}
|
|
21991
|
-
return context.closePath(), collapsedToLine;
|
|
21992
|
-
}
|
|
21993
|
-
function drawInnerOuterArcPath(arc, context, cx, cy, z1, z2, radius, getParsePadAngle) {
|
|
21994
|
-
const {
|
|
21995
|
-
startAngle: startAngle,
|
|
21996
|
-
endAngle: endAngle
|
|
21997
|
-
} = arc.getParsedAngle(),
|
|
21998
|
-
deltaAngle = abs(endAngle - startAngle),
|
|
21999
|
-
clockwise = endAngle > startAngle;
|
|
22000
|
-
let collapsedToLine = !1;
|
|
22001
|
-
if (radius <= epsilon) context.moveTo(cx, cy, z1);else if (deltaAngle >= pi2 - epsilon) context.moveTo(cx + radius * cos(startAngle), cy + radius * sin(startAngle), z1), context.arc(cx, cy, radius, startAngle, endAngle, !clockwise, z1), context.lineTo(cx + radius * cos(endAngle), cy + radius * sin(endAngle), z2), context.arc(cx, cy, radius, endAngle, startAngle, clockwise, z2);else {
|
|
22002
|
-
const {
|
|
22003
|
-
innerouterDeltaAngle: innerouterDeltaAngle,
|
|
22004
|
-
innerouterStartAngle: innerouterStartAngle,
|
|
22005
|
-
innerouterEndAngle: innerouterEndAngle
|
|
22006
|
-
} = getParsePadAngle(startAngle, endAngle),
|
|
22007
|
-
xors = radius * cos(innerouterStartAngle),
|
|
22008
|
-
yors = radius * sin(innerouterStartAngle),
|
|
22009
|
-
xore = radius * cos(innerouterEndAngle),
|
|
22010
|
-
yore = radius * sin(innerouterEndAngle);
|
|
22011
|
-
innerouterDeltaAngle < .001 ? collapsedToLine = !0 : (context.moveTo(cx + xors, cy + yors, z1), context.arc(cx, cy, radius, innerouterStartAngle, innerouterEndAngle, !clockwise, z1), context.lineTo(cx + xore, cy + yore, z2), context.arc(cx, cy, radius, innerouterEndAngle, innerouterStartAngle, clockwise, z2));
|
|
22012
|
-
}
|
|
22013
|
-
return context.closePath(), collapsedToLine;
|
|
22014
|
-
}
|
|
22015
|
-
class DefaultCanvasArc3DRender extends BaseRender {
|
|
22016
|
-
constructor() {
|
|
22017
|
-
super(...arguments), this.numberType = ARC3D_NUMBER_TYPE;
|
|
22018
|
-
}
|
|
22019
|
-
drawShape(arc, context, x, y, drawContext, params, fillCb, strokeCb) {
|
|
22020
|
-
var _a;
|
|
22021
|
-
const arcAttribute = getTheme(arc, null == params ? void 0 : params.theme).arc,
|
|
22022
|
-
{
|
|
22023
|
-
fill = arcAttribute.fill
|
|
22024
|
-
} = arc.attribute,
|
|
22025
|
-
data = this.valid(arc, arcAttribute, fillCb, strokeCb);
|
|
22026
|
-
if (!data) return;
|
|
22027
|
-
const {
|
|
22028
|
-
fVisible: fVisible,
|
|
22029
|
-
sVisible: sVisible,
|
|
22030
|
-
doFill: doFill,
|
|
22031
|
-
doStroke: doStroke
|
|
22032
|
-
} = data,
|
|
22033
|
-
z = null !== (_a = this.z) && void 0 !== _a ? _a : 0,
|
|
22034
|
-
{
|
|
22035
|
-
outerPadding = arcAttribute.outerPadding,
|
|
22036
|
-
innerPadding = arcAttribute.innerPadding,
|
|
22037
|
-
height = 10
|
|
22038
|
-
} = arc.attribute;
|
|
22039
|
-
let {
|
|
22040
|
-
outerRadius = arcAttribute.outerRadius,
|
|
22041
|
-
innerRadius = arcAttribute.innerRadius
|
|
22042
|
-
} = arc.attribute;
|
|
22043
|
-
outerRadius += outerPadding, innerRadius -= innerPadding;
|
|
22044
|
-
const rgbArray = ColorStore.Get(fill, ColorType.Color255),
|
|
22045
|
-
{
|
|
22046
|
-
light: light
|
|
22047
|
-
} = drawContext.stage || {},
|
|
22048
|
-
face = drawContext.hack_pieFace,
|
|
22049
|
-
z_face = {
|
|
22050
|
-
top: z,
|
|
22051
|
-
bottom: z + height
|
|
22052
|
-
},
|
|
22053
|
-
n_face = {
|
|
22054
|
-
top: [0, 1, 0],
|
|
22055
|
-
bottom: [0, -1, 0],
|
|
22056
|
-
outside: [1, 0, -1],
|
|
22057
|
-
inside: [1, 0, -1]
|
|
22058
|
-
};
|
|
22059
|
-
"bottom" === face || "top" === face ? (context.beginPath(), drawArcPath(arc, context, x, y, z_face[face], outerRadius, innerRadius), context.setShadowBlendStyle && context.setShadowBlendStyle(arc, arc.attribute, arcAttribute), doFill && (fillCb ? fillCb(context, arc.attribute, arcAttribute) : fVisible && (context.setCommonStyle(arc, arc.attribute, x, y, arcAttribute), context.fillStyle = light ? light.computeColor(n_face[face], rgbArray) : fill, context.fill())), doStroke && (strokeCb ? strokeCb(context, arc.attribute, arcAttribute) : sVisible && (context.setStrokeStyle(arc, arc.attribute, x, y, arcAttribute), context.stroke()))) : "outside" !== face && "inside" !== face || ("inside" === face && (context.save(), context.beginPath(), context.arc(x, y, innerRadius, 0, pi2, !0, z_face.top), context.clip()), context.beginPath(), drawInnerOuterArcPath(arc, context, x, y, z_face.top, z_face.bottom, "outside" === face ? outerRadius : innerRadius, (startAngle, endAngle) => {
|
|
22060
|
-
const {
|
|
22061
|
-
outerDeltaAngle: outerDeltaAngle,
|
|
22062
|
-
innerDeltaAngle: innerDeltaAngle,
|
|
22063
|
-
outerStartAngle: outerStartAngle,
|
|
22064
|
-
outerEndAngle: outerEndAngle,
|
|
22065
|
-
innerEndAngle: innerEndAngle,
|
|
22066
|
-
innerStartAngle: innerStartAngle
|
|
22067
|
-
} = arc.getParsePadAngle(startAngle, endAngle);
|
|
22068
|
-
return "outside" === face ? {
|
|
22069
|
-
innerouterDeltaAngle: outerDeltaAngle,
|
|
22070
|
-
innerouterEndAngle: outerEndAngle,
|
|
22071
|
-
innerouterStartAngle: outerStartAngle
|
|
22072
|
-
} : {
|
|
22073
|
-
innerouterDeltaAngle: innerDeltaAngle,
|
|
22074
|
-
innerouterEndAngle: innerEndAngle,
|
|
22075
|
-
innerouterStartAngle: innerStartAngle
|
|
22076
|
-
};
|
|
22077
|
-
}), context.setShadowBlendStyle && context.setShadowBlendStyle(arc, arc.attribute, arcAttribute), doFill && (fillCb ? fillCb(context, arc.attribute, arcAttribute) : fVisible && (context.setCommonStyle(arc, arc.attribute, x, y, arcAttribute), context.fillStyle = light ? light.computeColor(n_face[face], rgbArray) : fill, context.fill())), doStroke && (strokeCb ? strokeCb(context, arc.attribute, arcAttribute) : sVisible && (context.setStrokeStyle(arc, arc.attribute, x, y, arcAttribute), context.stroke())), "inside" === face && context.restore());
|
|
22078
|
-
}
|
|
22079
|
-
draw(arc, renderService, drawContext, params) {
|
|
22080
|
-
const arcAttribute = getTheme(arc, null == params ? void 0 : params.theme).arc;
|
|
22081
|
-
this._draw(arc, arcAttribute, !1, drawContext, params);
|
|
22082
|
-
}
|
|
22083
|
-
}
|
|
22084
|
-
|
|
22085
22116
|
const loadedArc3dModuleContexts = new WeakSet();
|
|
22086
22117
|
function bindArc3dRenderModule({
|
|
22087
22118
|
bind: bind
|
|
@@ -22090,37 +22121,6 @@ function bindArc3dRenderModule({
|
|
|
22090
22121
|
}
|
|
22091
22122
|
const arc3dModule = bindArc3dRenderModule;
|
|
22092
22123
|
|
|
22093
|
-
class DefaultCanvasPyramid3dRender extends Base3dRender {
|
|
22094
|
-
constructor() {
|
|
22095
|
-
super(...arguments), this.type = "pyramid3d", this.numberType = PYRAMID3D_NUMBER_TYPE;
|
|
22096
|
-
}
|
|
22097
|
-
drawShape(pyramid3d, context, x, y, drawContext, params, fillCb, strokeCb) {
|
|
22098
|
-
var _a;
|
|
22099
|
-
const pyramidAttribute = getTheme(pyramid3d, null == params ? void 0 : params.theme).polygon,
|
|
22100
|
-
{
|
|
22101
|
-
fill = pyramidAttribute.fill,
|
|
22102
|
-
stroke = pyramidAttribute.stroke,
|
|
22103
|
-
face = [!0, !0, !0, !0, !0, !0]
|
|
22104
|
-
} = pyramid3d.attribute,
|
|
22105
|
-
z = null !== (_a = this.z) && void 0 !== _a ? _a : 0;
|
|
22106
|
-
if (!this.valid(pyramid3d, pyramidAttribute, fillCb, strokeCb)) return;
|
|
22107
|
-
const {
|
|
22108
|
-
light: light
|
|
22109
|
-
} = drawContext.stage || {},
|
|
22110
|
-
face3d = pyramid3d.findFace();
|
|
22111
|
-
if (!1 !== fill) {
|
|
22112
|
-
context.setCommonStyle(pyramid3d, pyramid3d.attribute, x, y, pyramidAttribute);
|
|
22113
|
-
let fc = fill;
|
|
22114
|
-
"string" != typeof fc && (fc = "black"), this.fill(x, y, z, face3d, face, fc, context, light, pyramid3d, pyramidAttribute, fillCb);
|
|
22115
|
-
}
|
|
22116
|
-
!1 !== stroke && (context.setStrokeStyle(pyramid3d, pyramid3d.attribute, x, y, pyramidAttribute), this.stroke(x, y, z, face3d, context));
|
|
22117
|
-
}
|
|
22118
|
-
draw(pyramid3d, renderService, drawContext) {
|
|
22119
|
-
const pyramid3dAttribute = getTheme(pyramid3d).polygon;
|
|
22120
|
-
this._draw(pyramid3d, pyramid3dAttribute, !1, drawContext);
|
|
22121
|
-
}
|
|
22122
|
-
}
|
|
22123
|
-
|
|
22124
22124
|
const loadedPyramid3dModuleContexts = new WeakSet();
|
|
22125
22125
|
function bindPyramid3dRenderModule({
|
|
22126
22126
|
bind: bind
|
|
@@ -22784,6 +22784,7 @@ var VRenderCore = /*#__PURE__*/Object.freeze({
|
|
|
22784
22784
|
AreaRenderContribution: AreaRenderContribution,
|
|
22785
22785
|
get AttributeUpdateType () { return AttributeUpdateType; },
|
|
22786
22786
|
AutoEnablePlugins: AutoEnablePlugins,
|
|
22787
|
+
Base3dRender: Base3dRender,
|
|
22787
22788
|
BaseCanvas: BaseCanvas,
|
|
22788
22789
|
BaseEnvContribution: BaseEnvContribution,
|
|
22789
22790
|
BaseRender: BaseRender,
|
|
@@ -22832,6 +22833,7 @@ var VRenderCore = /*#__PURE__*/Object.freeze({
|
|
|
22832
22833
|
DefaultBaseInteractiveRenderContribution: DefaultBaseInteractiveRenderContribution,
|
|
22833
22834
|
DefaultBaseTextureRenderContribution: DefaultBaseTextureRenderContribution,
|
|
22834
22835
|
DefaultCanvasAllocate: DefaultCanvasAllocate,
|
|
22836
|
+
DefaultCanvasArc3DRender: DefaultCanvasArc3DRender,
|
|
22835
22837
|
DefaultCanvasArcRender: DefaultCanvasArcRender,
|
|
22836
22838
|
DefaultCanvasAreaRender: DefaultCanvasAreaRender,
|
|
22837
22839
|
DefaultCanvasCircleRender: DefaultCanvasCircleRender,
|
|
@@ -22840,6 +22842,8 @@ var VRenderCore = /*#__PURE__*/Object.freeze({
|
|
|
22840
22842
|
DefaultCanvasLineRender: DefaultCanvasLineRender,
|
|
22841
22843
|
DefaultCanvasPathRender: DefaultCanvasPathRender,
|
|
22842
22844
|
DefaultCanvasPolygonRender: DefaultCanvasPolygonRender,
|
|
22845
|
+
DefaultCanvasPyramid3dRender: DefaultCanvasPyramid3dRender,
|
|
22846
|
+
DefaultCanvasRect3dRender: DefaultCanvasRect3dRender,
|
|
22843
22847
|
DefaultCanvasRectRender: DefaultCanvasRectRender,
|
|
22844
22848
|
DefaultCanvasSymbolRender: DefaultCanvasSymbolRender,
|
|
22845
22849
|
DefaultCanvasTextRender: DefaultCanvasTextRender,
|
|
@@ -55456,6 +55460,6 @@ function createStage(params) {
|
|
|
55456
55460
|
return resolveLegacyApp().createStage(params);
|
|
55457
55461
|
}
|
|
55458
55462
|
|
|
55459
|
-
const version = "1.1.1";
|
|
55463
|
+
const version = "1.1.2-alpha.1";
|
|
55460
55464
|
|
|
55461
|
-
export { AComponentAnimate, ACustomAnimate, ARC3D_NUMBER_TYPE, ARC_NUMBER_TYPE, AREA_NUMBER_TYPE, AStageAnimate, AXIS_ELEMENT_NAME, AbstractComponent, AbstractGraphicRender, Animate, AnimateExecutor, AnimateMode, AnimateStatus, Step as AnimateStep, AnimateStepType, AnimationStateManager, AnimationStateStore, AnimationStates, AnimationTransitionRegistry, AppContext, Application, Arc, Arc3d, Arc3dRender, ArcInfo, ArcLabel, ArcRender, ArcRenderContribution, ArcSegment, Area, AreaRender, AreaRenderContribution, AttributeUpdateType, AutoEnablePlugins, AxisStateValue, BaseCanvas, BaseEnvContribution, BasePlayer, BaseRender, BaseRenderContributionTime, BaseWindowHandlerContribution, Basis, BeforeRenderConstribution, BoundsContext, BoundsPicker, BrowserEntry, BrowserEnvContribution, Brush, CIRCLE_NUMBER_TYPE, Canvas3DDrawItemInterceptor, Canvas3DPickItemInterceptor, CanvasArc3dPicker, CanvasArcPicker, CanvasAreaPicker, CanvasCirclePicker, CanvasFactory, CanvasGifImagePicker, CanvasGlyphPicker, CanvasGroupPicker, CanvasImagePicker, CanvasLinePicker, CanvasLottiePicker, CanvasPathPicker, CanvasPickerContribution, CanvasPolygonPicker, CanvasPyramid3dPicker, CanvasRect3dPicker, CanvasRectPicker, CanvasRichTextPicker, CanvasStarPicker, CanvasSymbolPicker, CanvasTextLayout, CanvasTextPicker, CheckBox, Circle, CircleAxis, CircleAxisGrid, CircleCrosshair, CircleRender, CircleRenderContribution, ClipAngleAnimate, ClipDirectionAnimate, ClipGraphicAnimate, ClipIn, ClipOut, ClipRadiusAnimate, ColorContinuousLegend, ColorInterpolate, ColorStore, ColorType, CommonDrawItemInterceptorContribution, CommonRenderContribution, ComponentAnimator, Context2dFactory, ContinuousPlayer, ContributionProvider, ContributionRegistry, ContributionStore, CubicBezierCurve, CurveContext, CurveTypeEnum, CustomEvent, CustomPath2D, CustomSymbolClass, DEFAULT_ITEM_SPACE_COL, DEFAULT_ITEM_SPACE_ROW, DEFAULT_LABEL_SPACE, DEFAULT_PAGER_SPACE, DEFAULT_SHAPE_SIZE, DEFAULT_SHAPE_SPACE, DEFAULT_STATES$1 as DEFAULT_STATES, DEFAULT_TEXT_FONT_FAMILY$1 as DEFAULT_TEXT_FONT_FAMILY, DEFAULT_TITLE_SPACE, DEFAULT_VALUE_SPACE, DataLabel, DataZoom, DataZoomActiveTag, DebugDrawItemInterceptorContribution, DefaultArcAllocate, DefaultArcAttribute, DefaultArcRenderContribution, DefaultAreaAllocate, DefaultAreaAttribute, DefaultAreaTextureRenderContribution, DefaultAttribute, DefaultBaseBackgroundRenderContribution, DefaultBaseClipRenderAfterContribution, DefaultBaseClipRenderBeforeContribution, DefaultBaseInteractiveRenderContribution, DefaultBaseTextureRenderContribution, DefaultCanvasAllocate, DefaultCanvasArcRender, DefaultCanvasAreaRender, DefaultCanvasCircleRender, DefaultCanvasGroupRender, DefaultCanvasImageRender, DefaultCanvasLineRender, DefaultCanvasPathRender, DefaultCanvasPolygonRender, DefaultCanvasRectRender, DefaultCanvasSymbolRender, DefaultCanvasTextRender, DefaultCircleAllocate, DefaultCircleAttribute, DefaultCircleRenderContribution, DefaultConnectAttribute, DefaultDebugAttribute, DefaultFillStyle, DefaultGlobal, DefaultGlobalPickerService, DefaultGlyphAttribute, DefaultGraphicAllocate, DefaultGraphicMemoryManager, DefaultGraphicService, DefaultGraphicUtil, DefaultGroupAttribute, DefaultGroupBackgroundRenderContribution, DefaultImageAttribute, DefaultImageRenderContribution, DefaultLayerService, DefaultLayout, DefaultLineAllocate, DefaultLineAttribute, DefaultMat4Allocate, DefaultMatrixAllocate, DefaultPathAllocate, DefaultPathAttribute, DefaultPickService, DefaultPickStyle, DefaultPolygonAttribute, DefaultRect3dAttribute, DefaultRectAllocate, DefaultRectAttribute, DefaultRectRenderContribution, DefaultRenderService, DefaultRichTextAttribute, DefaultRichTextIconAttribute, DefaultStarAttribute, DefaultStrokeStyle, DefaultStyle, DefaultSymbolAllocate, DefaultSymbolAttribute, DefaultSymbolClipRangeStrokeRenderContribution, DefaultSymbolRenderContribution, DefaultTextAllocate, DefaultTextAttribute, DefaultTextMeasureContribution, DefaultTextStyle, DefaultTicker, DefaultTimeline, DefaultTransform, DefaultTransformUtil, DefaultWindow, Direction, DirectionEnum, DirectionalLight, DiscreteLegend, DiscretePlayer, Dissolve, Distortion, DragNDrop, DrawContribution, DrawItemInterceptor, DynamicLayerHandlerContribution, Easing, Edge, EditModule, EmptyContext2d, EmptyTip, EnvContribution, EventManager, EventSystem, EventTarget, FORMAT_ALL_TEXT_COMMAND, FORMAT_ELEMENT_COMMAND, FORMAT_TEXT_COMMAND, Factory, FadeIn, FadeOut, FederatedEvent, FederatedMouseEvent, FederatedPointerEvent, FederatedWheelEvent, FlexLayoutPlugin, Fragment, FromTo, GLYPH_NUMBER_TYPE, GRAPHIC_UPDATE_TAG_KEY, GROUP_NUMBER_TYPE, GaussianBlur, Generator, Gesture, GifImage, Glitch, GlobalPickerService, Glyph, GlyphRender, GradientParser, Graphic, GraphicCreator$1 as GraphicCreator, GraphicFactory, GraphicPicker, GraphicRender, GraphicService, GraphicStateExtension, GraphicUtil, Grayscale, Group, GroupFadeIn, GroupFadeOut, GroupRender, GroupRenderContribution, GroupTransition, GroupUpdateAABBBoundsMode, GrowAngleIn, GrowAngleOut, GrowCenterIn, GrowCenterOut, GrowHeightIn, GrowHeightOut, GrowIn, GrowOut, GrowPointsIn, GrowPointsOut, GrowPointsXIn, GrowPointsXOut, GrowPointsYIn, GrowPointsYOut, GrowRadiusIn, GrowRadiusOut, GrowWidthIn, GrowWidthOut, HtmlAttributePlugin, IContainPointMode, IDataZoomEvent, IDataZoomInteractiveEvent, IMAGE_NUMBER_TYPE, IMarkAreaLabelPosition, IMarkCommonArcLabelPosition, IMarkLineLabelPosition, IMarkPointItemPosition, IOperateType, Image$1 as Image, ImageRender, ImageRenderContribution, IncreaseCount, IncrementalDrawContribution, Indicator, InputRichText, InputText, InteractiveDrawItemInterceptorContribution, InteractivePickItemInterceptorContribution, InteractiveSubRenderContribution, LEGEND_ELEMENT_NAME, LINE_NUMBER_TYPE, LabelBase, LabelItemAppear, LabelItemDisappear, Layer, LayerFactory, LayerService, LegendEvent, LegendStateValue, Line$1 as Line, LineAxis, LineAxisGrid, LineCrosshair, LineLabel, LineRender, Linear, LinearClosed, LinkPath, Lottie, ManualTicker, MarkArcArea, MarkArcLine, MarkArea, MarkLine, MarkPoint, Mat4Allocate, MathArcPicker, MathAreaPicker, MathCirclePicker, MathGlyphPicker, MathImagePicker, MathLinePicker, MathPathPicker, MathPickerContribution, MathPolygonPicker, MathRectPicker, MathRichTextPicker, MathSymbolPicker, MathTextPicker, MatrixAllocate, MeasureModeEnum, MiniappEntry, MonotoneX, MonotoneY, MorphingPath, MotionPath, MoveIn, MoveOut, MoveRotateIn, MoveRotateOut, MoveScaleIn, MoveScaleOut, MultiToOneMorphingPath, NOWORK_ANIMATE_ATTR, Node, NodeEntry, OrthoCamera, OutputRichText, PATH_NUMBER_TYPE, POLYGON_NUMBER_TYPE, PURE_STYLE_KEY, PYRAMID3D_NUMBER_TYPE, Pager, Particle, Path, PathRender, PathRenderContribution, PerformanceRAF, PickItemInterceptor, PickServiceInterceptor, PickerRegistry, PickerService, Pixelation, PlayerEventEnum, PluginRegistry, PluginService, Polygon, PolygonCrosshair, PolygonRender, PolygonRenderContribution, PolygonSectorCrosshair, PopTip, PoptipAppear, PoptipDisappear, PulseAnimate, Pyramid3d, Pyramid3dRender, REACT_TO_CANOPUS_EVENTS, REACT_TO_CANOPUS_EVENTS_LIST, RECT3D_NUMBER_TYPE, RECT_NUMBER_TYPE, RICHTEXT_NUMBER_TYPE, Radio, RafBasedSTO, ReactAttributePlugin, Rect, Rect3DRender, Rect3d, RectCrosshair, RectLabel, RectRender, RectRenderContribution, ReflectSegContext, RenderSelector, RenderService, RendererRegistry, ResourceLoader, RichText, RichTextEditPlugin, RichTextRender, RotateBySphereAnimate, RotateIn, RotateOut, SLIDER_ELEMENT_NAME, STAR_NUMBER_TYPE, STATUS$1 as STATUS, SVG_ATTRIBUTE_MAP, SVG_ATTRIBUTE_MAP_KEYS, SVG_PARSE_ATTRIBUTE_MAP, SVG_PARSE_ATTRIBUTE_MAP_KEYS, SYMBOL_NUMBER_TYPE, ScaleIn, ScaleOut, ScrollBar, SectorCrosshair, SegContext, Segment, SeriesNumberCellStateValue, SeriesNumberEvent, ShadowPickServiceInterceptorContribution, ShadowRoot, ShadowRootDrawItemInterceptorContribution, ShadowRootPickItemInterceptorContribution, SizeContinuousLegend, SlideIn, SlideOut, SlideOutRichText, SlideRichText, Slider, SpinIn, SpinOut, SplitRectAfterRenderContribution, SplitRectBeforeRenderContribution, Stage, StageFactory, Star, StarRender, StarRenderContribution, State, StateDefinitionCompiler, StateEngine, StaticLayerHandlerContribution, Step$1 as Step, StepClosed, StoryLabelItem, StreamLight, StrokeIn, StrokeOut, Switch, Symbol$1 as Symbol, SymbolLabel, SymbolRender, SymbolRenderContribution, TEXT_NUMBER_TYPE, TableSeriesNumber, Tag, TagPointsUpdate, Text, TextDirection, TextMeasureContribution, TextRender, TextRenderContribution, Theme, Timeline, Title, Tooltip, TopZIndex, TransformUtil, Update, UpdateTag, VArc, VArc3d, VArea, VCircle, VGlobal, VGlyph, VGroup, VImage, VLine, VPath, VPolygon, VPyramid3d, VRect, VRect3d, VRichText, VSymbol, VTag, VText, VWindow, ViewTransform3dPlugin, VirtualLayerHandlerContribution, WILDCARD, WeatherBox, WindowHandlerContribution, WrapText, XMLParser, _calculateLineHeight, _interpolateColor, _registerArc, acquireSharedVRenderApp, addArcToBezierPath$1 as addArcToBezierPath, addAttributeToPrototype, alignBezierCurves, alignSubpath, alignTextInLine, alternatingWave, angle, angleLabelOrientAttribute, angleTo, application, applyTransformOnBezierCurves, arc3dModule, arcModule, areaModule, bezier, bezierCurversToPath, binarySplitPolygon, bindArc3dCanvasPickerContribution, bindArc3dRenderModule, bindArcCanvasPickerContribution, bindArcMathPickerContribution, bindArcRenderModule, bindAreaCanvasPickerContribution, bindAreaMathPickerContribution, bindAreaRenderModule, bindBrowserEnv, bindCircleCanvasPickerContribution, bindCircleMathPickerContribution, bindCircleRenderModule, bindContributionProvider, bindContributionProviderNoSingletonScope, bindFeishuEnv, bindGifImageCanvasPickerContribution, bindGifImageRenderContribution, bindGlyphCanvasPickerContribution, bindGlyphMathPickerContribution, bindGlyphRenderModule, bindHarmonyEnv, bindImageCanvasPickerContribution, bindImageMathPickerContribution, bindImageRenderModule, bindLineCanvasPickerContribution, bindLineMathPickerContribution, bindLineRenderModule, bindLottieCanvasPickerContribution, bindLottieRenderContribution, bindLynxEnv, bindMathPicker, bindNodeEnv, bindPathCanvasPickerContribution, bindPathMathPickerContribution, bindPathRenderModule, bindPolygonCanvasPickerContribution, bindPolygonMathPickerContribution, bindPolygonRenderModule, bindPyramid3dCanvasPickerContribution, bindPyramid3dRenderModule, bindRect3dCanvasPickerContribution, bindRect3dRenderModule, bindRectCanvasPickerContribution, bindRectMathPickerContribution, bindRectRenderModule, bindRichTextMathPickerContribution, bindRichtextCanvasPickerContribution, bindRichtextRenderModule, bindStarRenderModule, bindSymbolCanvasPickerContribution, bindSymbolMathPickerContribution, bindSymbolRenderModule, bindTTEnv, bindTaroEnv, bindTextCanvasPickerContribution, bindTextMathPickerContribution, bindTextRenderModule, bindWxEnv, bootstrapLegacyVRenderRuntime, bootstrapVRenderBrowserApp, bootstrapVRenderMiniApp, bootstrapVRenderNodeApp, boundStroke, builtInSymbolStrMap, builtinSymbols, builtinSymbolsMap, calcLineCache, calculateArcCornerRadius, calculateLineHeight, canvasAllocate, cartesianTicks, centerToCorner, centroidOfSubpath, circleBounds, circleModule, clampRadian, clock, colorEqual, colorStringInterpolationToStr, columnCenterToEdge, columnEdgeToCenter, columnLeftToRight, columnRightToLeft, computeOffsetForlimit, configureRuntimeApplicationForApp, container, continuousTicks, contrastAccessibilityChecker, convertDomainToTickData, cornerTangents, cornerToCenter, createBrowserApp as createApp, createArc, createArc3d, createArea, createBrowserApp, createBrowserVRenderApp, createCanvasEventTransformer, createCircle, createColor, createComponentAnimator, createConicalGradient, createContributionProvider$1 as createContributionProvider, createEventTransformer, createFeishuVRenderApp, createGifImage, createGlyph, createGraphic$1 as createGraphic, createGroup, createHarmonyVRenderApp, createImage, createImageElement$1 as createImageElement, createLine, createLottie, createLynxVRenderApp, createMat4, createMiniappApp$1 as createMiniappApp, createNodeApp$1 as createNodeApp, createNodeVRenderApp, createPath, createPolygon, createPyramid3d, createRect, createRect3d, createRectPath, createRichText, createShadowRoot, createStage, createStar, createSymbol, createTTVRenderApp, createTaroVRenderApp, createText, createTextGraphicByType, createWrapText, createWxVRenderApp, cubicCalc, cubicLength, cubicPointAt, cubicSubdivide, decodeReactDom, defaultArcAllocate, defaultArcBackgroundRenderContribution, defaultArcRenderContribution, defaultArcTextureRenderContribution, defaultAreaAllocate, defaultBaseBackgroundRenderContribution, defaultBaseClipRenderAfterContribution, defaultBaseClipRenderBeforeContribution, defaultBaseTextureRenderContribution, defaultCircleAllocate, defaultCircleBackgroundRenderContribution, defaultCircleRenderContribution, defaultCircleTextureRenderContribution, defaultGraphicMemoryManager, defaultGroupBackgroundRenderContribution, defaultImageBackgroundRenderContribution, defaultImageRenderContribution, defaultLineAllocate, defaultPathAllocate, defaultRectAllocate, defaultRectBackgroundRenderContribution, defaultRectRenderContribution, defaultRectTextureRenderContribution, defaultStarBackgroundRenderContribution, defaultStarTextureRenderContribution, defaultSymbolAllocate, defaultSymbolBackgroundRenderContribution, defaultSymbolClipRangeStrokeRenderContribution, defaultSymbolRenderContribution, defaultSymbolTextureRenderContribution, defaultTextAllocate, defaultTicker, defaultTimeline, deltaXYToAngle, diagonalCenterToEdge, diagonalTopLeftToBottomRight, diff, divideCubic, drawArc, drawArcPath$1 as drawArcPath, drawAreaSegments, drawBackgroundImage, drawImageWithLayout, drawIncrementalAreaSegments, drawIncrementalSegments, drawSegments, enumCommandMap, fillVisible, findBestMorphingRotation, findConfigIndexByCursorIdx, findCursorIdxByConfigIndex, findNextGraphic, flatten_simplify, foreach, foreachAsync, fuzzyEqualNumber, genBasisSegments, genBasisTypeSegments, genLinearClosedSegments, genLinearClosedTypeSegments, genLinearSegments, genLinearTypeSegments, genMonotoneXSegments, genMonotoneXTypeSegments, genMonotoneYSegments, genMonotoneYTypeSegments, genNumberType, genStepClosedSegments, genStepSegments, genStepTypeSegments, generatorPathEasingFunc, getAttributeFromDefaultAttrList, getAxisBreakSymbolAttrs, getBackgroundImage, getCircleLabelPosition, getCirclePoints, getCircleVerticalVector, getConicGradientAt, getCurrentEnv, getDefaultCharacterConfig, getElMap, getExtraModelMatrix, getHorizontalPath, getLegacyBindingContext, getMarksByName, getModelMatrix, getNoneGroupMarksByName, getPolarAngleLabelPosition, getPolygonPath, getRichTextBounds, getRuntimeInstallerBindingContext, getRuntimeInstallerGlobal, getScaledStroke, getSharedVRenderApp, getSizeHandlerPath, getTextAlignAttrOfVerticalDir, getTextBounds, getTextType, getTheme, getThemeFromGroup, getVerticalCoord, getVerticalPath, globalTheme, glyphModule, graphicCreator$1 as graphicCreator, graphicService, graphicUtil, hasOverlap, htmlAttributeTransform, identityMat4, imageModule, incrementalAddTo, initAllEnv, initBrowserEnv, initFeishuEnv, initHarmonyEnv, initLynxEnv, initNodeEnv, initTTEnv, initTaroEnv, initTextMeasure, initWxEnv, installBrowserEnvToApp, installBrowserPickersToApp, installDefaultGraphicsToApp, installFeishuEnvToApp, installHarmonyEnvToApp, installLynxEnvToApp, installMathPickersToApp, installNodeEnvToApp, installNodePickersToApp, installPoptipToApp, installRuntimeContributionModule, installRuntimeDrawContributionsToApp, installRuntimeGraphicRenderersToApp, installRuntimePickersToApp, installScrollbarToApp, installTTEnvToApp, installTaroEnvToApp, installWxEnvToApp, interpolateColor, interpolateGradientConicalColor, interpolateGradientLinearColor, interpolateGradientRadialColor, interpolatePureColorArray, interpolatePureColorArrayToStr, intersect, isBrowserEnv, isInRange, isNoRepeatSizingMode, isNodeEnv, isPostiveXAxis, isRichText, isSvg, isVisible, isXML, jsx, labelSmartInvert, layerService, length, limitShapeInBounds, lineModule, linearDiscreteTicks, loadAllEnv, loadAllModule, loadBrowserEnv, loadFeishuEnv, loadHarmonyEnv, loadLynxEnv, loadMathPicker, loadNodeEnv, loadPoptip, loadScrollbar, loadTTEnv, loadTaroEnv, loadWxEnv, lookAt, mapToCanvasPointForCanvas, mat3Tomat4, mat4Allocate, matrixAllocate, measureTextSize, morphPath, multiToOneMorph, multiplyMat4Mat3, multiplyMat4Mat4, newThemeObj, normalize$1 as normalize, oneToMultiMorph, ortho, parsePadding, parseStroke, parseSvgPath, particleEffect, pathModule, pathToBezierCurves, point$3 as point, pointEqual, pointInterpolation, pointInterpolationHighPerformance, pointsEqual, pointsInterpolation, polarAngleAxisDiscreteTicks, polarTicks, polygonModule, preLoadAllModule, pulseWave, pyramid3dModule, quadCalc, quadLength, quadPointAt, rafBasedSto, randomOpacity, reactAttributeTransform, rect3dModule, rectFillVisible, rectModule, rectStrokeVisible, recursiveCallBinarySplit, refreshRuntimeInstallerContributions, registerAnimate, registerArc, registerArc3d, registerArc3dGraphic, registerArcDataLabel, registerArcGraphic, registerArea, registerAreaGraphic, registerCircle, registerCircleGraphic, registerCustomAnimate, registerDirectionalLight, registerFlexLayoutPlugin, registerGifGraphic, registerGifImage, registerGlobalEventTransformer, registerGlyph, registerGlyphGraphic, registerGraphic, registerGroup, registerGroupGraphic, registerHtmlAttributePlugin, registerImage, registerImageGraphic, registerLine, registerLineDataLabel, registerLineGraphic, registerMarkArcAreaAnimate, registerMarkArcLineAnimate, registerMarkAreaAnimate, registerMarkLineAnimate, registerMarkPointAnimate, registerOrthoCamera, registerPath, registerPathGraphic, registerPolygon, registerPolygonGraphic, registerPyramid3d, registerPyramid3dGraphic, registerReactAttributePlugin, registerRect, registerRect3d, registerRect3dGraphic, registerRectDataLabel, registerRectGraphic, registerRichtext, registerRichtextGraphic, registerShadowRoot, registerShadowRootGraphic, registerStar, registerStarGraphic, registerSymbol, registerSymbolDataLabel, registerSymbolGraphic, registerText, registerTextGraphic, registerViewTransform3dPlugin, registerWindowEventTransformer, registerWrapText, registerWrapTextGraphic, releaseSharedVRenderApp, removeRepeatPoint, renderCommandList, resolveBackgroundDrawMode, resolveBackgroundParamsByImageSizing, resolveBackgroundPosition, resolveBackgroundSizing, resolveContainerBinding$1 as resolveContainerBinding, resolveImageMode, resolveImageRepeatMode, resolveRenderableImageSize, rewriteProto, richTextAttributeTransform, richtextModule, rippleEffect, rotateX, rotateY, rotateZ, rotationScan, roughModule, rowBottomToTop, rowCenterToEdge, rowEdgeToCenter, rowTopToBottom, runFill, runStroke, scale, scaleMat4, segments, setPoptipTheme, shouldClipImageByLayout, shouldUseMat4, smartInvertStrategy, snakeWave, snapLength, spiralEffect, splitArc, splitArea, splitCircle, splitLine, splitPath, splitPolygon, splitRect, splitToGrids, starModule, strCommandMap, strokeVisible, symbolModule, tan2AngleToAngle, textAttributesToStyle, textDrawOffsetX, textDrawOffsetY, textIntersect, textLayoutOffsetY, textModule, ticks, transformMat4, transformPointForCanvas, transformUtil, transitionRegistry, translate, traverseGroup, version, verticalLayout, vglobal, waitForAllSubLayers, wrapCanvas, wrapContext, xul };
|
|
55465
|
+
export { AComponentAnimate, ACustomAnimate, ARC3D_NUMBER_TYPE, ARC_NUMBER_TYPE, AREA_NUMBER_TYPE, AStageAnimate, AXIS_ELEMENT_NAME, AbstractComponent, AbstractGraphicRender, Animate, AnimateExecutor, AnimateMode, AnimateStatus, Step as AnimateStep, AnimateStepType, AnimationStateManager, AnimationStateStore, AnimationStates, AnimationTransitionRegistry, AppContext, Application, Arc, Arc3d, Arc3dRender, ArcInfo, ArcLabel, ArcRender, ArcRenderContribution, ArcSegment, Area, AreaRender, AreaRenderContribution, AttributeUpdateType, AutoEnablePlugins, AxisStateValue, Base3dRender, BaseCanvas, BaseEnvContribution, BasePlayer, BaseRender, BaseRenderContributionTime, BaseWindowHandlerContribution, Basis, BeforeRenderConstribution, BoundsContext, BoundsPicker, BrowserEntry, BrowserEnvContribution, Brush, CIRCLE_NUMBER_TYPE, Canvas3DDrawItemInterceptor, Canvas3DPickItemInterceptor, CanvasArc3dPicker, CanvasArcPicker, CanvasAreaPicker, CanvasCirclePicker, CanvasFactory, CanvasGifImagePicker, CanvasGlyphPicker, CanvasGroupPicker, CanvasImagePicker, CanvasLinePicker, CanvasLottiePicker, CanvasPathPicker, CanvasPickerContribution, CanvasPolygonPicker, CanvasPyramid3dPicker, CanvasRect3dPicker, CanvasRectPicker, CanvasRichTextPicker, CanvasStarPicker, CanvasSymbolPicker, CanvasTextLayout, CanvasTextPicker, CheckBox, Circle, CircleAxis, CircleAxisGrid, CircleCrosshair, CircleRender, CircleRenderContribution, ClipAngleAnimate, ClipDirectionAnimate, ClipGraphicAnimate, ClipIn, ClipOut, ClipRadiusAnimate, ColorContinuousLegend, ColorInterpolate, ColorStore, ColorType, CommonDrawItemInterceptorContribution, CommonRenderContribution, ComponentAnimator, Context2dFactory, ContinuousPlayer, ContributionProvider, ContributionRegistry, ContributionStore, CubicBezierCurve, CurveContext, CurveTypeEnum, CustomEvent, CustomPath2D, CustomSymbolClass, DEFAULT_ITEM_SPACE_COL, DEFAULT_ITEM_SPACE_ROW, DEFAULT_LABEL_SPACE, DEFAULT_PAGER_SPACE, DEFAULT_SHAPE_SIZE, DEFAULT_SHAPE_SPACE, DEFAULT_STATES$1 as DEFAULT_STATES, DEFAULT_TEXT_FONT_FAMILY$1 as DEFAULT_TEXT_FONT_FAMILY, DEFAULT_TITLE_SPACE, DEFAULT_VALUE_SPACE, DataLabel, DataZoom, DataZoomActiveTag, DebugDrawItemInterceptorContribution, DefaultArcAllocate, DefaultArcAttribute, DefaultArcRenderContribution, DefaultAreaAllocate, DefaultAreaAttribute, DefaultAreaTextureRenderContribution, DefaultAttribute, DefaultBaseBackgroundRenderContribution, DefaultBaseClipRenderAfterContribution, DefaultBaseClipRenderBeforeContribution, DefaultBaseInteractiveRenderContribution, DefaultBaseTextureRenderContribution, DefaultCanvasAllocate, DefaultCanvasArc3DRender, DefaultCanvasArcRender, DefaultCanvasAreaRender, DefaultCanvasCircleRender, DefaultCanvasGroupRender, DefaultCanvasImageRender, DefaultCanvasLineRender, DefaultCanvasPathRender, DefaultCanvasPolygonRender, DefaultCanvasPyramid3dRender, DefaultCanvasRect3dRender, DefaultCanvasRectRender, DefaultCanvasSymbolRender, DefaultCanvasTextRender, DefaultCircleAllocate, DefaultCircleAttribute, DefaultCircleRenderContribution, DefaultConnectAttribute, DefaultDebugAttribute, DefaultFillStyle, DefaultGlobal, DefaultGlobalPickerService, DefaultGlyphAttribute, DefaultGraphicAllocate, DefaultGraphicMemoryManager, DefaultGraphicService, DefaultGraphicUtil, DefaultGroupAttribute, DefaultGroupBackgroundRenderContribution, DefaultImageAttribute, DefaultImageRenderContribution, DefaultLayerService, DefaultLayout, DefaultLineAllocate, DefaultLineAttribute, DefaultMat4Allocate, DefaultMatrixAllocate, DefaultPathAllocate, DefaultPathAttribute, DefaultPickService, DefaultPickStyle, DefaultPolygonAttribute, DefaultRect3dAttribute, DefaultRectAllocate, DefaultRectAttribute, DefaultRectRenderContribution, DefaultRenderService, DefaultRichTextAttribute, DefaultRichTextIconAttribute, DefaultStarAttribute, DefaultStrokeStyle, DefaultStyle, DefaultSymbolAllocate, DefaultSymbolAttribute, DefaultSymbolClipRangeStrokeRenderContribution, DefaultSymbolRenderContribution, DefaultTextAllocate, DefaultTextAttribute, DefaultTextMeasureContribution, DefaultTextStyle, DefaultTicker, DefaultTimeline, DefaultTransform, DefaultTransformUtil, DefaultWindow, Direction, DirectionEnum, DirectionalLight, DiscreteLegend, DiscretePlayer, Dissolve, Distortion, DragNDrop, DrawContribution, DrawItemInterceptor, DynamicLayerHandlerContribution, Easing, Edge, EditModule, EmptyContext2d, EmptyTip, EnvContribution, EventManager, EventSystem, EventTarget, FORMAT_ALL_TEXT_COMMAND, FORMAT_ELEMENT_COMMAND, FORMAT_TEXT_COMMAND, Factory, FadeIn, FadeOut, FederatedEvent, FederatedMouseEvent, FederatedPointerEvent, FederatedWheelEvent, FlexLayoutPlugin, Fragment, FromTo, GLYPH_NUMBER_TYPE, GRAPHIC_UPDATE_TAG_KEY, GROUP_NUMBER_TYPE, GaussianBlur, Generator, Gesture, GifImage, Glitch, GlobalPickerService, Glyph, GlyphRender, GradientParser, Graphic, GraphicCreator$1 as GraphicCreator, GraphicFactory, GraphicPicker, GraphicRender, GraphicService, GraphicStateExtension, GraphicUtil, Grayscale, Group, GroupFadeIn, GroupFadeOut, GroupRender, GroupRenderContribution, GroupTransition, GroupUpdateAABBBoundsMode, GrowAngleIn, GrowAngleOut, GrowCenterIn, GrowCenterOut, GrowHeightIn, GrowHeightOut, GrowIn, GrowOut, GrowPointsIn, GrowPointsOut, GrowPointsXIn, GrowPointsXOut, GrowPointsYIn, GrowPointsYOut, GrowRadiusIn, GrowRadiusOut, GrowWidthIn, GrowWidthOut, HtmlAttributePlugin, IContainPointMode, IDataZoomEvent, IDataZoomInteractiveEvent, IMAGE_NUMBER_TYPE, IMarkAreaLabelPosition, IMarkCommonArcLabelPosition, IMarkLineLabelPosition, IMarkPointItemPosition, IOperateType, Image$1 as Image, ImageRender, ImageRenderContribution, IncreaseCount, IncrementalDrawContribution, Indicator, InputRichText, InputText, InteractiveDrawItemInterceptorContribution, InteractivePickItemInterceptorContribution, InteractiveSubRenderContribution, LEGEND_ELEMENT_NAME, LINE_NUMBER_TYPE, LabelBase, LabelItemAppear, LabelItemDisappear, Layer, LayerFactory, LayerService, LegendEvent, LegendStateValue, Line$1 as Line, LineAxis, LineAxisGrid, LineCrosshair, LineLabel, LineRender, Linear, LinearClosed, LinkPath, Lottie, ManualTicker, MarkArcArea, MarkArcLine, MarkArea, MarkLine, MarkPoint, Mat4Allocate, MathArcPicker, MathAreaPicker, MathCirclePicker, MathGlyphPicker, MathImagePicker, MathLinePicker, MathPathPicker, MathPickerContribution, MathPolygonPicker, MathRectPicker, MathRichTextPicker, MathSymbolPicker, MathTextPicker, MatrixAllocate, MeasureModeEnum, MiniappEntry, MonotoneX, MonotoneY, MorphingPath, MotionPath, MoveIn, MoveOut, MoveRotateIn, MoveRotateOut, MoveScaleIn, MoveScaleOut, MultiToOneMorphingPath, NOWORK_ANIMATE_ATTR, Node, NodeEntry, OrthoCamera, OutputRichText, PATH_NUMBER_TYPE, POLYGON_NUMBER_TYPE, PURE_STYLE_KEY, PYRAMID3D_NUMBER_TYPE, Pager, Particle, Path, PathRender, PathRenderContribution, PerformanceRAF, PickItemInterceptor, PickServiceInterceptor, PickerRegistry, PickerService, Pixelation, PlayerEventEnum, PluginRegistry, PluginService, Polygon, PolygonCrosshair, PolygonRender, PolygonRenderContribution, PolygonSectorCrosshair, PopTip, PoptipAppear, PoptipDisappear, PulseAnimate, Pyramid3d, Pyramid3dRender, REACT_TO_CANOPUS_EVENTS, REACT_TO_CANOPUS_EVENTS_LIST, RECT3D_NUMBER_TYPE, RECT_NUMBER_TYPE, RICHTEXT_NUMBER_TYPE, Radio, RafBasedSTO, ReactAttributePlugin, Rect, Rect3DRender, Rect3d, RectCrosshair, RectLabel, RectRender, RectRenderContribution, ReflectSegContext, RenderSelector, RenderService, RendererRegistry, ResourceLoader, RichText, RichTextEditPlugin, RichTextRender, RotateBySphereAnimate, RotateIn, RotateOut, SLIDER_ELEMENT_NAME, STAR_NUMBER_TYPE, STATUS$1 as STATUS, SVG_ATTRIBUTE_MAP, SVG_ATTRIBUTE_MAP_KEYS, SVG_PARSE_ATTRIBUTE_MAP, SVG_PARSE_ATTRIBUTE_MAP_KEYS, SYMBOL_NUMBER_TYPE, ScaleIn, ScaleOut, ScrollBar, SectorCrosshair, SegContext, Segment, SeriesNumberCellStateValue, SeriesNumberEvent, ShadowPickServiceInterceptorContribution, ShadowRoot, ShadowRootDrawItemInterceptorContribution, ShadowRootPickItemInterceptorContribution, SizeContinuousLegend, SlideIn, SlideOut, SlideOutRichText, SlideRichText, Slider, SpinIn, SpinOut, SplitRectAfterRenderContribution, SplitRectBeforeRenderContribution, Stage, StageFactory, Star, StarRender, StarRenderContribution, State, StateDefinitionCompiler, StateEngine, StaticLayerHandlerContribution, Step$1 as Step, StepClosed, StoryLabelItem, StreamLight, StrokeIn, StrokeOut, Switch, Symbol$1 as Symbol, SymbolLabel, SymbolRender, SymbolRenderContribution, TEXT_NUMBER_TYPE, TableSeriesNumber, Tag, TagPointsUpdate, Text, TextDirection, TextMeasureContribution, TextRender, TextRenderContribution, Theme, Timeline, Title, Tooltip, TopZIndex, TransformUtil, Update, UpdateTag, VArc, VArc3d, VArea, VCircle, VGlobal, VGlyph, VGroup, VImage, VLine, VPath, VPolygon, VPyramid3d, VRect, VRect3d, VRichText, VSymbol, VTag, VText, VWindow, ViewTransform3dPlugin, VirtualLayerHandlerContribution, WILDCARD, WeatherBox, WindowHandlerContribution, WrapText, XMLParser, _calculateLineHeight, _interpolateColor, _registerArc, acquireSharedVRenderApp, addArcToBezierPath$1 as addArcToBezierPath, addAttributeToPrototype, alignBezierCurves, alignSubpath, alignTextInLine, alternatingWave, angle, angleLabelOrientAttribute, angleTo, application, applyTransformOnBezierCurves, arc3dModule, arcModule, areaModule, bezier, bezierCurversToPath, binarySplitPolygon, bindArc3dCanvasPickerContribution, bindArc3dRenderModule, bindArcCanvasPickerContribution, bindArcMathPickerContribution, bindArcRenderModule, bindAreaCanvasPickerContribution, bindAreaMathPickerContribution, bindAreaRenderModule, bindBrowserEnv, bindCircleCanvasPickerContribution, bindCircleMathPickerContribution, bindCircleRenderModule, bindContributionProvider, bindContributionProviderNoSingletonScope, bindFeishuEnv, bindGifImageCanvasPickerContribution, bindGifImageRenderContribution, bindGlyphCanvasPickerContribution, bindGlyphMathPickerContribution, bindGlyphRenderModule, bindHarmonyEnv, bindImageCanvasPickerContribution, bindImageMathPickerContribution, bindImageRenderModule, bindLineCanvasPickerContribution, bindLineMathPickerContribution, bindLineRenderModule, bindLottieCanvasPickerContribution, bindLottieRenderContribution, bindLynxEnv, bindMathPicker, bindNodeEnv, bindPathCanvasPickerContribution, bindPathMathPickerContribution, bindPathRenderModule, bindPolygonCanvasPickerContribution, bindPolygonMathPickerContribution, bindPolygonRenderModule, bindPyramid3dCanvasPickerContribution, bindPyramid3dRenderModule, bindRect3dCanvasPickerContribution, bindRect3dRenderModule, bindRectCanvasPickerContribution, bindRectMathPickerContribution, bindRectRenderModule, bindRichTextMathPickerContribution, bindRichtextCanvasPickerContribution, bindRichtextRenderModule, bindStarRenderModule, bindSymbolCanvasPickerContribution, bindSymbolMathPickerContribution, bindSymbolRenderModule, bindTTEnv, bindTaroEnv, bindTextCanvasPickerContribution, bindTextMathPickerContribution, bindTextRenderModule, bindWxEnv, bootstrapLegacyVRenderRuntime, bootstrapVRenderBrowserApp, bootstrapVRenderMiniApp, bootstrapVRenderNodeApp, boundStroke, builtInSymbolStrMap, builtinSymbols, builtinSymbolsMap, calcLineCache, calculateArcCornerRadius, calculateLineHeight, canvasAllocate, cartesianTicks, centerToCorner, centroidOfSubpath, circleBounds, circleModule, clampRadian, clock, colorEqual, colorStringInterpolationToStr, columnCenterToEdge, columnEdgeToCenter, columnLeftToRight, columnRightToLeft, computeOffsetForlimit, configureRuntimeApplicationForApp, container, continuousTicks, contrastAccessibilityChecker, convertDomainToTickData, cornerTangents, cornerToCenter, createBrowserApp as createApp, createArc, createArc3d, createArea, createBrowserApp, createBrowserVRenderApp, createCanvasEventTransformer, createCircle, createColor, createComponentAnimator, createConicalGradient, createContributionProvider$1 as createContributionProvider, createEventTransformer, createFeishuVRenderApp, createGifImage, createGlyph, createGraphic$1 as createGraphic, createGroup, createHarmonyVRenderApp, createImage, createImageElement$1 as createImageElement, createLine, createLottie, createLynxVRenderApp, createMat4, createMiniappApp$1 as createMiniappApp, createNodeApp$1 as createNodeApp, createNodeVRenderApp, createPath, createPolygon, createPyramid3d, createRect, createRect3d, createRectPath, createRichText, createShadowRoot, createStage, createStar, createSymbol, createTTVRenderApp, createTaroVRenderApp, createText, createTextGraphicByType, createWrapText, createWxVRenderApp, cubicCalc, cubicLength, cubicPointAt, cubicSubdivide, decodeReactDom, defaultArcAllocate, defaultArcBackgroundRenderContribution, defaultArcRenderContribution, defaultArcTextureRenderContribution, defaultAreaAllocate, defaultBaseBackgroundRenderContribution, defaultBaseClipRenderAfterContribution, defaultBaseClipRenderBeforeContribution, defaultBaseTextureRenderContribution, defaultCircleAllocate, defaultCircleBackgroundRenderContribution, defaultCircleRenderContribution, defaultCircleTextureRenderContribution, defaultGraphicMemoryManager, defaultGroupBackgroundRenderContribution, defaultImageBackgroundRenderContribution, defaultImageRenderContribution, defaultLineAllocate, defaultPathAllocate, defaultRectAllocate, defaultRectBackgroundRenderContribution, defaultRectRenderContribution, defaultRectTextureRenderContribution, defaultStarBackgroundRenderContribution, defaultStarTextureRenderContribution, defaultSymbolAllocate, defaultSymbolBackgroundRenderContribution, defaultSymbolClipRangeStrokeRenderContribution, defaultSymbolRenderContribution, defaultSymbolTextureRenderContribution, defaultTextAllocate, defaultTicker, defaultTimeline, deltaXYToAngle, diagonalCenterToEdge, diagonalTopLeftToBottomRight, diff, divideCubic, drawArc, drawArcPath$1 as drawArcPath, drawAreaSegments, drawBackgroundImage, drawImageWithLayout, drawIncrementalAreaSegments, drawIncrementalSegments, drawSegments, enumCommandMap, fillVisible, findBestMorphingRotation, findConfigIndexByCursorIdx, findCursorIdxByConfigIndex, findNextGraphic, flatten_simplify, foreach, foreachAsync, fuzzyEqualNumber, genBasisSegments, genBasisTypeSegments, genLinearClosedSegments, genLinearClosedTypeSegments, genLinearSegments, genLinearTypeSegments, genMonotoneXSegments, genMonotoneXTypeSegments, genMonotoneYSegments, genMonotoneYTypeSegments, genNumberType, genStepClosedSegments, genStepSegments, genStepTypeSegments, generatorPathEasingFunc, getAttributeFromDefaultAttrList, getAxisBreakSymbolAttrs, getBackgroundImage, getCircleLabelPosition, getCirclePoints, getCircleVerticalVector, getConicGradientAt, getCurrentEnv, getDefaultCharacterConfig, getElMap, getExtraModelMatrix, getHorizontalPath, getLegacyBindingContext, getMarksByName, getModelMatrix, getNoneGroupMarksByName, getPolarAngleLabelPosition, getPolygonPath, getRichTextBounds, getRuntimeInstallerBindingContext, getRuntimeInstallerGlobal, getScaledStroke, getSharedVRenderApp, getSizeHandlerPath, getTextAlignAttrOfVerticalDir, getTextBounds, getTextType, getTheme, getThemeFromGroup, getVerticalCoord, getVerticalPath, globalTheme, glyphModule, graphicCreator$1 as graphicCreator, graphicService, graphicUtil, hasOverlap, htmlAttributeTransform, identityMat4, imageModule, incrementalAddTo, initAllEnv, initBrowserEnv, initFeishuEnv, initHarmonyEnv, initLynxEnv, initNodeEnv, initTTEnv, initTaroEnv, initTextMeasure, initWxEnv, installBrowserEnvToApp, installBrowserPickersToApp, installDefaultGraphicsToApp, installFeishuEnvToApp, installHarmonyEnvToApp, installLynxEnvToApp, installMathPickersToApp, installNodeEnvToApp, installNodePickersToApp, installPoptipToApp, installRuntimeContributionModule, installRuntimeDrawContributionsToApp, installRuntimeGraphicRenderersToApp, installRuntimePickersToApp, installScrollbarToApp, installTTEnvToApp, installTaroEnvToApp, installWxEnvToApp, interpolateColor, interpolateGradientConicalColor, interpolateGradientLinearColor, interpolateGradientRadialColor, interpolatePureColorArray, interpolatePureColorArrayToStr, intersect, isBrowserEnv, isInRange, isNoRepeatSizingMode, isNodeEnv, isPostiveXAxis, isRichText, isSvg, isVisible, isXML, jsx, labelSmartInvert, layerService, length, limitShapeInBounds, lineModule, linearDiscreteTicks, loadAllEnv, loadAllModule, loadBrowserEnv, loadFeishuEnv, loadHarmonyEnv, loadLynxEnv, loadMathPicker, loadNodeEnv, loadPoptip, loadScrollbar, loadTTEnv, loadTaroEnv, loadWxEnv, lookAt, mapToCanvasPointForCanvas, mat3Tomat4, mat4Allocate, matrixAllocate, measureTextSize, morphPath, multiToOneMorph, multiplyMat4Mat3, multiplyMat4Mat4, newThemeObj, normalize$1 as normalize, oneToMultiMorph, ortho, parsePadding, parseStroke, parseSvgPath, particleEffect, pathModule, pathToBezierCurves, point$3 as point, pointEqual, pointInterpolation, pointInterpolationHighPerformance, pointsEqual, pointsInterpolation, polarAngleAxisDiscreteTicks, polarTicks, polygonModule, preLoadAllModule, pulseWave, pyramid3dModule, quadCalc, quadLength, quadPointAt, rafBasedSto, randomOpacity, reactAttributeTransform, rect3dModule, rectFillVisible, rectModule, rectStrokeVisible, recursiveCallBinarySplit, refreshRuntimeInstallerContributions, registerAnimate, registerArc, registerArc3d, registerArc3dGraphic, registerArcDataLabel, registerArcGraphic, registerArea, registerAreaGraphic, registerCircle, registerCircleGraphic, registerCustomAnimate, registerDirectionalLight, registerFlexLayoutPlugin, registerGifGraphic, registerGifImage, registerGlobalEventTransformer, registerGlyph, registerGlyphGraphic, registerGraphic, registerGroup, registerGroupGraphic, registerHtmlAttributePlugin, registerImage, registerImageGraphic, registerLine, registerLineDataLabel, registerLineGraphic, registerMarkArcAreaAnimate, registerMarkArcLineAnimate, registerMarkAreaAnimate, registerMarkLineAnimate, registerMarkPointAnimate, registerOrthoCamera, registerPath, registerPathGraphic, registerPolygon, registerPolygonGraphic, registerPyramid3d, registerPyramid3dGraphic, registerReactAttributePlugin, registerRect, registerRect3d, registerRect3dGraphic, registerRectDataLabel, registerRectGraphic, registerRichtext, registerRichtextGraphic, registerShadowRoot, registerShadowRootGraphic, registerStar, registerStarGraphic, registerSymbol, registerSymbolDataLabel, registerSymbolGraphic, registerText, registerTextGraphic, registerViewTransform3dPlugin, registerWindowEventTransformer, registerWrapText, registerWrapTextGraphic, releaseSharedVRenderApp, removeRepeatPoint, renderCommandList, resolveBackgroundDrawMode, resolveBackgroundParamsByImageSizing, resolveBackgroundPosition, resolveBackgroundSizing, resolveContainerBinding$1 as resolveContainerBinding, resolveImageMode, resolveImageRepeatMode, resolveRenderableImageSize, rewriteProto, richTextAttributeTransform, richtextModule, rippleEffect, rotateX, rotateY, rotateZ, rotationScan, roughModule, rowBottomToTop, rowCenterToEdge, rowEdgeToCenter, rowTopToBottom, runFill, runStroke, scale, scaleMat4, segments, setPoptipTheme, shouldClipImageByLayout, shouldUseMat4, smartInvertStrategy, snakeWave, snapLength, spiralEffect, splitArc, splitArea, splitCircle, splitLine, splitPath, splitPolygon, splitRect, splitToGrids, starModule, strCommandMap, strokeVisible, symbolModule, tan2AngleToAngle, textAttributesToStyle, textDrawOffsetX, textDrawOffsetY, textIntersect, textLayoutOffsetY, textModule, ticks, transformMat4, transformPointForCanvas, transformUtil, transitionRegistry, translate, traverseGroup, version, verticalLayout, vglobal, waitForAllSubLayers, wrapCanvas, wrapContext, xul };
|