]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.common/src/org/simantics/common/utils/CommonUtils.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.common / src / org / simantics / common / utils / CommonUtils.java
1 package org.simantics.common.utils;
2
3 public class CommonUtils {
4
5         public static double convertColor256ToDouble(int value) {
6         // TODO: how close to 256 can we go? 
7                 return (1/255.9999)*((double)value);
8         }
9         
10         public static int convertDoubleToColor256(double value) {
11                 // TODO: how close to 256 can we go? 
12                 return (int)(255.9999*value);
13         }
14         
15 }