Ver Fonte

comment

dsehnal há 3 anos atrás
pai
commit
f96211ff91
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      src/mol-util/material.ts

+ 2 - 2
src/mol-util/material.ts

@@ -8,9 +8,9 @@ import { NumberArray } from './type-helpers';
 import { ParamDefinition as PD } from './param-definition';
 import { ParamDefinition as PD } from './param-definition';
 
 
 export interface Material {
 export interface Material {
-    // Normalized to [0, 1] range
+    /** Normalized to [0, 1] range */
     metalness: number,
     metalness: number,
-    // Normalized to [0, 1] range
+    /** Normalized to [0, 1] range */
     roughness: number
     roughness: number
 }
 }