SceneMax3D 1 gadu atpakaļ
vecāks
revīzija
d4ff52c04b

+ 7 - 7
jme3-core/src/main/java/com/jme3/environment/baker/IBLEnvBaker.java

@@ -36,39 +36,39 @@ import com.jme3.texture.Texture2D;
 import com.jme3.texture.TextureCubeMap;
 
 /**
- * An environment baker, but this one is for Imaged Base Lighting
+ * An environment baker, but this one is for Imaged Base Lighting.
  *
  * @author Riccardo Balbo
  */
 public interface IBLEnvBaker extends EnvBaker {
     /**
-     * Generate the BRDF texture
+     * Generates the BRDF texture.
      * 
      * @return The BRDF texture
      */
     public Texture2D genBRTF();
 
     /**
-     * Bake the irradiance map
+     * Bakes the irradiance map.
      */
     public void bakeIrradiance();
 
     /**
-     * Bake the specular IBL map
+     * Bakes the specular IBL map.
      */
     public void bakeSpecularIBL();
 
     /**
-     * Get the specular IBL map
+     * Gets the specular IBL map.
      * 
      * @return The specular IBL map
      */
     public TextureCubeMap getSpecularIBL();
 
     /**
-     * Get the irradiance map
+     * Gets the irradiance map.
      * 
      * @return The irradiance map
      */
     public TextureCubeMap getIrradiance();
-}
+}