Improved code readability
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / raster / shapes / composite / textcanvas / RenderMode.java
index 0379ab5..1aeb9a8 100644 (file)
@@ -6,12 +6,14 @@ package eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.textcanvas;
 
 public enum RenderMode {
     /**
-     * Text is rendered as a textured polygon.
+     * Text is rendered as pixels on textured polygon.
+     * This mode works in any orientation. Even if polygon is rotated.
      */
     TEXTURE,
 
     /**
-     * Text is rendered as high quality, anti-aliazed tiles.
+     * Text is rendered as high quality, anti-aliased tiles.
+     * This mode works only if text is facing the camera almost directly.
      */
     CHARACTERS
 }