FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
      Language \ Environment \ Libraries \ Comparison
 
   
   
Abridged (A-Z) \ Complete (A-Z)  
   
  Reference for Processing (BETA) version 91+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.  
Name  

float()

   
Examples  
int i = 65; 
float f = float(i); 
println(i + " : " + f);  // Prints "65 : 65.0" 
 
char c = 'E'; 
f = float(c); 
println(c + " : " + f);  // Prints "E : 69.0" 

Description   Converts a primitive datatype, string, or array to its floating point representation.
   
Syntax  
float(value)
   
Parameters  
value   int, char, byte, boolean, String, int[], char[], byte[], boolean[], String[]

   
Returns   float
   
Usage   Web & Application
   
Related   float
int()
byte()
 
 






   
 
Updated: Fri Jul 15 16:35:39 PDT 2005
 
 








Creative Commons License
 
  Processing is an open project initiated by Ben Fry and Casey Reas  
  © Info