二维码生成

This commit is contained in:
仲么了
2023-07-24 15:00:19 +08:00
parent 689436759f
commit 863d30ee61
40 changed files with 6103 additions and 35 deletions

View File

@@ -0,0 +1,11 @@
export default class WebGLShaderPrecisionFormat {
className = 'WebGLShaderPrecisionFormat';
constructor({
rangeMin, rangeMax, precision
}) {
this.rangeMin = rangeMin;
this.rangeMax = rangeMax;
this.precision = precision;
}
}