comparison dwt/dwthelper/utils.d @ 38:198549365851

Fixed all the runtime errors, hello world app "works"
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sun, 12 Oct 2008 15:26:21 +0200
parents 642f460a0908
children c74ba20de292
comparison
equal deleted inserted replaced
37:642f460a0908 38:198549365851
256 256
257 public static float POSITIVE_INFINITY = (1.0f / 0.0f); 257 public static float POSITIVE_INFINITY = (1.0f / 0.0f);
258 public static float NEGATIVE_INFINITY = ((-1.0f) / 0.0f); 258 public static float NEGATIVE_INFINITY = ((-1.0f) / 0.0f);
259 public static float NaN = (0.0f / 0.0f); 259 public static float NaN = (0.0f / 0.0f);
260 public static float MAX_VALUE = 3.4028235e+38f; 260 public static float MAX_VALUE = 3.4028235e+38f;
261 public static float MIN_VALUE = 1.4e-45f; 261 public static float MIN_VALUE = float.min;
262 //public static float MIN_VALUE = 1.4e-45f;
262 public static int SIZE = 32; 263 public static int SIZE = 32;
263 264
264 this( float value ){ 265 this( float value ){
265 super(value); 266 super(value);
266 } 267 }