summaryrefslogtreecommitdiff
path: root/src/ext/plantuml/com/ctreber/acearth/shader/ShaderFlat.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/plantuml/com/ctreber/acearth/shader/ShaderFlat.java')
-rw-r--r--src/ext/plantuml/com/ctreber/acearth/shader/ShaderFlat.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/ext/plantuml/com/ctreber/acearth/shader/ShaderFlat.java b/src/ext/plantuml/com/ctreber/acearth/shader/ShaderFlat.java
deleted file mode 100644
index a5b983a..0000000
--- a/src/ext/plantuml/com/ctreber/acearth/shader/ShaderFlat.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package ext.plantuml.com.ctreber.acearth.shader;
-
-import java.awt.Color;
-
-/**
- * <p>Flat shader (does not care for Projection).</p>
- *
- * <p>&copy; 2002 Christian Treber, ct@ctreber.com (Nov 11, 2002)</p>
- * @author Christian Treber, ct@ctreber.com
- *
- */
-public class ShaderFlat extends Shader
-{
- public Color[] getShadedColors(int pRowNo, int[] pRowTypes)
- {
- final Color[] lColors = new Color[pRowTypes.length];
- for(int i = 0; i < pRowTypes.length; i++)
- {
- lColors[i] = getShadedColorForType(pRowTypes[i], 1.0);
- }
-
- return lColors;
- }
-}