猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
273 B

  1. export default class WebGLShaderPrecisionFormat {
  2. className = 'WebGLShaderPrecisionFormat';
  3. constructor({
  4. rangeMin, rangeMax, precision
  5. }) {
  6. this.rangeMin = rangeMin;
  7. this.rangeMax = rangeMax;
  8. this.precision = precision;
  9. }
  10. }